From af744cf22a475d5b3ec74aa005ca3a291a69c55a Mon Sep 17 00:00:00 2001 From: TheSomeMan Date: Mon, 17 Jan 2022 12:19:26 +0700 Subject: [PATCH] Add printf_long_long_t and printf_ulong_long_t (#25) --- include/esp_type_wrapper.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/include/esp_type_wrapper.h b/include/esp_type_wrapper.h index 4aa8e12..8672163 100644 --- a/include/esp_type_wrapper.h +++ b/include/esp_type_wrapper.h @@ -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))