Skip to content

Commit

Permalink
Add printf_long_long_t and printf_ulong_long_t (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSomeMan authored Jan 17, 2022
1 parent f612a3d commit af744cf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions include/esp_type_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
extern "C" {
#endif

typedef int printf_int_t;
typedef unsigned printf_uint_t;
typedef long printf_long_t;
typedef unsigned long printf_ulong_t;
typedef int printf_precision_t;
typedef int printf_int_t;
typedef unsigned printf_uint_t;
typedef long printf_long_t;
typedef unsigned long printf_ulong_t;
typedef long long printf_long_long_t;
typedef unsigned long long printf_ulong_long_t;
typedef int printf_precision_t;

typedef int socket_t;
#define SOCKET_INVALID ((socket_t)(-1))
Expand Down

0 comments on commit af744cf

Please sign in to comment.