#include <dictionary.h>
変数 | |
| int | n |
| int | size |
| Number of entries in dictionary | |
| char ** | val |
| Storage size | |
| char ** | key |
| List of string values | |
| unsigned * | hash |
| List of string keys | |
This object contains a list of string/string associations. Each association is identified by a unique string key. Looking up values in the dictionary is speeded up by the use of a (hopefully collision-free) hash function.
dictionary.h の 50 行で定義されています。
| int n |
| int size |
Number of entries in dictionary
dictionary.h の 52 行で定義されています。
参照元 dictionary_del()・dictionary_dump()・dictionary_get()・dictionary_new()・dictionary_set()・dictionary_unset()・iniparser_dump()・iniparser_dump_ini()・iniparser_getnsec()・iniparser_getsecname().
| char** val |
Storage size
dictionary.h の 53 行で定義されています。
参照元 dictionary_del()・dictionary_dump()・dictionary_get()・dictionary_new()・dictionary_set()・iniparser_dump()・iniparser_dump_ini().
| char** key |
List of string values
dictionary.h の 54 行で定義されています。
参照元 dictionary_del()・dictionary_dump()・dictionary_get()・dictionary_new()・dictionary_set()・dictionary_unset()・iniparser_dump()・iniparser_dump_ini()・iniparser_getnsec()・iniparser_getsecname().
| unsigned* hash |
List of string keys
dictionary.h の 55 行で定義されています。
参照元 dictionary_del()・dictionary_get()・dictionary_new()・dictionary_set()・dictionary_unset().
1.4.7