forked from KolibriOS/kolibrios
0d9c69c2a0
- Unified stdcall and cdecl; - Fixed clayer to use def format; - Fixed build examples. git-svn-id: svn://kolibrios.org@9620 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
410 B
C
19 lines
410 B
C
#include <errno.h>
|
|
#include <sys/ksys.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
int main(int argc, char** argv){
|
|
char hello1[]="Hello, KolibriOS!";
|
|
char hello2[20];
|
|
memcpy(hello1, hello2, strlen(hello1));
|
|
if(!__strcmp(hello1, hello2)){
|
|
printf("memcpy: Successfully!\n");
|
|
return 0;
|
|
} else{
|
|
printf("memcpy: Failure\n");
|
|
return -1;
|
|
}
|
|
}
|