Lines Matching refs:nextc
491 const char *nextc = NULL;
573 } else if ((nextc = startswith(l, "DEFAULT_CHAR")) != NULL)
575 default_char = atoi(nextc);
579 if ((nextc = startswith(l, "STARTPROPERTIES")) != NULL)
581 properties = atoi(nextc);
584 } else if ((nextc = startswith(l, "FONT")) != NULL)
588 zquotedcpy(&fontname, nextc);
592 my_name, fsource, nextc);
604 } else if ((nextc = startswith(l, "CHARSET_REGISTRY")) != NULL)
606 if (strcmp(nextc, "\"ISO10646\"") != 0) {
609 my_name, fsource, nextc);
614 } else if ((nextc = startswith(l, "CHARSET_ENCODING")) != NULL)
616 if (strcmp(nextc, "\"1\"") != 0) {
619 my_name, fsource, nextc);
627 } else if ((nextc = startswith(l, "SLANT")) != NULL)
629 zquotedcpy(&slant, nextc);
633 my_name, fsource, nextc);
638 } else if ((nextc = startswith(l, "SPACING")) != NULL)
640 zquotedcpy(&spacing, nextc);
644 my_name, fsource, nextc);
650 } else if ((nextc = startswith(l, "COMMENT")) != NULL) {
651 if (strncmp(nextc, "$Id: ", 5)==0) {
654 id = zstrdup(nextc + 5);
685 } else if ((nextc = startswith(l, "ENCODING")) != NULL) {
686 code = atoi(nextc);
840 if ((nextc = startswith(t, "BBX")) != NULL
841 || (nextc = strstr(t, "\nBBX")) != NULL)
846 if (*nextc == '\n') {
847 nextc += 4;
848 while (isspace(*nextc))
849 nextc++;
851 for (;isspace(*nextc);)
852 nextc++;
853 w = (int) strtol(nextc, &endp, 10);
854 nextc = endp;
855 if (*nextc == '\0') goto bbxbad;
856 for (;isspace(*nextc);)
857 nextc++;
858 h = (int) strtol(nextc, &endp, 10);
859 nextc = endp;
860 if (*nextc == '\0') goto bbxbad;
861 for (;isspace(*nextc);)
862 nextc++;
863 x = (int) strtol(nextc, &endp, 10);
864 nextc = endp;
865 if (*nextc == '\0') goto bbxbad;
866 for (;isspace(*nextc);)
867 nextc++;
868 y = (int) strtol(nextc, &endp, 10);