Searched refs:str2 (Results 1 – 7 of 7) sorted by relevance
| /plan9/sys/src/cmd/gs/src/ |
| H A D | spprint.c | 190 pprints2(stream * s, const char *format, const char *str1, const char *str2) in pprints2() argument 192 return pprints1(s, pprints1(s, format, str1), str2); in pprints2() 195 pprints3(stream * s, const char *format, const char *str1, const char *str2, in pprints3() argument 198 return pprints2(s, pprints1(s, format, str1), str2, str3); in pprints3()
|
| H A D | spprint.h | 77 const char *str1, const char *str2); 79 const char *str1, const char *str2, const char *str3);
|
| H A D | gsutil.h | 47 const byte * str2, uint len2);
|
| /plan9/sys/src/cmd/postscript/postio/ |
| H A D | postio.c | 922 char *find(str1, str2) in find() argument 925 char *str2; /* in this one */ 938 for ( ; *str2 != '\0'; str2++ ) { 939 for ( s1 = str1, s2 = str2; *s1 != '\0' && *s1 == *s2; s1++, s2++ ) ; 944 return(str2);
|
| /plan9/sys/src/cmd/postscript/tcpostio/ |
| H A D | tcpostio.c | 115 find(char *str1, char *str2) { in find() argument 119 for (s1=str1,s2=str2; *s2!='\0'&&*s1==*s2; s1++,s2++) ; in find()
|
| /plan9/sys/src/games/mp3enc/ |
| H A D | parse.c | 631 #define T_ELIF2(str1,str2) } else if (0 == local_strcasecmp(token,str1) || \ argument 632 0 == local_strcasecmp(token,str2)) {
|
| /plan9/sys/src/ape/cmd/diff/ |
| H A D | regex.c | 183 #define GET_CHAR_AFTER_2(c, p, str1, end1, str2, end2) \ argument 184 (c = ((p) == (end1) ? *(str2) : *(p))) 185 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ argument 186 (c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1)))
|