open62541 1.3.12
Open source implementation of OPC UA
Loading...
Searching...
No Matches
atoi.h
Go to the documentation of this file.
1#ifndef ATOI_H
2#define ATOI_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <open62541/types.h>
9
10size_t atoiUnsigned(const char *pos, size_t size, UA_UInt64 *result);
11size_t atoiSigned(const char *pos, size_t size, UA_Int64 *result);
12
13#ifdef __cplusplus
14}
15#endif
16
17#endif /* ATOI_H */
18
size_t atoiSigned(const char *pos, size_t size, UA_Int64 *result)
size_t atoiUnsigned(const char *pos, size_t size, UA_UInt64 *result)
uint64_t UA_UInt64
Definition types.h:66
int64_t UA_Int64
Definition types.h:61