ReactOS 0.4.16-dev-942-g91fadeb
strncpy.c File Reference
#include <string.h>
Include dependency graph for strncpy.c:

Go to the source code of this file.

Functions

char *__cdecl strncpy (char *dest, const char *source, size_t count)
 

Function Documentation

◆ strncpy()

char *__cdecl strncpy ( char dest,
const char source,
size_t  count 
)

Definition at line 40 of file strncpy.c.

45{
46 char *start = dest;
47
48 while (count && (*dest++ = *source++) != '\0') /* copy string */
49 count--;
50
51 if (count) /* pad out with zeroes */
52 while (--count)
53 *dest++ = '\0';
54
55 return(start);
56}
GLuint start
Definition: gl.h:1545
GLuint GLuint GLsizei count
Definition: gl.h:1545
static char * dest
Definition: rtl.c:135