--- parser3/src/include/pa_string.h 2025/05/26 00:52:15 1.237 +++ parser3/src/include/pa_string.h 2026/01/06 13:27:59 1.239 @@ -8,10 +8,11 @@ #ifndef PA_STRING_H #define PA_STRING_H -#define IDENT_PA_STRING_H "$Id: pa_string.h,v 1.237 2025/05/26 00:52:15 moko Exp $" +#define IDENT_PA_STRING_H "$Id: pa_string.h,v 1.239 2026/01/06 13:27:59 moko Exp $" // includes #include "pa_types.h" +#include "pa_int.h" #include "pa_array.h" extern "C" { // cord's author forgot to do that @@ -71,11 +72,6 @@ public: // generally useful -double pa_atod(const char* str, const String* problem_source); -int pa_atoi(const char* str, int base=10, const String* problem_source=0); -unsigned int pa_atoui(const char *str, int base=10, const String* problem_source=0); -uint64_t pa_atoul(const char *str, int base=10, const String* problem_source=0); - /// this is result of pos functions which mean that substr were not found #define STRING_NOT_FOUND ((size_t)-1)