Home | History | Annotate | Download | only in engine

Lines Matching refs:s2

64 NJ_INT16 nj_strcmp(NJ_CHAR *s1, NJ_CHAR *s2) {
66 while (*s1 == *s2) {
71 s2++;
73 return NJ_CHAR_DIFF(s1, s2);
76 NJ_INT16 nj_strncmp(NJ_CHAR *s1, NJ_CHAR *s2, NJ_UINT16 n) {
79 if (*s1 != *s2++) {
80 return NJ_CHAR_DIFF(s1, (s2 - 1));
102 NJ_INT16 nj_charncmp(NJ_CHAR *s1, NJ_CHAR *s2, NJ_UINT16 n) {
108 if (*s1 != *s2) {
109 return NJ_CHAR_DIFF(s1, s2);
115 s2++;