Searched refs:_toupper (Results 1 – 11 of 11) sorted by relevance
61 #define _toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c)) macro145 _toupper(devname[0]), in winblkopen()146 _toupper(devname[1]), in winblkopen()147 _toupper(devname[2]), in winblkopen()
33 # define _toupper(__c) __toupper(__c) macro
86 int _toupper(int);
66 #define _toupper(c) ((c) - 'a' + 'A') macro
103 _toupper(int c) in _toupper() function
105 _toupper
1352 AT_SETUP([m4@&t@_toupper and m4@&t@_tolower])
2287 select = "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";2299 test_text = "# define _toupper(__c) __toupper(__c)\n";
2357 select = "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";2369 test_text = "# define _toupper(__c) __toupper(__c)\n";
2967 * tests/m4sugar.at (m4@&t@_toupper and m4@&t@_tolower): New test.