#include "lwip/arch.h"
#include "lwip/opt.h"
Go to the source code of this file.
|
void | lwip_itoa (char *result, size_t bufsize, int number) |
|
int | lwip_strnicmp (const char *str1, const char *str2, size_t len) |
|
int | lwip_stricmp (const char *str1, const char *str2) |
|
char * | lwip_strnstr (const char *buffer, const char *token, size_t n) |
|
◆ htonl
◆ htons
◆ LWIP_ARRAYSIZE
#define LWIP_ARRAYSIZE |
( |
|
x | ) |
(sizeof(x)/sizeof((x)[0])) |
◆ lwip_htonl
#define lwip_htonl |
( |
|
x | ) |
((u32_t)(x)) |
◆ lwip_htons
#define lwip_htons |
( |
|
x | ) |
((u16_t)(x)) |
◆ LWIP_MAKEU32
#define LWIP_MAKEU32 |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d |
|
) |
| |
Value: (((
u32_t)((a) & 0xff) << 24) | \
((
u32_t)((b) & 0xff) << 16) | \
((
u32_t)((c) & 0xff) << 8) | \
uint32_t u32_t
Definition: arch.h:129
Create u32_t value from bytes
◆ LWIP_MAX
#define LWIP_MAX |
( |
|
x, |
|
|
|
y |
|
) |
| (((x) > (y)) ? (x) : (y)) |
◆ LWIP_MIN
#define LWIP_MIN |
( |
|
x, |
|
|
|
y |
|
) |
| (((x) < (y)) ? (x) : (y)) |
◆ lwip_ntohl
#define lwip_ntohl |
( |
|
x | ) |
((u32_t)(x)) |
◆ lwip_ntohs
#define lwip_ntohs |
( |
|
x | ) |
((u16_t)(x)) |
◆ ntohl
◆ ntohs
◆ NULL
◆ PERF_START
#define PERF_START /* null definition */ |
◆ PERF_STOP
#define PERF_STOP |
( |
|
x | ) |
/* null definition */ |
◆ PP_HTONL
#define PP_HTONL |
( |
|
x | ) |
((u32_t)(x)) |
◆ PP_HTONS
#define PP_HTONS |
( |
|
x | ) |
((u16_t)(x)) |
◆ PP_NTOHL
#define PP_NTOHL |
( |
|
x | ) |
((u32_t)(x)) |
◆ PP_NTOHS
#define PP_NTOHS |
( |
|
x | ) |
((u16_t)(x)) |