You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Alexei Kosut <ak...@hyperreal.com> on 1996/06/09 03:14:36 UTC

cvs commit: apache/src alloc.h

akosut      96/06/08 18:14:35

  Modified:    src       alloc.h
  Log:
  Add prototype for table_add().
  
  Submitted by: rasmus@madhaus.utcs.utoronto.ca
  
  Revision  Changes    Path
  1.5       +1 -0      apache/src/alloc.h
  
  Index: alloc.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/alloc.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** alloc.h	1996/05/27 19:48:38	1.4
  --- alloc.h	1996/06/09 01:14:35	1.5
  ***************
  *** 148,153 ****
  --- 148,154 ----
    void table_set (table *, const char *name, const char *val);
    void table_merge (table *, char *name, char *more_val);
    void table_unset (table *, char *key);
  + void table_add (table *, char *name, char *val);
    
    table *overlay_tables (pool *p, table *overlay, table *base);