view conv/null.c @ 74:6de658ae384c

*** empty log message ***
author kono
date Mon, 24 Feb 2003 17:18:48 +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()
{
}