/[global]/global/htags/common.c
ViewVC logotype

Diff of /global/htags/common.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.25 by shigio, Tue Apr 5 12:58:26 2005 UTC revision 1.26 by shigio, Tue Apr 5 17:17:56 2005 UTC
# Line 109  char *noframes_begin   = "<noframes>"; Line 109  char *noframes_begin   = "<noframes>";
109  char *noframes_end      = "</noframes>";  char *noframes_end      = "</noframes>";
110    
111  /*  /*
112     * print string and new line.
113     *
114     * This function is a replacement of fprintf(op, "%s\n", s) in htags.
115     */
116    int
117    fputs_nl(s, op)
118            const char *s;
119            FILE *op;
120    {
121            fputs(s, op);
122            putc('\n', op);
123            return 0;
124    }
125    /*
126   * XHTML support.   * XHTML support.
127   *   *
128   * If the --xhtml option is specified then we take 'XHTML 1.1'.   * If the --xhtml option is specified then we take 'XHTML 1.1'.

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26