Home
last modified time | relevance | path

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

/external/libpcap/
Dpcap-sita.c502 char *s1_p2, *s2_p2; in if_sort() local
507 if ((s1_p2 = strchr(s1, '_'))) { /* if an underscore is found... */ in if_sort()
508 s1_p1_len = s1_p2 - s1; /* the prefix length is the difference in pointers */ in if_sort()
509 s1_p2++; /* the suffix actually starts _after_ the underscore */ in if_sort()
512 s1_p2 = 0; /* and there is no suffix */ in if_sort()
525 …return strcmp(s1_p2, s2_p2); /* otherwise we return the result of comparing the 2nd half of the s… in if_sort()