const char* config_getopt ( const char *  opt  ) 

Return the value of a configuration switch.

Definition at line 286 of file config.c.

00287 {
00288         struct config_entry *ent;
00289         
00290         ent = config_search(opt);
00291         g_assert(ent != NULL);
00292         
00293         /* Return the default if it is unset */
00294         return (ent->curval ? ent->curval : ent->defval);
00295 }

Here is the call graph for this function:

Here is the caller graph for this function:

 All Data Structures Files Functions Variables Defines
Generated on Mon Mar 15 04:45:08 2010 for herrie by  doxygen 1.6.3