libcfe
0.12.1
some useful C-functions
ustrncpy.c
Go to the documentation of this file.
1
#include "config.h"
2
#include "
ustrncpy.h
"
3
4
size_t
ustrncpy
(
unsigned
char
*dest,
const
char
*src,
size_t
n)
5
{
6
size_t
i = 0;
7
while
(i < n)
8
{
9
dest[i] = (
unsigned
char)src[i];
10
i++;
11
}
12
return
i;
13
}
ustrncpy.h
ustrncpy
size_t ustrncpy(unsigned char *dest, const char *src, size_t n)
Definition:
ustrncpy.c:4
cfe
ustrncpy.c
Generated on Sun Sep 1 2019 08:41:48 for libcfe by
1.8.15