Mercurial > hg > CbC > old > device
annotate conv/null.c @ 75:92dcf107a837 c-code-output
c code output
author | kono |
---|---|
date | Mon, 24 Feb 2003 19:50:20 +0900 |
parents | 0b068058dd67 |
children | 25654dc29ecc |
rev | line source |
---|---|
60 | 1 #define EXTERN /**/ |
2 | |
3 #include "mc.h" | |
4 | |
65 | 5 static void open(char *); |
60 | 6 static void print(char *); |
65 | 7 static void close(); |
66 | 8 static void comment(char *s); |
60 | 9 |
10 Converter null_converter = { | |
65 | 11 &open, |
12 &print, | |
13 &close, | |
66 | 14 &comment, |
60 | 15 }; |
16 | |
65 | 17 static void |
66 | 18 comment(char *s) |
19 { | |
20 } | |
21 | |
22 static void | |
65 | 23 open(char *s) |
24 { | |
25 } | |
60 | 26 |
27 static void | |
28 print(char *s) | |
29 { | |
30 } | |
65 | 31 |
32 static void | |
33 close() | |
34 { | |
35 } | |
36 |