File: nullproc.cc

package info (click to toggle)
word2x 1.5-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 228 kB
  • ctags: 326
  • sloc: cpp: 3,076; ansic: 350; makefile: 64
file content (12 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (4)
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;
}