"Fossies" - the Fresh Open Source Software Archive

Member "detox-1.4.5/src/file.h" (15 Aug 2021, 649 Bytes) of package /linux/privat/detox-1.4.5.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 "file.h" see the Fossies "Dox" file reference documentation.

    1 /**
    2  * This file is part of the Detox package.
    3  *
    4  * Copyright (c) Doug Harple <detox.dharple@gmail.com>
    5  *
    6  * For the full copyright and license information, please view the LICENSE
    7  * file that was distributed with this source code.
    8  */
    9 
   10 #ifndef __FILE_H
   11 #define __FILE_H
   12 
   13 #include "detox.h"
   14 
   15 extern unsigned char *parse_file(unsigned char *filename, struct detox_options *options);
   16 
   17 extern void parse_dir(unsigned char *indir, struct detox_options *options);
   18 
   19 extern void parse_special(unsigned char *in, struct detox_options *options);
   20 
   21 extern void parse_inline(unsigned char *filename, struct detox_options *options);
   22 
   23 #endif              /* __FILE_H */