"Fossies" - the Fresh Open Source Software Archive

Member "tokfile.h" (9 May 1995, 524 Bytes) of package /linux/misc/old/cpost.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "tokfile.h" see the Fossies "Dox" file reference documentation.

    1 /*------------------------------------------------------------------
    2  * tokfile.h : tokenize the contents of a file
    3  *------------------------------------------------------------------
    4  * 02-13-93 originally by Patrick J. Mueller
    5  *------------------------------------------------------------------*/
    6 
    7 #if !defined(TOKFILE_H_INCLUDED)
    8 #define TOKFILE_H_INCLUDED
    9 
   10 #define TOKFILE_MAX_LINE 512
   11 
   12 typedef void * TokFileInfo;
   13 
   14 TokFileInfo TokFileOpen(
   15    char *fileName
   16    );
   17 
   18 char *TokFileNext(
   19    TokFileInfo tfi
   20    );
   21 
   22 #endif