atoi.h 303 B

12345678910111213141516171819
  1. #ifndef ATOI_H
  2. #define ATOI_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <open62541/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 */