diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-06 17:03:16 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-06 17:03:16 +0000 |
commit | 3d09c8df72bc8f4f6f4a15b59f7802444398dcf4 (patch) | |
tree | 5808a30006c81451ec796770e13e5635edb0b0e9 /src/core/ngx_string.h | |
parent | 1d8d9eee942ab1d2565048e00d1817147c49f48c (diff) | |
download | nginx-3d09c8df72bc8f4f6f4a15b59f7802444398dcf4.tar.gz nginx-3d09c8df72bc8f4f6f4a15b59f7802444398dcf4.zip |
nginx-0.0.1-2003-05-06-21:03:16 import
Diffstat (limited to 'src/core/ngx_string.h')
-rw-r--r-- | src/core/ngx_string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 8566d46e8..e678f7333 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -49,6 +49,7 @@ typedef struct { #define ngx_cpymem(dst, src, n) memcpy(dst, src, n) + n char *ngx_cpystrn(char *dst, char *src, size_t n); +int ngx_rstrncmp(char *s1, char *s2, size_t n); int ngx_atoi(char *line, size_t n); |