Home | History | Annotate | Download | only in utils

Lines Matching full:pair

68     IniPair*  pair;
78 pair = i->pairs + i->numPairs;
80 AARRAY_NEW(pair->key, keyLen + valueLen + 2);
81 memcpy(pair->key, key, keyLen);
82 pair->key[keyLen] = 0;
84 pair->value = pair->key + keyLen + 1;
85 memcpy(pair->value, value, valueLen);
86 pair->value[valueLen] = 0;
293 IniPair* pair = f->pairs;
294 IniPair* pairEnd = pair + f->numPairs;
303 for ( ; pair < pairEnd; pair++ ) {
305 p = bufprint(temp, end, "%s = %s\n", pair->key, pair->value);