You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by do...@apache.org on 2001/01/23 05:19:57 UTC

cvs commit: apr/include apr_tables.h

dougm       01/01/22 20:19:57

  Modified:    include  apr_tables.h
  Log:
  remove dead code now that btable is gone
  
  Revision  Changes    Path
  1.13      +0 -15     apr/include/apr_tables.h
  
  Index: apr_tables.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_tables.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- apr_tables.h	2001/01/20 11:34:32	1.12
  +++ apr_tables.h	2001/01/23 04:19:56	1.13
  @@ -127,21 +127,6 @@
   };
   
   /**
  - * A transparent type for items stored in binary-content tables, and
  - * possibly elsewhere.
  - */
  -typedef struct apr_item_t {
  -    /** The key for the current table entry */
  -    char *key;          /* maybe NULL in future;
  -                         * check when iterating thru table_elts
  -                         */
  -    /** Size of the opaque block comprising the item's content. */
  -    size_t size;
  -    /** A pointer to the content itself. */
  -    void *data;
  -} apr_item_t;
  -
  -/**
    * Get the elements from a table
    * @param t The table
    * @return An array containing the contents of the table