1optionFindNextValue(3) Programmer's Manual optionFindNextValue(3)
2
3
4
6 optionFindNextValue - find a hierarcicaly valued option instance
7
8
10 #include <your-opts.h>
11 cc [...] -o outfile infile.c -lopts [...]
12
13 const tOptionValue * optionFindNextValue(const tOptDesc * odesc, const
14 tOptionValue * pPrevVal, char const * name, char const * value);
15
16
18 This routine will find the next entry in a nested value option or con‐
19 figurable. It will search through the list and return the next entry
20 that matches the criteria.
21
22 odesc an option with a nested arg type
23
24 pPrevVal
25 the last entry
26
27 name name of value to find
28
29 value the matching value
30
31
33 a compound value structure
34
35
37 The returned result is NULL and errno is set:
38
39
40
41
42
43
44
45 EINVAL - the pOptValue does not point to a valid hierarchical option
46 value.
47
48 ENOENT - no entry matched the given name. @end itemize
49
51 The info documentation for the -lopts library.
52 ao_string_tokenize(3), configFileLoad(3), optionFileLoad(3), option‐
53 FindValue(3), optionFree(3), optionGetValue(3), optionLoadLine(3),
54 optionMemberList(3), optionNextValue(3), optionOnlyUsage(3), option‐
55 PrintVersion(3), optionPrintVersionAndReturn(3), optionProcess(3),
56 optionRestore(3), optionSaveFile(3), optionSaveState(3), optionUnload‐
57 Nested(3), optionVersion(3), strequate(3), streqvcmp(3), streqvmap(3),
58 strneqvcmp(3), strtransform(3),
59
60
61
62 2018-07-31 optionFindNextValue(3)