SQG Documentation:  skipcomment()

============================================================
SYNOPSIS
    
      #include "querygen.h"

      char *skipcomment(FILE *fp);


============================================================

DESCRIPTION

skipcomment() searches through fp from the cursors current
position and ignores text that is between "/*" and "*/".
Text that appears after "--" is also ignored until the end
of the line.




============================================================

RETURN VALUE

The first printable character found outside of a comment to
the first white space found outside of a comment is put into
an array of type char and a pointer to this array is 
returned.

If EOF is reached, NULL is returned.

============================================================