• Home
  • Raw
  • Download

Lines Matching +defs:c +defs:mode +defs:prefix

166 #define __IDSTRING(prefix, string)	/* nothing */  argument
168 #define __IDSTRING(prefix, string) \ argument
510 #define ISMAGIC(c) ((unsigned char)(c) == MAGIC) argument
564 #define cstrchr(s,c) ({ \ argument
578 #define vstrchr(s,c) (cstrchr((s), (c)) != NULL) argument
581 #define cstrchr(s,c) ((const char *)strchr((s), (c))) argument
582 #define cstrstr(s,c) ((const char *)strstr((s), (c))) argument
583 #define vstrchr(s,c) (strchr((s), (c)) != NULL) argument
1299 #define ctype(c, t) tobool(chtypes[(unsigned char)(c)] & (t)) argument
1300 #define ord(c) ((int)(unsigned char)(c)) argument
1301 #define ksh_issubop2(c) tobool((c) == ord('#') || (c) == ord('%')) argument
1302 #define ksh_isalias(c) (ctype((c), C_ALPHX | C_DIGIT) || (c) == ord('!') || \ argument
1305 #define ksh_isalpha(c) (ctype((c), C_ALPHX) && (c) != ord('_')) argument
1306 #define ksh_isalphx(c) ctype((c), C_ALPHX) argument
1307 #define ksh_isalnux(c) ctype((c), C_ALPHX | C_DIGIT) argument
1308 #define ksh_isdigit(c) ctype((c), C_DIGIT) argument
1309 #define ksh_islower(c) (((c) >= 'a') && ((c) <= 'z')) argument
1310 #define ksh_isupper(c) (((c) >= 'A') && ((c) <= 'Z')) argument
1311 #define ksh_tolower(c) (ksh_isupper(c) ? (c) - 'A' + 'a' : (c)) argument
1312 #define ksh_toupper(c) (ksh_islower(c) ? (c) - 'a' + 'A' : (c)) argument
1314 #define ksh_isspace(c) ((((c) >= 0x09) && ((c) <= 0x0D)) || ((c) == 0x20)) argument
1315 #define ksh_eq(c,u,l) (((c) | 0x20) == (l)) argument
1316 #define ksh_numdig(c) ((c) - ord('0')) argument
1317 #define ksh_numuc(c) ((c) - ord('A')) argument
1318 #define ksh_numlc(c) ((c) - ord('a')) argument
1415 #define shf_putc_i(c, shf) ((shf)->wnleft == 0 ? \ argument
1808 #define Xput(xs, xp, c) (*xp++ = (c)) argument
2019 #define notok2mul(max, val, c) (((val) != 0) && ((c) != 0) && \ argument
2021 #define notok2add(max, val, c) ((val) > ((max) - (c))) argument
2471 #define binopen3(path,flags,mode) __extension__({ \ argument
2479 #define binopen3(path,flags,mode) open((path), (flags) | O_BINARY, (mode)) argument
2489 #define mksh_cdirsep(c) __extension__({ \ argument
2503 #define mksh_cdirsep(c) ((c) == '/') argument