np               1296 lib/strutil/strutilutf8.c     const char *nt, *np;
np               1303 lib/strutil/strutilutf8.c     np = p;
np               1307 lib/strutil/strutilutf8.c     while (nt[0] != '\0' && np[0] != '\0')
np               1311 lib/strutil/strutilutf8.c         if (nnt - nt != nnp - np)
np               1313 lib/strutil/strutilutf8.c         if (strncmp (nt, np, nnt - nt) != 0)
np               1316 lib/strutil/strutilutf8.c         np = nnp;
np               1319 lib/strutil/strutilutf8.c     result = np - p;
np               1333 lib/strutil/strutilutf8.c     const char *nt, *np;
np               1340 lib/strutil/strutilutf8.c     np = p;
np               1344 lib/strutil/strutilutf8.c     while (nt[0] != '\0' && np[0] != '\0')
np               1348 lib/strutil/strutilutf8.c         if (nnt - nt != nnp - np)
np               1350 lib/strutil/strutilutf8.c         if (strncmp (nt, np, nnt - nt) != 0)
np               1353 lib/strutil/strutilutf8.c         np = nnp;
np               1356 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;