"Fossies" - the Fresh Open Source Software Archive

Member "deheader-1.10/test/advance.c" (30 Jan 2023, 315 Bytes) of package /linux/privat/deheader-1.10.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.

    1 /*
    2  * Items: advance(
    3  * Standardized-By: SuS
    4  * Not-Detected-by: gcc-4.4.3 + Linux
    5  */
    6 
    7 #define INIT 
    8 #define GETC() getc()
    9 #define PEEKC() peek()
   10 #define UNGETC(c) ungetc(c)
   11 #define RETURN(ptr) return ptr
   12 #define ERROR(val) return val
   13 
   14 #include <regex.h>
   15 
   16 main(int arg, char **argv)
   17 {
   18     advance("foobar", 0);
   19 }