view src/core/ngx_string.c @ 44:0e81ac0bb3e2

nginx-0.0.1-2003-01-09-08:36:00 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 09 Jan 2003 05:36:00 +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;
}