Lines Matching defs:strings
250 char *strings;
305 strings = malloc(string_size);
306 if (!strings) {
307 pcfError("pcfGetProperties(): Couldn't allocate strings (%d)\n", string_size);
310 FontFileRead(file, strings, string_size);
318 props[i].name = MakeAtom(strings + props[i].name,
319 strnlen(strings + props[i].name, string_size - props[i].name), TRUE);
325 props[i].value = MakeAtom(strings + props[i].value,
326 strnlen(strings + props[i].value, string_size - props[i].value), TRUE);
329 free(strings);