Computer Programming Contest Preparation

ToolBox - Source for: 113/11384/xx.c



/home/toolbox/public_html/solutions/113/11384/xx.c
    1 #include <stdio.h>
    2 #include <string.h>
    3 #include <sys/types.h>
    4 #include <sys/stat.h>
    5 #include <fcntl.h>
    6 #include <stdint.h>
    7 #include <math.h>
    8 #include <stdlib.h>
    9 #include <ctype.h>
   10 
   11 #define TRUE  (1 == 1)
   12 #define FALSE (1 != 1)
   13 
   14 #define DEBUG if (FALSE)
   15 
   16 /*
   17  *  Author: Isaac Traxler
   18  *    Date:
   19  * Purpose: fun
   20  * Problem:
   21  */
   22 
   23 /*
   24  * This template reads data until a terminating value is reached.
   25  */
   26 
   27 void init()
   28 {
   29     /* FUNCTION init */
   30 } /* FUNCTION init */
   31 
   32 void dump()
   33 {
   34     /* FUNCTION dump */
   35 } /* FUNCTION dump */
   36 
   37 int getInput()
   38 {
   39     /* FUNCTION getInput */
   40     int dataReadFlag;
   41     return (dataReadFlag);
   42 } /* FUNCTION getInput */
   43 
   44 void process()
   45 {
   46     /* FUNCTION process */
   47 } /* FUNCTION process */
   48 
   49 int main()
   50 {
   51     /* main */
   52     int i;
   53 
   54     for (i=1; 1000000001>i; i++)
   55         {
   56             /* for */
   57             printf("%d\n", i);
   58         } /* for */
   59 
   60 
   61     return EXIT_SUCCESS;
   62 } /* main */
   63