np               1277 lib/strutil/strutilutf8.c     const char *nt, *np;
np               1284 lib/strutil/strutilutf8.c     np = p;
np               1288 lib/strutil/strutilutf8.c     while (nt[0] != '\0' && np[0] != '\0')
np               1292 lib/strutil/strutilutf8.c         if (nnt - nt != nnp - np)
np               1294 lib/strutil/strutilutf8.c         if (strncmp (nt, np, nnt - nt) != 0)
np               1297 lib/strutil/strutilutf8.c         np = nnp;
np               1300 lib/strutil/strutilutf8.c     result = np - p;
np               1314 lib/strutil/strutilutf8.c     const char *nt, *np;
np               1321 lib/strutil/strutilutf8.c     np = p;
np               1325 lib/strutil/strutilutf8.c     while (nt[0] != '\0' && np[0] != '\0')
np               1329 lib/strutil/strutilutf8.c         if (nnt - nt != nnp - np)
np               1331 lib/strutil/strutilutf8.c         if (strncmp (nt, np, nnt - nt) != 0)
np               1334 lib/strutil/strutilutf8.c         np = nnp;
np               1337 lib/strutil/strutilutf8.c     result = np - p;
np                153 src/usermenu.c         char *np;
np                155 src/usermenu.c         np = str_get_next_char (p);
np                156 src/usermenu.c         if (np - p >= size)
np                158 src/usermenu.c         memcpy (arg, p, np - p);
np                159 src/usermenu.c         arg += np - p;
np                160 src/usermenu.c         size -= np - p;
np                161 src/usermenu.c         p = np;