| /src/external/bsd/nsd/dist/compat/ |
| basename.c | 1 /* Return the basename of a pathname. 5 basename (name) function
|
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| basename.h | 22 /* This is where basename() is declared. */ 32 /* When not using the GNU libc we use the basename implementation we 35 #define basename(Arg) gnu_basename (Arg) macro
|
| basename.c | 25 #include "basename.h" 50 /* We cannot generally use the name `basename' since XPG defines an unusable 52 # undef basename macro 53 # define basename gnu_basename macro 56 /* In general, we can't use the builtin `basename' function if available, 58 In some environments the builtin `basename' modifies its argument. 62 basename (char const *name) function
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| basename.h | 22 /* This is where basename() is declared. */ 32 /* When not using the GNU libc we use the basename implementation we 35 #define basename(Arg) gnu_basename (Arg) macro
|
| basename.c | 25 #include "basename.h" 50 /* We cannot generally use the name `basename' since XPG defines an unusable 52 # undef basename macro 53 # define basename gnu_basename macro 56 /* In general, we can't use the builtin `basename' function if available, 58 In some environments the builtin `basename' modifies its argument. 62 basename (char const *name) function
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| basename.h | 22 /* This is where basename() is declared. */ 32 /* When not using the GNU libc we use the basename implementation we 35 #define basename(Arg) gnu_basename (Arg) macro
|
| basename.c | 25 #include "basename.h" 50 /* We cannot generally use the name `basename' since XPG defines an unusable 52 # undef basename macro 53 # define basename gnu_basename macro 56 /* In general, we can't use the builtin `basename' function if available, 58 In some environments the builtin `basename' modifies its argument. 62 basename (char const *name) function
|
| /src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| basename.h | 22 /* This is where basename() is declared. */ 32 /* When not using the GNU libc we use the basename implementation we 35 #define basename(Arg) gnu_basename (Arg) macro
|
| basename.c | 25 #include "basename.h" 50 /* We cannot generally use the name `basename' since XPG defines an unusable 52 # undef basename macro 53 # define basename gnu_basename macro 56 /* In general, we can't use the builtin `basename' function if available, 58 In some environments the builtin `basename' modifies its argument. 62 basename (char const *name) function
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| basename.c | 1 /* $NetBSD: basename.c,v 1.1.1.1 2009/06/23 10:08:59 tron Exp $ */ 5 /* basename 3 7 /* extract file basename 11 /* char *basename(path) 38 /* basename - skip directory prefix */ 40 char *basename(const char *path) function
|
| stringops.h | 49 #define basename postfix_basename macro 50 extern char *basename(const char *);
|
| /src/sys/arch/hpcmips/stand/lcboot/ |
| devopen.c | 41 const char *basename; local 46 basename = &fname[i]; 51 basename = &fname[i + 1]; 60 return DEV_OPEN(f->f_dev)(f, basename, file);
|
| /src/external/apache2/llvm/dist/llvm/utils/ |
| chunk-print-before-all.py | 12 basename = "chunk-" variable 17 global basename 18 fname = basename + str(chunk_id) + ".ll"
|
| /src/distrib/common/ |
| parselist.awk | 216 prog = basename($2); 219 print "ln " prog " " basename($i); 297 function basename (file) \ function
|
| /src/lib/libc/gen/ |
| basename.c | 1 /* $NetBSD: basename.c,v 1.12 2023/01/18 08:07:22 simonb Exp $ */ 34 __RCSID("$NetBSD: basename.c,v 1.12 2023/01/18 08:07:22 simonb Exp $"); 45 __weak_alias(basename,_basename) 94 basename(char *path) function
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| lrealpath.c | 140 char* basename; local 141 DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| basename.c | 1 /* Return the basename of a pathname. 6 @deftypefn Supplemental char* basename (const char *@var{name}) 43 basename (const char *name) function
|
| /src/usr.bin/crunch/crunchgen/ |
| crunched_main.c | 57 const char *basename; local 63 basename = strrchr(argv[0], '/'); 64 basename = basename ? basename + 1 : argv[0]; 67 if (strcmp(basename, ep->name) == 0) 70 fprintf(stderr, "%s: %s not compiled in\n", EXECNAME, basename);
|
| /src/libexec/httpd/ |
| auth-bozo.c | 56 char dir[MAXPATHLEN], authfile[MAXPATHLEN], *basename; local 63 if ((basename = strrchr(dir, '/')) == NULL) 66 *basename++ = '\0'; 67 if (bozo_check_special_files(request, basename, true))
|
| /src/external/bsd/less/dist/lesstest/ |
| pipeline.c | 21 static const char* basename(const char* path) { function 100 // the named text file to its basename, and run less on the link. 103 const char* textbase = basename(textfile);
|