diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-07-29 14:41:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-07-29 14:41:34 +0000 |
commit | a089857143b4879c7a12d6be7c030b7dfc6dcb8d (patch) | |
tree | 5c0f9c2bde1b4adc1f15a62c6e086a96303e47d6 /src/core/ngx_string.h | |
parent | 4c756c46cdf5879673d364bb07157c9c622c3fac (diff) | |
download | nginx-a089857143b4879c7a12d6be7c030b7dfc6dcb8d.tar.gz nginx-a089857143b4879c7a12d6be7c030b7dfc6dcb8d.zip |
rename ngx_utf_...() to ngx_utf8_...()
Diffstat (limited to 'src/core/ngx_string.h')
-rw-r--r-- | src/core/ngx_string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 895925b6d..dfb3bc4cc 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -151,9 +151,9 @@ u_char *ngx_hex_dump(u_char *dst, u_char *src, size_t len); void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src); ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src); -uint32_t ngx_utf_decode(u_char **p, size_t n); -size_t ngx_utf_length(u_char *p, size_t n); -u_char *ngx_utf_cpystrn(u_char *dst, u_char *src, size_t n, size_t len); +uint32_t ngx_utf8_decode(u_char **p, size_t n); +size_t ngx_utf8_length(u_char *p, size_t n); +u_char *ngx_utf8_cpystrn(u_char *dst, u_char *src, size_t n, size_t len); #define NGX_ESCAPE_URI 0 |