show version
[tridge/junkcode.git] / noteshack.c
1 #include <stdio.h>
2
3 typedef unsigned WORD;
4
5 WORD OSTranslate(
6         WORD TranslateMode,
7         char *In,
8         WORD InLength,
9         char *Out,
10         WORD OutLength)
11 {
12         printf("%s\n", In);
13         return 0x42;
14 }
15
16
17 int main(void)
18 {
19         OSTranslate(0, "foo", 3, "", 1);
20         return 0;
21 }