blob: 83eb2d4662272b132af0fcfa3e8fbecdddbcf50c [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2#include <string.h>
3#include <stdio.h>
njn25e49d8e72002-09-23 09:36:25 +00004#include <stdlib.h>
sewardjde4a1d02002-03-22 01:27:54 +00005
6char* s1;
7char* s2;
8
9int main ( void )
10{
11 s1 = malloc(10); strcpy(s1,"fooble");
12 s2 = malloc(10); strcpy(s2,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
14 printf("different\n");
15 else
16 printf("same (?!)\n");
17 return 0;
18}
19
20