pull from samba
[tridge/junkcode.git] / foo3.c
1 #include <stdio.h>
2
3 struct user {
4         char username[256];
5         char groups[200][256];
6 };
7
8 void dans_func(IN/OUT STRING char x[100])
9 {
10         char x[100];
11         struct user users[MAX_USERS];
12
13
14         strcpy(x, "foo");
15         printf("%s\n", x);
16
17         x[4] = '3';
18 }
19
20
21 main()
22 {
23         dans_func();
24 }