_Entry

A slot list entry.

Synopsis:

struct _Entry SlotFactory_Entry {
    char * word ;
    asr_slot_entry_t * slot ;
    SlotFactory_Entry * next ;
};

Data:

char * word
The word association with the entry.
asr_slot_entry_t * slot
The transcription slot entry.
SlotFactory_Entry * next
A pointer to the next slot list entry.

Library:

libasr

Description:

This structure holds the word that is associated with the entry, as well as a pointer to the transcription slot entry (see asr_slot_entry_t) and a pointer to the next slot entry in the list. This allows entries to be chained in a singly linked list.