URI:
       c_comment.st - enscript - GNU Enscript
  HTML git clone git://thinkerwim.org/enscript.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       c_comment.st (286B)
       ---
            1 /*
            2  * Read one C-comment.  C-styled comments are needed in many
            3  * languages.  Therefore it is implemented in a separate file to ease
            4  * its reusing.
            5  */
            6 
            7 state c_comment extends Highlight
            8 {
            9   /\*\\\// {
           10     language_print ($0);
           11     return;
           12   }
           13 }
           14 
           15 
           16 /*
           17 Local variables:
           18 mode: c
           19 End:
           20 */