Release calc version 2.12.4.12

This commit is contained in:
Landon Curt Noll
2013-09-01 20:07:26 -07:00
parent 85bfa30897
commit 57a22a6f39
346 changed files with 2444 additions and 502 deletions

View File

@@ -445,5 +445,7 @@ CONST char *error_table[E__COUNT+2] = {
"Bad argument for ispunct",
"Bad argument for isspace",
"Bad argument for isxdigit",
"Bad argument type for strtoupper",
"Bad argument type for strtolower",
NULL
};

View File

@@ -442,9 +442,11 @@
#define E_ISPUNCT 10429 /* Bad argument for ispunct */
#define E_ISSPACE 10430 /* Bad argument for isspace */
#define E_ISXDIGIT 10431 /* Bad argument for isxdigit */
#define E_STRTOUPPER 10432 /* Bad argument type for strtoupper */
#define E_STRTOLOWER 10433 /* Bad argument type for strtolower */
#define E__HIGHEST 10431 /* highest calc error */
#define E__COUNT 431 /* number of calc errors */
#define E__HIGHEST 10433 /* highest calc error */
#define E__COUNT 433 /* number of calc errors */
#define E_USERDEF 20000 /* base of user defined errors */
/* names of calc error values */