/*
- * Character mapping generated 12/16/10 15:59:15
+ * Character mapping generated 12/18/10 12:13:30
*
* This file contains the character classifications
* used by AutoGen and AutoOpts for identifying tokens.
//
// %guard autoopts_internal
// %file ag-char-map.h
-// %table opt-char-cat
+// %table option-char-category
//
// %comment
// This file contains the character classifications
//
#endif /* 0 -- mapping spec. source */
-typedef uint32_t opt_char_cat_mask_t;
-extern opt_char_cat_mask_t const opt_char_cat[128];
+typedef uint32_t option_char_category_mask_t;
+extern option_char_category_mask_t const option_char_category[128];
-static inline int is_opt_char_cat_char(char ch, opt_char_cat_mask_t mask) {
+static inline int is_option_char_category_char(char ch, option_char_category_mask_t mask) {
unsigned int ix = (unsigned char)ch;
- return ((ix < 0x7F) && ((opt_char_cat[ix] & mask) != 0)); }
+ return ((ix < 0x7F) && ((option_char_category[ix] & mask) != 0)); }
-#define IS_LOWER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x000001)
-#define IS_UPPER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x000002)
-#define IS_ALPHABETIC_CHAR(_c) is_opt_char_cat_char((_c), 0x000003)
-#define IS_OCT_DIGIT_CHAR(_c) is_opt_char_cat_char((_c), 0x000004)
-#define IS_DEC_DIGIT_CHAR(_c) is_opt_char_cat_char((_c), 0x00000C)
-#define IS_HEX_DIGIT_CHAR(_c) is_opt_char_cat_char((_c), 0x00001C)
-#define IS_ALPHANUMERIC_CHAR(_c) is_opt_char_cat_char((_c), 0x00000F)
-#define IS_VAR_FIRST_CHAR(_c) is_opt_char_cat_char((_c), 0x000023)
-#define IS_VARIABLE_NAME_CHAR(_c) is_opt_char_cat_char((_c), 0x00002F)
-#define IS_OPTION_NAME_CHAR(_c) is_opt_char_cat_char((_c), 0x00006F)
-#define IS_VALUE_NAME_CHAR(_c) is_opt_char_cat_char((_c), 0x0000EF)
-#define IS_HORIZ_WHITE_CHAR(_c) is_opt_char_cat_char((_c), 0x000100)
-#define IS_COMPOUND_NAME_CHAR(_c) is_opt_char_cat_char((_c), 0x0003EF)
-#define IS_WHITESPACE_CHAR(_c) is_opt_char_cat_char((_c), 0x000500)
-#define IS_UNQUOTABLE_CHAR(_c) is_opt_char_cat_char((_c), 0x000800)
-#define IS_END_XML_TOKEN_CHAR(_c) is_opt_char_cat_char((_c), 0x001500)
-#define IS_GRAPHIC_CHAR(_c) is_opt_char_cat_char((_c), 0x002000)
-#define IS_PLUS_N_SPACE_CHAR(_c) is_opt_char_cat_char((_c), 0x004500)
-#define IS_PUNCTUATION_CHAR(_c) is_opt_char_cat_char((_c), 0x008000)
-#define IS_SUFFIX_CHAR(_c) is_opt_char_cat_char((_c), 0x01000F)
-#define IS_SUFFIX_FMT_CHAR(_c) is_opt_char_cat_char((_c), 0x03000F)
-#define IS_FALSE_TYPE_CHAR(_c) is_opt_char_cat_char((_c), 0x040000)
-#define IS_FILE_NAME_CHAR(_c) is_opt_char_cat_char((_c), 0x09000F)
-#define IS_END_TOKEN_CHAR(_c) is_opt_char_cat_char((_c), 0x100500)
-#define IS_END_LIST_ENTRY_CHAR(_c) is_opt_char_cat_char((_c), 0x300500)
+#define IS_LOWER_CASE_CHAR(_c) is_option_char_category_char((_c), 0x000001)
+#define IS_UPPER_CASE_CHAR(_c) is_option_char_category_char((_c), 0x000002)
+#define IS_ALPHABETIC_CHAR(_c) is_option_char_category_char((_c), 0x000003)
+#define IS_OCT_DIGIT_CHAR(_c) is_option_char_category_char((_c), 0x000004)
+#define IS_DEC_DIGIT_CHAR(_c) is_option_char_category_char((_c), 0x00000C)
+#define IS_HEX_DIGIT_CHAR(_c) is_option_char_category_char((_c), 0x00001C)
+#define IS_ALPHANUMERIC_CHAR(_c) is_option_char_category_char((_c), 0x00000F)
+#define IS_VAR_FIRST_CHAR(_c) is_option_char_category_char((_c), 0x000023)
+#define IS_VARIABLE_NAME_CHAR(_c) is_option_char_category_char((_c), 0x00002F)
+#define IS_OPTION_NAME_CHAR(_c) is_option_char_category_char((_c), 0x00006F)
+#define IS_VALUE_NAME_CHAR(_c) is_option_char_category_char((_c), 0x0000EF)
+#define IS_HORIZ_WHITE_CHAR(_c) is_option_char_category_char((_c), 0x000100)
+#define IS_COMPOUND_NAME_CHAR(_c) is_option_char_category_char((_c), 0x0003EF)
+#define IS_WHITESPACE_CHAR(_c) is_option_char_category_char((_c), 0x000500)
+#define IS_UNQUOTABLE_CHAR(_c) is_option_char_category_char((_c), 0x000800)
+#define IS_END_XML_TOKEN_CHAR(_c) is_option_char_category_char((_c), 0x001500)
+#define IS_GRAPHIC_CHAR(_c) is_option_char_category_char((_c), 0x002000)
+#define IS_PLUS_N_SPACE_CHAR(_c) is_option_char_category_char((_c), 0x004500)
+#define IS_PUNCTUATION_CHAR(_c) is_option_char_category_char((_c), 0x008000)
+#define IS_SUFFIX_CHAR(_c) is_option_char_category_char((_c), 0x01000F)
+#define IS_SUFFIX_FMT_CHAR(_c) is_option_char_category_char((_c), 0x03000F)
+#define IS_FALSE_TYPE_CHAR(_c) is_option_char_category_char((_c), 0x040000)
+#define IS_FILE_NAME_CHAR(_c) is_option_char_category_char((_c), 0x09000F)
+#define IS_END_TOKEN_CHAR(_c) is_option_char_category_char((_c), 0x100500)
+#define IS_END_LIST_ENTRY_CHAR(_c) is_option_char_category_char((_c), 0x300500)
#ifdef AUTOOPTS_INTERNAL
-opt_char_cat_mask_t const opt_char_cat[128] = {
+option_char_category_mask_t const option_char_category[128] = {
/*x00*/ 0x140000, /*x01*/ 0x000000, /*x02*/ 0x000000, /*x03*/ 0x000000,
/*x04*/ 0x000000, /*x05*/ 0x000000, /*x06*/ 0x000000, /*\a */ 0x000000,
/*\b */ 0x000400, /*\t */ 0x000100, /*\n */ 0x000400, /*\v */ 0x000400,
*
* DO NOT EDIT THIS FILE (usage-txt.h)
*
- * It has been AutoGen-ed December 16, 2010 at 03:59:16 PM by AutoGen 5.11.6pre3
+ * It has been AutoGen-ed December 18, 2010 at 12:13:32 PM by AutoGen 5.11.6pre4
* From the definitions usage-txt.def
* and the template file usage-txt.tpl
*
* This file handles all the bookkeeping required for tracking all the little
- * tiny strings used by the AutoOpts library. There are 137
+ * tiny strings used by the AutoOpts library. There are 140
* of them. This is not versioned because it is entirely internal to the
* library and accessed by client code only in a very well-controlled way:
* they may substitute translated strings using a procedure that steps through
char* utpz_GnuTimeArg;
char* utpz_GnuNumArg;
char* utpz_GnuStrArg;
- cch_t* apz_str[ 130 ];
+ cch_t* apz_str[ 133 ];
} usage_text_t;
/*
/*
* Provide a mapping from a short name to fields in this structure.
*/
-#define zAO_Bad (option_usage_text.apz_str[ 0])
-#define zAO_Big (option_usage_text.apz_str[ 1])
-#define zAO_Err (option_usage_text.apz_str[ 2])
-#define zAO_Sml (option_usage_text.apz_str[ 3])
-#define zAO_Ver (option_usage_text.apz_str[ 4])
-#define zAO_Woops (option_usage_text.apz_str[ 5])
-#define zAliasRange (option_usage_text.apz_str[ 6])
-#define zAll (option_usage_text.apz_str[ 7])
-#define zAlt (option_usage_text.apz_str[ 8])
-#define zAmbigKey (option_usage_text.apz_str[ 9])
-#define zAmbigOptStr (option_usage_text.apz_str[ 10])
-#define zArgsMust (option_usage_text.apz_str[ 11])
-#define zAtMost (option_usage_text.apz_str[ 12])
-#define zAuto (option_usage_text.apz_str[ 13])
-#define zBadPipe (option_usage_text.apz_str[ 14])
-#define zBadVerArg (option_usage_text.apz_str[ 15])
-#define zCantFmt (option_usage_text.apz_str[ 16])
-#define zCantSave (option_usage_text.apz_str[ 17])
-#define zCfgAO_Flags (option_usage_text.apz_str[ 18])
-#define zCfgProg (option_usage_text.apz_str[ 19])
-#define zDefaultOpt (option_usage_text.apz_str[ 20])
-#define zDis (option_usage_text.apz_str[ 21])
-#define zDisabledErr (option_usage_text.apz_str[ 22])
-#define zDisabledOpt (option_usage_text.apz_str[ 23])
-#define zDisabledWhy (option_usage_text.apz_str[ 24])
-#define zEnab (option_usage_text.apz_str[ 25])
-#define zEquiv (option_usage_text.apz_str[ 26])
-#define zErrOnly (option_usage_text.apz_str[ 27])
-#define zExamineFmt (option_usage_text.apz_str[ 28])
-#define zFiveSpaces (option_usage_text.apz_str[ 29])
-#define zFlagOkay (option_usage_text.apz_str[ 30])
-#define zFmtFmt (option_usage_text.apz_str[ 31])
-#define zForkFail (option_usage_text.apz_str[ 32])
-#define zFreopenFail (option_usage_text.apz_str[ 33])
-#define zFSErrOptLoad (option_usage_text.apz_str[ 34])
-#define zFSErrReadFile (option_usage_text.apz_str[ 35])
-#define zFSOptError (option_usage_text.apz_str[ 36])
-#define zFSOptErrMayExist (option_usage_text.apz_str[ 37])
-#define zFSOptErrMustExist (option_usage_text.apz_str[ 38])
-#define zFSOptErrNoExist (option_usage_text.apz_str[ 39])
-#define zFSOptErrOpen (option_usage_text.apz_str[ 40])
-#define zFSOptErrFopen (option_usage_text.apz_str[ 41])
-#define zFileCannotExist (option_usage_text.apz_str[ 42])
-#define zFileMustExist (option_usage_text.apz_str[ 43])
-#define zGenshell (option_usage_text.apz_str[ 44])
+#define zAO_Alloc (option_usage_text.apz_str[ 0])
+#define zAO_Bad (option_usage_text.apz_str[ 1])
+#define zAO_Big (option_usage_text.apz_str[ 2])
+#define zAO_Err (option_usage_text.apz_str[ 3])
+#define zAO_Realloc (option_usage_text.apz_str[ 4])
+#define zAO_Sml (option_usage_text.apz_str[ 5])
+#define zAO_Strdup (option_usage_text.apz_str[ 6])
+#define zAO_Ver (option_usage_text.apz_str[ 7])
+#define zAO_Woops (option_usage_text.apz_str[ 8])
+#define zAliasRange (option_usage_text.apz_str[ 9])
+#define zAll (option_usage_text.apz_str[ 10])
+#define zAlt (option_usage_text.apz_str[ 11])
+#define zAmbigKey (option_usage_text.apz_str[ 12])
+#define zAmbigOptStr (option_usage_text.apz_str[ 13])
+#define zArgsMust (option_usage_text.apz_str[ 14])
+#define zAtMost (option_usage_text.apz_str[ 15])
+#define zAuto (option_usage_text.apz_str[ 16])
+#define zBadPipe (option_usage_text.apz_str[ 17])
+#define zBadVerArg (option_usage_text.apz_str[ 18])
+#define zCantFmt (option_usage_text.apz_str[ 19])
+#define zCantSave (option_usage_text.apz_str[ 20])
+#define zCfgAO_Flags (option_usage_text.apz_str[ 21])
+#define zCfgProg (option_usage_text.apz_str[ 22])
+#define zDefaultOpt (option_usage_text.apz_str[ 23])
+#define zDis (option_usage_text.apz_str[ 24])
+#define zDisabledErr (option_usage_text.apz_str[ 25])
+#define zDisabledOpt (option_usage_text.apz_str[ 26])
+#define zDisabledWhy (option_usage_text.apz_str[ 27])
+#define zEnab (option_usage_text.apz_str[ 28])
+#define zEquiv (option_usage_text.apz_str[ 29])
+#define zErrOnly (option_usage_text.apz_str[ 30])
+#define zExamineFmt (option_usage_text.apz_str[ 31])
+#define zFiveSpaces (option_usage_text.apz_str[ 32])
+#define zFlagOkay (option_usage_text.apz_str[ 33])
+#define zFmtFmt (option_usage_text.apz_str[ 34])
+#define zForkFail (option_usage_text.apz_str[ 35])
+#define zFreopenFail (option_usage_text.apz_str[ 36])
+#define zFSErrOptLoad (option_usage_text.apz_str[ 37])
+#define zFSErrReadFile (option_usage_text.apz_str[ 38])
+#define zFSOptError (option_usage_text.apz_str[ 39])
+#define zFSOptErrMayExist (option_usage_text.apz_str[ 40])
+#define zFSOptErrMustExist (option_usage_text.apz_str[ 41])
+#define zFSOptErrNoExist (option_usage_text.apz_str[ 42])
+#define zFSOptErrOpen (option_usage_text.apz_str[ 43])
+#define zFSOptErrFopen (option_usage_text.apz_str[ 44])
+#define zFileCannotExist (option_usage_text.apz_str[ 45])
+#define zFileMustExist (option_usage_text.apz_str[ 46])
+#define zGenshell (option_usage_text.apz_str[ 47])
#define zGnuBoolArg (option_usage_text.utpz_GnuBoolArg)
-#define zGnuBreak (option_usage_text.apz_str[ 45])
+#define zGnuBreak (option_usage_text.apz_str[ 48])
#define zGnuKeyArg (option_usage_text.utpz_GnuKeyArg)
#define zGnuFileArg (option_usage_text.utpz_GnuFileArg)
#define zGnuKeyLArg (option_usage_text.utpz_GnuKeyLArg)
#define zGnuTimeArg (option_usage_text.utpz_GnuTimeArg)
-#define zGnuNestArg (option_usage_text.apz_str[ 46])
+#define zGnuNestArg (option_usage_text.apz_str[ 49])
#define zGnuNumArg (option_usage_text.utpz_GnuNumArg)
-#define zGnuOptArg (option_usage_text.apz_str[ 47])
-#define zGnuOptFmt (option_usage_text.apz_str[ 48])
+#define zGnuOptArg (option_usage_text.apz_str[ 50])
+#define zGnuOptFmt (option_usage_text.apz_str[ 51])
#define zGnuStrArg (option_usage_text.utpz_GnuStrArg)
-#define zIllOptChr (option_usage_text.apz_str[ 49])
-#define zIllOptStr (option_usage_text.apz_str[ 50])
-#define zIllegal (option_usage_text.apz_str[ 51])
-#define zIntRange (option_usage_text.apz_str[ 52])
-#define zInvalOptDesc (option_usage_text.apz_str[ 53])
-#define zLowerBits (option_usage_text.apz_str[ 54])
-#define zMembers (option_usage_text.apz_str[ 55])
-#define zMisArg (option_usage_text.apz_str[ 56])
-#define zMultiEquiv (option_usage_text.apz_str[ 57])
-#define zMust (option_usage_text.apz_str[ 58])
-#define zNeedOne (option_usage_text.apz_str[ 59])
-#define zNoArg (option_usage_text.apz_str[ 60])
-#define zNoArgs (option_usage_text.apz_str[ 61])
-#define zNoCreat (option_usage_text.apz_str[ 62])
-#define zNoFlags (option_usage_text.apz_str[ 63])
-#define zNoKey (option_usage_text.apz_str[ 64])
-#define zNoLim (option_usage_text.apz_str[ 65])
-#define zNoPreset (option_usage_text.apz_str[ 66])
-#define zNoResetArg (option_usage_text.apz_str[ 67])
-#define zNoRq_NoShrtTtl (option_usage_text.apz_str[ 68])
-#define zNoRq_ShrtTtl (option_usage_text.apz_str[ 69])
-#define zNoStat (option_usage_text.apz_str[ 70])
-#define zNoState (option_usage_text.apz_str[ 71])
-#define zNone (option_usage_text.apz_str[ 72])
-#define zNotDef (option_usage_text.apz_str[ 73])
-#define zNotCmdOpt (option_usage_text.apz_str[ 74])
-#define zNotEnough (option_usage_text.apz_str[ 75])
-#define zNotFile (option_usage_text.apz_str[ 76])
-#define zNotNumber (option_usage_text.apz_str[ 77])
-#define zNrmOptFmt (option_usage_text.apz_str[ 78])
-#define zNumberOpt (option_usage_text.apz_str[ 79])
-#define zOneSpace (option_usage_text.apz_str[ 80])
-#define zOnlyOne (option_usage_text.apz_str[ 81])
-#define zOptsOnly (option_usage_text.apz_str[ 82])
-#define zOutputFail (option_usage_text.apz_str[ 83])
-#define zPathFmt (option_usage_text.apz_str[ 84])
-#define zPlsSendBugs (option_usage_text.apz_str[ 85])
-#define zPreset (option_usage_text.apz_str[ 86])
-#define zPresetFile (option_usage_text.apz_str[ 87])
-#define zPresetIntro (option_usage_text.apz_str[ 88])
-#define zProhib (option_usage_text.apz_str[ 89])
-#define zReorder (option_usage_text.apz_str[ 90])
-#define zRange (option_usage_text.apz_str[ 91])
-#define zRangeAbove (option_usage_text.apz_str[ 92])
-#define zRangeLie (option_usage_text.apz_str[ 93])
-#define zRangeBadLie (option_usage_text.apz_str[ 94])
-#define zRangeOnly (option_usage_text.apz_str[ 95])
-#define zRangeOr (option_usage_text.apz_str[ 96])
-#define zRangeErr (option_usage_text.apz_str[ 97])
-#define zRangeExact (option_usage_text.apz_str[ 98])
-#define zRangeScaled (option_usage_text.apz_str[ 99])
-#define zRangeUpto (option_usage_text.apz_str[100])
-#define zResetNotConfig (option_usage_text.apz_str[101])
-#define zReqFmt (option_usage_text.apz_str[102])
-#define zReqOptFmt (option_usage_text.apz_str[103])
-#define zReqThese (option_usage_text.apz_str[104])
-#define zReq_NoShrtTtl (option_usage_text.apz_str[105])
-#define zReq_ShrtTtl (option_usage_text.apz_str[106])
-#define zSepChars (option_usage_text.apz_str[107])
-#define zSetMemberSettings (option_usage_text.apz_str[108])
-#define zShrtGnuOptFmt (option_usage_text.apz_str[109])
-#define zSixSpaces (option_usage_text.apz_str[110])
-#define zStdBoolArg (option_usage_text.apz_str[111])
-#define zStdBreak (option_usage_text.apz_str[112])
-#define zStdFileArg (option_usage_text.apz_str[113])
-#define zStdKeyArg (option_usage_text.apz_str[114])
-#define zStdKeyLArg (option_usage_text.apz_str[115])
-#define zStdTimeArg (option_usage_text.apz_str[116])
-#define zStdNestArg (option_usage_text.apz_str[117])
-#define zStdNoArg (option_usage_text.apz_str[118])
-#define zStdNumArg (option_usage_text.apz_str[119])
-#define zStdOptArg (option_usage_text.apz_str[120])
-#define zStdReqArg (option_usage_text.apz_str[121])
-#define zStdStrArg (option_usage_text.apz_str[122])
-#define zTabHyp (option_usage_text.apz_str[123])
-#define zTabHypAnd (option_usage_text.apz_str[124])
-#define zTabout (option_usage_text.apz_str[125])
-#define zThreeSpaces (option_usage_text.apz_str[126])
-#define zTwoSpaces (option_usage_text.apz_str[127])
-#define zUpTo (option_usage_text.apz_str[128])
-#define zValidKeys (option_usage_text.apz_str[129])
+#define zIllOptChr (option_usage_text.apz_str[ 52])
+#define zIllOptStr (option_usage_text.apz_str[ 53])
+#define zIllegal (option_usage_text.apz_str[ 54])
+#define zIntRange (option_usage_text.apz_str[ 55])
+#define zInvalOptDesc (option_usage_text.apz_str[ 56])
+#define zLowerBits (option_usage_text.apz_str[ 57])
+#define zMembers (option_usage_text.apz_str[ 58])
+#define zMisArg (option_usage_text.apz_str[ 59])
+#define zMultiEquiv (option_usage_text.apz_str[ 60])
+#define zMust (option_usage_text.apz_str[ 61])
+#define zNeedOne (option_usage_text.apz_str[ 62])
+#define zNoArg (option_usage_text.apz_str[ 63])
+#define zNoArgs (option_usage_text.apz_str[ 64])
+#define zNoCreat (option_usage_text.apz_str[ 65])
+#define zNoFlags (option_usage_text.apz_str[ 66])
+#define zNoKey (option_usage_text.apz_str[ 67])
+#define zNoLim (option_usage_text.apz_str[ 68])
+#define zNoPreset (option_usage_text.apz_str[ 69])
+#define zNoResetArg (option_usage_text.apz_str[ 70])
+#define zNoRq_NoShrtTtl (option_usage_text.apz_str[ 71])
+#define zNoRq_ShrtTtl (option_usage_text.apz_str[ 72])
+#define zNoStat (option_usage_text.apz_str[ 73])
+#define zNoState (option_usage_text.apz_str[ 74])
+#define zNone (option_usage_text.apz_str[ 75])
+#define zNotDef (option_usage_text.apz_str[ 76])
+#define zNotCmdOpt (option_usage_text.apz_str[ 77])
+#define zNotEnough (option_usage_text.apz_str[ 78])
+#define zNotFile (option_usage_text.apz_str[ 79])
+#define zNotNumber (option_usage_text.apz_str[ 80])
+#define zNrmOptFmt (option_usage_text.apz_str[ 81])
+#define zNumberOpt (option_usage_text.apz_str[ 82])
+#define zOneSpace (option_usage_text.apz_str[ 83])
+#define zOnlyOne (option_usage_text.apz_str[ 84])
+#define zOptsOnly (option_usage_text.apz_str[ 85])
+#define zOutputFail (option_usage_text.apz_str[ 86])
+#define zPathFmt (option_usage_text.apz_str[ 87])
+#define zPlsSendBugs (option_usage_text.apz_str[ 88])
+#define zPreset (option_usage_text.apz_str[ 89])
+#define zPresetFile (option_usage_text.apz_str[ 90])
+#define zPresetIntro (option_usage_text.apz_str[ 91])
+#define zProhib (option_usage_text.apz_str[ 92])
+#define zReorder (option_usage_text.apz_str[ 93])
+#define zRange (option_usage_text.apz_str[ 94])
+#define zRangeAbove (option_usage_text.apz_str[ 95])
+#define zRangeLie (option_usage_text.apz_str[ 96])
+#define zRangeBadLie (option_usage_text.apz_str[ 97])
+#define zRangeOnly (option_usage_text.apz_str[ 98])
+#define zRangeOr (option_usage_text.apz_str[ 99])
+#define zRangeErr (option_usage_text.apz_str[100])
+#define zRangeExact (option_usage_text.apz_str[101])
+#define zRangeScaled (option_usage_text.apz_str[102])
+#define zRangeUpto (option_usage_text.apz_str[103])
+#define zResetNotConfig (option_usage_text.apz_str[104])
+#define zReqFmt (option_usage_text.apz_str[105])
+#define zReqOptFmt (option_usage_text.apz_str[106])
+#define zReqThese (option_usage_text.apz_str[107])
+#define zReq_NoShrtTtl (option_usage_text.apz_str[108])
+#define zReq_ShrtTtl (option_usage_text.apz_str[109])
+#define zSepChars (option_usage_text.apz_str[110])
+#define zSetMemberSettings (option_usage_text.apz_str[111])
+#define zShrtGnuOptFmt (option_usage_text.apz_str[112])
+#define zSixSpaces (option_usage_text.apz_str[113])
+#define zStdBoolArg (option_usage_text.apz_str[114])
+#define zStdBreak (option_usage_text.apz_str[115])
+#define zStdFileArg (option_usage_text.apz_str[116])
+#define zStdKeyArg (option_usage_text.apz_str[117])
+#define zStdKeyLArg (option_usage_text.apz_str[118])
+#define zStdTimeArg (option_usage_text.apz_str[119])
+#define zStdNestArg (option_usage_text.apz_str[120])
+#define zStdNoArg (option_usage_text.apz_str[121])
+#define zStdNumArg (option_usage_text.apz_str[122])
+#define zStdOptArg (option_usage_text.apz_str[123])
+#define zStdReqArg (option_usage_text.apz_str[124])
+#define zStdStrArg (option_usage_text.apz_str[125])
+#define zTabHyp (option_usage_text.apz_str[126])
+#define zTabHypAnd (option_usage_text.apz_str[127])
+#define zTabout (option_usage_text.apz_str[128])
+#define zThreeSpaces (option_usage_text.apz_str[129])
+#define zTwoSpaces (option_usage_text.apz_str[130])
+#define zUpTo (option_usage_text.apz_str[131])
+#define zValidKeys (option_usage_text.apz_str[132])
/*
* First, set up the strings. Some of these are writable. These are all in
static char eng_zGnuTimeArg[] = "=Tim";
static char eng_zGnuNumArg[] = "=num";
static char eng_zGnuStrArg[] = "=str";
-static char const usage_txt[4230] =
+static char const usage_txt[4326] =
+ "malloc of %d bytes failed\n\0"
"AutoOpts function called without option descriptor\n\0"
"\tThis exceeds the compiled library version: \0"
"Automated Options Processing Error!\n"
"\t%s called AutoOpts function with structure version %d:%d:%d.\n\0"
+ "realloc of %d bytes at 0x%p failed\n\0"
"\tThis is less than the minimum library version: \0"
+ "strdup of %d byte string failed\n\0"
"Automated Options version %s\n"
"\tcopyright (c) 1999-2010 by Bruce Korb - all rights reserved\n\0"
"AutoOpts lib error: defaulted to option with optional arg\n\0"
* Aren't you glad you don't maintain this by hand?
*/
usage_text_t option_usage_text = {
- 137,
+ 140,
eng_zGnuBoolArg, eng_zGnuKeyArg, eng_zGnuFileArg, eng_zGnuKeyLArg,
eng_zGnuTimeArg, eng_zGnuNumArg, eng_zGnuStrArg,
{
- usage_txt + 0, usage_txt + 52, usage_txt + 98, usage_txt + 197,
- usage_txt + 247, usage_txt + 338, usage_txt + 397, usage_txt + 447,
- usage_txt + 451, usage_txt + 478, usage_txt + 527, usage_txt + 555,
- usage_txt + 592, usage_txt + 617, usage_txt + 643, usage_txt + 683,
- usage_txt + 820, usage_txt + 868, usage_txt + 922, usage_txt + 935,
- usage_txt + 943, usage_txt + 985, usage_txt +1009, usage_txt +1049,
- usage_txt +1064, usage_txt +1094, usage_txt +1120, usage_txt +1133,
- usage_txt +1147, usage_txt +1194, usage_txt +1200, usage_txt +1303,
- usage_txt +1315, usage_txt +1366, usage_txt +1395, usage_txt +1446,
- usage_txt +1480, usage_txt +1521, usage_txt +1544, usage_txt +1570,
- usage_txt +1601, usage_txt +1615, usage_txt +1630, usage_txt +1661,
- usage_txt +1688, usage_txt +1794, usage_txt +1800, usage_txt +1806,
- usage_txt +1813, usage_txt +1824, usage_txt +1850, usage_txt +1876,
- usage_txt +1884, usage_txt +1920, usage_txt +1971, usage_txt +2027,
- usage_txt +2061, usage_txt +2099, usage_txt +2164, usage_txt +2207,
- usage_txt +2242, usage_txt +2283, usage_txt +2323, usage_txt +2350,
- usage_txt +2417, usage_txt +2465, usage_txt +2498, usage_txt +2523,
- usage_txt +2571, usage_txt +2606, usage_txt +2644, usage_txt +2671,
- usage_txt +2720, usage_txt +2725, usage_txt +2743, usage_txt +2778,
- usage_txt +2822, usage_txt +2876, usage_txt +2922, usage_txt +2930,
- usage_txt +2978, usage_txt +2980, usage_txt +3005, usage_txt +3039,
- usage_txt +3068, usage_txt +3087, usage_txt +3121, usage_txt +3157,
- usage_txt +3195, usage_txt +3251, usage_txt +3277, usage_txt +3343,
- usage_txt +3356, usage_txt +3387, usage_txt +3424, usage_txt +3470,
- usage_txt +3486, usage_txt +3492, usage_txt +3544, usage_txt +3558,
- usage_txt +3604, usage_txt +3632, usage_txt +3677, usage_txt +3719,
- usage_txt +3733, usage_txt +3758, usage_txt +3798, usage_txt +3841,
- usage_txt +3845, usage_txt +4064, usage_txt +4067, usage_txt +4074,
- usage_txt +4078, usage_txt +4086, usage_txt +4090, usage_txt +4094,
- usage_txt +4098, usage_txt +4102, usage_txt +4106, usage_txt +4110,
- usage_txt +4114, usage_txt +4118, usage_txt +4122, usage_txt +4126,
- usage_txt +4133, usage_txt +4145, usage_txt +4153, usage_txt +4157,
- usage_txt +4160, usage_txt +4193
+ usage_txt + 0, usage_txt + 27, usage_txt + 79, usage_txt + 125,
+ usage_txt + 224, usage_txt + 260, usage_txt + 310, usage_txt + 343,
+ usage_txt + 434, usage_txt + 493, usage_txt + 543, usage_txt + 547,
+ usage_txt + 574, usage_txt + 623, usage_txt + 651, usage_txt + 688,
+ usage_txt + 713, usage_txt + 739, usage_txt + 779, usage_txt + 916,
+ usage_txt + 964, usage_txt +1018, usage_txt +1031, usage_txt +1039,
+ usage_txt +1081, usage_txt +1105, usage_txt +1145, usage_txt +1160,
+ usage_txt +1190, usage_txt +1216, usage_txt +1229, usage_txt +1243,
+ usage_txt +1290, usage_txt +1296, usage_txt +1399, usage_txt +1411,
+ usage_txt +1462, usage_txt +1491, usage_txt +1542, usage_txt +1576,
+ usage_txt +1617, usage_txt +1640, usage_txt +1666, usage_txt +1697,
+ usage_txt +1711, usage_txt +1726, usage_txt +1757, usage_txt +1784,
+ usage_txt +1890, usage_txt +1896, usage_txt +1902, usage_txt +1909,
+ usage_txt +1920, usage_txt +1946, usage_txt +1972, usage_txt +1980,
+ usage_txt +2016, usage_txt +2067, usage_txt +2123, usage_txt +2157,
+ usage_txt +2195, usage_txt +2260, usage_txt +2303, usage_txt +2338,
+ usage_txt +2379, usage_txt +2419, usage_txt +2446, usage_txt +2513,
+ usage_txt +2561, usage_txt +2594, usage_txt +2619, usage_txt +2667,
+ usage_txt +2702, usage_txt +2740, usage_txt +2767, usage_txt +2816,
+ usage_txt +2821, usage_txt +2839, usage_txt +2874, usage_txt +2918,
+ usage_txt +2972, usage_txt +3018, usage_txt +3026, usage_txt +3074,
+ usage_txt +3076, usage_txt +3101, usage_txt +3135, usage_txt +3164,
+ usage_txt +3183, usage_txt +3217, usage_txt +3253, usage_txt +3291,
+ usage_txt +3347, usage_txt +3373, usage_txt +3439, usage_txt +3452,
+ usage_txt +3483, usage_txt +3520, usage_txt +3566, usage_txt +3582,
+ usage_txt +3588, usage_txt +3640, usage_txt +3654, usage_txt +3700,
+ usage_txt +3728, usage_txt +3773, usage_txt +3815, usage_txt +3829,
+ usage_txt +3854, usage_txt +3894, usage_txt +3937, usage_txt +3941,
+ usage_txt +4160, usage_txt +4163, usage_txt +4170, usage_txt +4174,
+ usage_txt +4182, usage_txt +4186, usage_txt +4190, usage_txt +4194,
+ usage_txt +4198, usage_txt +4202, usage_txt +4206, usage_txt +4210,
+ usage_txt +4214, usage_txt +4218, usage_txt +4222, usage_txt +4229,
+ usage_txt +4241, usage_txt +4249, usage_txt +4253, usage_txt +4256,
+ usage_txt +4289
}
};