Subversion Repositories planix.SVN

Rev

Rev 67 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include <stdio.h>
#include <string.h>

void
safecpy(char *to, char *from, int tolen)
{
        int fromlen;
        memset(to, 0, tolen);
        fromlen = from ? strlen(from) : 0;
        if (fromlen > tolen)
                fromlen = tolen;
        memcpy(to, from, fromlen);
}