modules/ca/ca_libs.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
#include "ca_defs.h"
void stringPack(char *, const char *);
/*
* This function prototype is for a function which reads a file and
* splits it into tokens.
*
*/
void opSplitsen(FILE *, gchar **);
/*********************************************************************
* ca_populateDictionary() function -- populates the dictionary with the
* contents of the dictionary file.
*
* Parameters
* woordenbook[] -- an array of dictionary structures.
* size -- the size of the array.
*
* Returns
* Nothing.
*
*********************************************************************/
void ca_populateDictionary(dict_t [], int);
void getDictionary(dict_t [], int);
/*
* readConfig()
* Reads the configuration text file.
*/
void ca_readConfig(const char *, values_t [], int);
void ca_init(values_t [], values_t []);
/*
* The get functions.
*/
int ca_get_int(int);
char *ca_get_dirlist(int);
char *ca_get_string(int);
int ca_get_boolean(int symbol);
/*
* The set functions.
*/
void ca_set_int(int);
void ca_set_dirlist(int);
void ca_set_string(int);
void ca_set_boolean(int symbol);
/*
* The get functions for the database and SOURCE variables.
*/
void ca_getDatabase(ca_database_t);
void ca_getSource(ca_database_list_t);
void ca_getSourcePtr(ca_database_list_t *);
void ca_getAllSources(GSList *);
/*
* The get function for the Dictionary.
*
*/
void ca_getDictionary(dict_t [], int);
/*
* The get function for the string elements of the
* the configuration structure.
*/
void ca_getConfig(values_t [], int);