atoi.h 295 B

123456789101112131415161718
  1. #ifndef ATOI_H
  2. #define ATOI_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "ua_types.h"
  7. UA_StatusCode atoiUnsigned(const char *s, size_t size, UA_UInt64 *result);
  8. UA_StatusCode atoiSigned(const char *s, size_t size, UA_Int64 *result);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* ATOI_H */