view src/core/ngx_string.c @ 8:708f8bb772ec

nginx-0.0.1-2002-09-02-18:48:24 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 02 Sep 2002 14:48:24 +0000
parents 4eff17414a43
children e43f406e4525
line wrap: on
line source


#include <ngx_config.h>
#include <ngx_string.h>


char *ngx_cpystrn(char *dst, char *src, size_t n)
{
    if (n == 0)
        return dst;

    for (/* void */; --n; dst++, src++) {
        *dst = *src;

        if (*dst == '\0')
            return dst;
    }

    *dst = '\0';

    return dst;
}