exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / c-file-type.c
blob1c558796f9632239b90511a01430180bbba788a1
1 /* Return a string describing the type of a file.
3 Copyright (C) 1993-1994, 2001-2002, 2004-2006, 2009-2024 Free Software
4 Foundation, Inc.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* Written by Paul Eggert. */
21 #include <config.h>
23 #include "file-type.h"
25 #define N_(msgid) (msgid)
27 char const *
28 c_file_type (struct stat const *st)
30 /* For some of these formats, see POSIX 1003.1-2017 "file" command,
31 STDOUT section, Table: File Utility Output Strings
32 <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/file.html#tagtcjh_27>.
34 To keep diagnostics grammatical in English, the returned string
35 must start with a consonant. */
37 /* Do these three first, as they're the most common. */
39 if (S_ISREG (st->st_mode))
40 return st->st_size == 0 ? N_("regular empty file") : N_("regular file");
42 if (S_ISDIR (st->st_mode))
43 return N_("directory");
45 if (S_ISLNK (st->st_mode))
46 return N_("symbolic link");
48 /* Do the S_TYPEIS* macros next, as they may be implemented in terms
49 of S_ISNAM, and we want the more-specialized interpretation. */
51 if (S_TYPEISMQ (st))
52 return N_("message queue");
54 if (S_TYPEISSEM (st))
55 return N_("semaphore");
57 if (S_TYPEISSHM (st))
58 return N_("shared memory object");
60 if (S_TYPEISTMO (st))
61 return N_("typed memory object");
63 /* The remaining are in alphabetical order. */
65 if (S_ISBLK (st->st_mode))
66 return N_("block special file");
68 if (S_ISCHR (st->st_mode))
69 return N_("character special file");
71 if (S_ISCTG (st->st_mode))
72 return N_("contiguous data");
74 if (S_ISFIFO (st->st_mode))
75 return N_("fifo");
77 if (S_ISDOOR (st->st_mode))
78 return N_("door");
80 if (S_ISMPB (st->st_mode))
81 return N_("multiplexed block special file");
83 if (S_ISMPC (st->st_mode))
84 return N_("multiplexed character special file");
86 if (S_ISMPX (st->st_mode))
87 return N_("multiplexed file");
89 if (S_ISNAM (st->st_mode))
90 return N_("named file");
92 if (S_ISNWK (st->st_mode))
93 return N_("network special file");
95 if (S_ISOFD (st->st_mode))
96 return N_("migrated file with data");
98 if (S_ISOFL (st->st_mode))
99 return N_("migrated file without data");
101 if (S_ISPORT (st->st_mode))
102 return N_("port");
104 if (S_ISSOCK (st->st_mode))
105 return N_("socket");
107 if (S_ISWHT (st->st_mode))
108 return N_("whiteout");
110 return N_("weird file");