/[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.46 by shigio, Tue May 10 05:17:52 2005 UTC revision 1.47 by shigio, Wed May 11 01:50:11 2005 UTC
# Line 286  gen_insert_footer(place) Line 286  gen_insert_footer(place)
286          return sed(ip, place);          return sed(ip, place);
287  }  }
288  /*  /*
289   * Generate beginning of page   * Generate beginning of generic page
290   *   *
291   *      i)      title   title of this page   *      i)      title   title of this page
292   *      i)      place   SUBDIR: this page is in sub directory   *      i)      place   SUBDIR: this page is in sub directory
# Line 294  gen_insert_footer(place) Line 294  gen_insert_footer(place)
294   *      i)      use_frameset   *      i)      use_frameset
295   *                      use frameset document type or not   *                      use frameset document type or not
296   */   */
297  const char *  static const char *
298  gen_page_begin(title, place, use_frameset)  gen_page_generic_begin(title, place, use_frameset)
299          const char *title;          const char *title;
300          int place;          int place;
301          int use_frameset;          int use_frameset;
# Line 345  gen_page_begin(title, place, use_framese Line 345  gen_page_begin(title, place, use_framese
345          return strbuf_value(sb);          return strbuf_value(sb);
346  }  }
347  /*  /*
348     * Generate beginning of normal page
349     *
350     *      i)      title   title of this page
351     *      i)      place   SUBDIR: this page is in sub directory
352     *                      TOPDIR: this page is in the top directory
353     */
354    const char *
355    gen_page_begin(title, place)
356            const char *title;
357            int place;
358    {
359            gen_page_generic_begin(title, place, 0);
360    }
361    /*
362     * Generate beginning of frameset page
363     *
364     *      i)      title   title of this page
365     */
366    const char *
367    gen_frameset_page_begin(title)
368            const char *title;
369    {
370            gen_page_generic_begin(title, TOPDIR, 1);
371    }
372    /*
373   * Generate end of page   * Generate end of page
374   */   */
375  const char *  const char *

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47

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