Lines Matching defs:offset
53 static char *findenv(const char *name, int *offset);
64 int l_value, offset;
69 if ((c = findenv(name, &offset))) { /*%< find if already exists */
96 offset = cnt;
99 if (!(environ[offset] = /*%< name + `=' + value */
102 for (c = environ[offset]; (*c = *name++) && *c != '='; ++c);
114 int offset;
116 while (findenv(name, &offset)) /*%< if set multiple times */
117 for (p = &environ[offset];; ++p)
125 * Sets offset to be the offset of the name/value combination in the
132 findenv(const char *name, int *offset) {
144 *offset = p - environ;