Home
last modified time | relevance | path

Searched refs:str2 (Results 1 – 7 of 7) sorted by relevance

/plan9/sys/src/cmd/gs/src/
H A Dspprint.c190 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 Dspprint.h77 const char *str1, const char *str2);
79 const char *str1, const char *str2, const char *str3);
H A Dgsutil.h47 const byte * str2, uint len2);
/plan9/sys/src/cmd/postscript/postio/
H A Dpostio.c922 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 Dtcpostio.c115 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 Dparse.c631 #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 Dregex.c183 #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)))