| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.11

 

ini_dyn_loade

#include "sflini.h"
SYMTAB *
ini_dyn_loade (
    SYMTAB *load_symtab,
    const char *filename)

Synopsis

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.

Source Code - (sflini.c)

{
    ASSERT (filename);
    if (file locate ("PATH", filename, NULL))
        return (ini dyn load (load_symtab, filename));
    else
        return (NULL);
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation