Deleted Added
full compact
find.c (285612) find.c (294569)
1/**
2 * @file check.c
3 *
4 * @brief Hunt for options in the option descriptor list
5 *
6 * This file contains the routines that deal with processing quoted strings
7 * into an internal format.
8 *

--- 66 unchanged lines hidden (view full) ---

75 switch (*(p++)) {
76 case NUL: return res;
77
78 case '=':
79 memcpy(buf, *nm_pp, (size_t)res);
80
81 buf[res] = NUL;
82 *nm_pp = buf;
1/**
2 * @file check.c
3 *
4 * @brief Hunt for options in the option descriptor list
5 *
6 * This file contains the routines that deal with processing quoted strings
7 * into an internal format.
8 *

--- 66 unchanged lines hidden (view full) ---

75 switch (*(p++)) {
76 case NUL: return res;
77
78 case '=':
79 memcpy(buf, *nm_pp, (size_t)res);
80
81 buf[res] = NUL;
82 *nm_pp = buf;
83 *arg_pp = (char *)p;
83 *arg_pp = VOIDP(p);
84 return res;
85
86 default:
87 if (++res >= (int)bufsz)
88 return -1;
89 }
90 }
91}

--- 689 unchanged lines hidden ---
84 return res;
85
86 default:
87 if (++res >= (int)bufsz)
88 return -1;
89 }
90 }
91}

--- 689 unchanged lines hidden ---