Mercurial > hg > CbC > old > device
view 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 |
line wrap: on
line source
#define EXTERN /**/ #include "mc.h" static void open(char *); static void print(char *); static void close(); static void comment(char *s); Converter null_converter = { &open, &print, &close, &comment, }; static void comment(char *s) { } static void open(char *s) { } static void print(char *s) { } static void close() { }