blob: 9b2ae02d9a9624de250a02a212bee55e82a0cd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $Id: nullproc.cc,v 1.1 1997/03/16 20:35:30 dps Exp $ */
/* Do nothing function for ignoring actions */
#include "lib.h"
/* Do nothing process, handy for cases where we feel no need to act */
void null_proc(const tok_seq::tok *t, const docfmt *fmt, FILE *out, void *v)
{
fmt=fmt;
t=t;
out=out;
v=v;
}
|