nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
strcpy.c
Go to the documentation of this file.
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <string.h>
4 
5 char *strcpy(char *dest, const char *src)
6 {
7  char *ret = dest;
8 
9  while (*src) {
10  *dest++ = *src++;
11  }
12  *dest = *src;
13 
14  return ret;
15 }
16 
17 /* End of a file */