65#define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y))
66#define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y))
69#define LWIP_ARRAYSIZE(x) (sizeof(x)/sizeof((x)[0]))
72#define LWIP_MAKEU32(a,b,c,d) (((u32_t)((a) & 0xff) << 24) | \
73 ((u32_t)((b) & 0xff) << 16) | \
74 ((u32_t)((c) & 0xff) << 8) | \
81#define NULL ((void *)0)
85#if BYTE_ORDER == BIG_ENDIAN
86#define lwip_htons(x) ((u16_t)(x))
87#define lwip_ntohs(x) ((u16_t)(x))
88#define lwip_htonl(x) ((u32_t)(x))
89#define lwip_ntohl(x) ((u32_t)(x))
90#define PP_HTONS(x) ((u16_t)(x))
91#define PP_NTOHS(x) ((u16_t)(x))
92#define PP_HTONL(x) ((u32_t)(x))
93#define PP_NTOHL(x) ((u32_t)(x))
98#define lwip_ntohs(x) lwip_htons(x)
103#define lwip_ntohl(x) lwip_htonl(x)
108#define PP_HTONS(x) ((u16_t)((((x) & (u16_t)0x00ffU) << 8) | (((x) & (u16_t)0xff00U) >> 8)))
109#define PP_NTOHS(x) PP_HTONS(x)
110#define PP_HTONL(x) ((((x) & (u32_t)0x000000ffUL) << 24) | \
111 (((x) & (u32_t)0x0000ff00UL) << 8) | \
112 (((x) & (u32_t)0x00ff0000UL) >> 8) | \
113 (((x) & (u32_t)0xff000000UL) >> 24))
114#define PP_NTOHL(x) PP_HTONL(x)
118#ifndef LWIP_DONT_PROVIDE_BYTEORDER_FUNCTIONS
119#define htons(x) lwip_htons(x)
120#define ntohs(x) lwip_ntohs(x)
121#define htonl(x) lwip_htonl(x)
122#define ntohl(x) lwip_ntohl(x)
GLint GLint GLint GLint GLint x
GLenum GLuint GLsizei bufsize
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat token
int lwip_stricmp(const char *str1, const char *str2)
int lwip_strnicmp(const char *str1, const char *str2, size_t len)
char * lwip_strnstr(const char *buffer, const char *token, size_t n)
char * lwip_strnistr(const char *buffer, const char *token, size_t n)
void lwip_itoa(char *result, size_t bufsize, int number)
static unsigned int number