#include "tag.h"
#include <glib.h>
Go to the source code of this file.
Data Structures | |
struct | tag_table |
Functions | |
static G_GNUC_PURE enum tag_type | tag_table_lookup (const struct tag_table *table, const char *name) |
Looks up a string in a tag translation table (case sensitive). | |
static G_GNUC_PURE enum tag_type | tag_table_lookup_i (const struct tag_table *table, const char *name) |
Looks up a string in a tag translation table (case insensitive). |
static G_GNUC_PURE enum tag_type tag_table_lookup | ( | const struct tag_table * | table, | |
const char * | name | |||
) | [inline, static] |
Looks up a string in a tag translation table (case sensitive).
Returns TAG_NUM_OF_ITEM_TYPES if the specified name was not found in the table.
Definition at line 40 of file tag_table.h.
static G_GNUC_PURE enum tag_type tag_table_lookup_i | ( | const struct tag_table * | table, | |
const char * | name | |||
) | [inline, static] |
Looks up a string in a tag translation table (case insensitive).
Returns TAG_NUM_OF_ITEM_TYPES if the specified name was not found in the table.
Definition at line 56 of file tag_table.h.