Age         Owner                    Branch data    TLA  Line data    Source code 
                                  1                 :                : #include <stdlib.h>
                                  2                 :                : 
                                  3                 :                : exec sql include ../regression;
                                  4                 :                : 
                                  5                 :                : /* just a test comment */ int i;
                                  6                 :                : /* just a test comment int j*/;
                                  7                 :                : 
                                  8                 :                : /****************************************************************************/
                                  9                 :                : /* Test comment                                                             */
                                 10                 :                : /*--------------------------------------------------------------------------*/
                                 11                 :                : 
 6428 meskes@postgresql.or       12                 :CBC           1 : int main(void)
                                 13                 :                : {
                                 14                 :              1 :   ECPGdebug(1, stderr);
                                 15                 :                : 
                                 16                 :              1 :   exec sql --this is a comment too
                                 17                 :                :   connect to REGRESSDB1;
                                 18                 :                : 
                                 19                 :              1 :   exec sql disconnect;
                                 20                 :              1 :   exit (0);
                                 21                 :                : }
        
               |