![]() |
|
|||
File indexing completed on 2025-02-21 10:05:33
0001 /* 0002 * qp_str_table.h -- 0003 * Declare a fast sorted string with fast lookup 0004 * 0005 * Original: 6-Nov-1995 11:37 0006 * 0007 * Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch> 0008 * 0009 */ 0010 0011 #ifndef CERN_QP_STR_TABLE 0012 #define CERN_QP_STR_TABLE 0013 0014 0015 typedef struct _str_tab_ { 0016 int n; /* number of entries in the table */ 0017 } StrTab; 0018 0019 0020 StrTab * 0021 qp_strtab_new( 0022 int size 0023 ); 0024 0025 void 0026 qp_strtab_free( 0027 StrTab * strtab 0028 ); 0029 0030 #endif /* CERN_QP_STR_TABLE */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |