Searched refs:devfontmap (Results 1 – 1 of 1) sorted by relevance
525 Devfontmap *devfontmap = NULL; /* device level */ variable1622 if ( devfontmap == NULL && (fp = fopen(temp, "r")) != NULL ) { in getdevmap()1623 devfontmap = (Devfontmap *) malloc(10 * sizeof(Devfontmap)); in getdevmap()1628 strcpy((devfontmap + i)->name, temp); in getdevmap()1629 strcpy((devfontmap + i)->use, &temp[3]); in getdevmap()1631 devfontmap = (Devfontmap *) realloc(devfontmap, (i + 10) * sizeof(Devfontmap)); in getdevmap()1636 (devfontmap + i)->name[0] = '\0'; /* end the list we just read */ in getdevmap()1662 if ( devfontmap != NULL ) in mapdevfont()1663 for ( i = 0; (devfontmap + i)->name[0] != '\0'; i++ ) in mapdevfont()1664 if ( strcmp((devfontmap + i)->name, str) == 0 ) in mapdevfont()[all …]