Changeset 18102 in vbox
- Timestamp:
- Mar 20, 2009 9:59:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/getopt.h
r18097 r18102 274 274 * default: 275 275 * if (ch > 0) 276 * Error("missing case: %c\n", ch); 276 * { 277 * if (RT_C_IS_GRAPH(ch) 278 * Error("unhandled option: -%c\n", ch); 279 * else 280 * Error("unhandled option: %i\n", ch); 281 * } 277 282 * else if (ch == VERR_GETOPT_UNKNOWN_OPTION) 278 283 * Error("unknown option: %s", psz);
Note:
See TracChangeset
for help on using the changeset viewer.