nginx/src/core/ngx_string.c

135 lines
2.2 KiB
C
Raw Normal View History

#include <ngx_config.h>
2003-03-21 00:09:44 +08:00
#include <ngx_core.h>
char *ngx_cpystrn(char *dst, char *src, size_t n)
{
2003-05-07 01:03:16 +08:00
if (n == 0) {
return dst;
2003-05-07 01:03:16 +08:00
}
for (/* void */; --n; dst++, src++) {
*dst = *src;
2003-05-07 01:03:16 +08:00
if (*dst == '\0') {
return dst;
2003-05-07 01:03:16 +08:00
}
}
*dst = '\0';
return dst;
}
2003-03-21 00:09:44 +08:00
2003-05-07 01:03:16 +08:00
int ngx_rstrncmp(char *s1, char *s2, size_t n)
{
if (n == 0) {
return 0;
}
n--;
for ( ;; ) {
if (s1[n] != s2[n]) {
return (u_char) s1[n] - (u_char) s2[n];
}
if (n == 0) {
return 0;
}
n--;
}
}
2003-03-21 00:09:44 +08:00
int ngx_atoi(char *line, size_t n)
{
int value;
2003-05-07 01:03:16 +08:00
if (n == 0) {
return NGX_ERROR;
}
2003-03-21 00:09:44 +08:00
for (value = 0; n--; line++) {
2003-04-28 23:06:39 +08:00
if (*line < '0' || *line > '9') {
return NGX_ERROR;
}
2003-03-21 00:09:44 +08:00
2003-04-28 23:06:39 +08:00
value = value * 10 + (*line - '0');
2003-03-21 00:09:44 +08:00
}
2003-04-28 23:06:39 +08:00
if (value < 0) {
return NGX_ERROR;
} else {
return value;
}
2003-03-21 00:09:44 +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-11-06 01:03:41 +08:00
/* STUB */
ngx_snprintf(text, 33,
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
md5[0], md5[1], md5[2], md5[3], md5[4], md5[5],
md5[6], md5[7], md5[8], md5[9], md5[10], md5[11],
md5[12], md5[13], md5[14], md5[15]);
2003-11-05 06:12:39 +08:00
}
2003-03-21 00:09:44 +08:00
#if 0
char *ngx_psprintf(ngx_pool_t *p, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
while (*fmt) {
switch(*fmt++) {
case '%':
switch(*fmt++) {
case 's':
s = va_arg(args, char *);
n += ngx_strlen(s);
break;
default:
n++;
}
default:
n++;
}
}
str = ngx_palloc(p, n);
va_start(args, fmt);
for (i = 0; i < n; i++) {
switch(*fmt++) {
case '%':
switch(*fmt++) {
case 's':
s = va_arg(args, char *);
while (str[i++] = s);
break;
default:
n++;
}
default:
str[i] = *fmt;
}
}
len += ngx_vsnprintf(errstr + len, sizeof(errstr) - len - 1, fmt, args);
va_end(args);
}
#endif