2002-08-07 00:39:45 +08:00
|
|
|
#ifndef _NGX_STRING_H_INCLUDED_
|
|
|
|
#define _NGX_STRING_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_core.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2002-12-03 00:09:40 +08:00
|
|
|
typedef struct {
|
2002-12-15 14:25:09 +08:00
|
|
|
size_t len;
|
|
|
|
char *data;
|
2002-12-03 00:09:40 +08:00
|
|
|
} ngx_str_t;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-26 15:24:21 +08:00
|
|
|
#define ngx_string(str) { sizeof(str) - 1, str }
|
2003-03-12 04:38:13 +08:00
|
|
|
#define ngx_null_string { 0, NULL }
|
2002-12-26 15:24:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if (WIN32)
|
2002-12-15 14:25:09 +08:00
|
|
|
|
2003-01-28 23:56:37 +08:00
|
|
|
#define ngx_strncasecmp strnicmp
|
2003-01-09 13:36:00 +08:00
|
|
|
#define ngx_strcasecmp stricmp
|
2003-01-15 15:02:27 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_snprintf _snprintf
|
|
|
|
#define ngx_vsnprintf _vsnprintf
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2003-01-28 23:56:37 +08:00
|
|
|
#define ngx_strncasecmp strncasecmp
|
2003-01-10 14:09:20 +08:00
|
|
|
#define ngx_strcasecmp strcasecmp
|
2003-01-15 15:02:27 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_snprintf snprintf
|
|
|
|
#define ngx_vsnprintf vsnprintf
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-03-15 04:46:25 +08:00
|
|
|
|
|
|
|
#define ngx_strncmp strncmp
|
|
|
|
|
|
|
|
/* msvc and icc compile strcmp() to inline loop */
|
|
|
|
#define ngx_strcmp strcmp
|
|
|
|
|
|
|
|
#define ngx_strstr strstr
|
|
|
|
#define ngx_strlen strlen
|
|
|
|
|
2003-07-01 23:00:03 +08:00
|
|
|
/*
|
|
|
|
* msvc and icc compile memset() to inline "rep stos"
|
|
|
|
* while ZeroMemory and bzero are calls.
|
2004-03-15 04:46:25 +08:00
|
|
|
*
|
|
|
|
* icc can also inline mov's of a zeroed register for small blocks.
|
2003-07-01 23:00:03 +08:00
|
|
|
*/
|
2003-07-03 02:51:41 +08:00
|
|
|
#define ngx_memzero(buf, n) memset(buf, 0, n)
|
2003-07-01 23:00:03 +08:00
|
|
|
|
|
|
|
/* msvc and icc compile memcpy() to inline "rep movs" */
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_memcpy(dst, src, n) memcpy(dst, src, n)
|
2003-05-30 22:27:59 +08:00
|
|
|
#define ngx_cpymem(dst, src, n) ((char *) memcpy(dst, src, n)) + n
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-07-01 23:00:03 +08:00
|
|
|
/* msvc and icc compile memcmp() to inline loop */
|
|
|
|
#define ngx_memcmp memcmp
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
char *ngx_cpystrn(char *dst, char *src, size_t n);
|
2003-05-07 01:03:16 +08:00
|
|
|
int ngx_rstrncmp(char *s1, char *s2, size_t n);
|
2003-03-21 00:09:44 +08:00
|
|
|
int ngx_atoi(char *line, size_t n);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-11-06 01:03:41 +08:00
|
|
|
void ngx_md5_text(char *text, u_char *md5);
|
2003-11-05 06:12:39 +08:00
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
#define ngx_qsort qsort
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
|
|
|
|
#define ngx_value_helper(n) #n
|
|
|
|
#define ngx_value(n) ngx_value_helper(n)
|
2003-05-20 00:39:14 +08:00
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif /* _NGX_STRING_H_INCLUDED_ */
|