Lines Matching +defs:temp +defs:string
38 #include <string.h>117 unsigned long temp, digit;119 temp = t;121 while (temp >= 10)123 temp /= 10;126 temp = t;129 digit = temp / pow;132 temp = temp - pow * digit;145 write_string (FILE *f, const FcChar8 *string)150 if (!write_chars (f, string))