|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sflini.h"
SYMTAB *
ini_dyn_loade (
SYMTAB *load_symtab,
const char *filename)
Loads the contents of an .ini file into a symbol table, as for ini dyn load(), but requires that the .ini file exists. Returns a loaded symbol table if the file was present, and NULL otherwise.
{
ASSERT (filename);
if (file locate ("PATH", filename, NULL))
return (ini dyn load (load_symtab, filename));
else
return (NULL);
}
| | << | < | > | >> |
|