Return a pointer to a formatted version of F->stat.st_ino, possibly using buffer, which must be at least INT_BUFSIZE_BOUND (uintmax_t) bytes. */
| 4224 | possibly using buffer, which must be at least |
| 4225 | INT_BUFSIZE_BOUND (uintmax_t) bytes. */ |
| 4226 | static char * |
| 4227 | format_inode (char buf[INT_BUFSIZE_BOUND (uintmax_t)], |
| 4228 | const struct fileinfo *f) |
| 4229 | { |
| 4230 | return (f->stat_ok && f->stat.st_ino != NOT_AN_INODE_NUMBER |
| 4231 | ? umaxtostr (f->stat.st_ino, buf) |
| 4232 | : (char *) "?"); |
| 4233 | } |
| 4234 | |
| 4235 | /* Print information about F in long format. */ |
| 4236 | static void |
no outgoing calls
no test coverage detected