home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / word2x0a.zip / source / nullproc.cc < prev    next >
C/C++ Source or Header  |  1997-03-16  |  320b  |  13 lines

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