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 }
size_t ustrncpy(unsigned char *dest, const char *src, size_t n)
Definition: ustrncpy.c:4