This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | NDB_INIT(prog_name) {my_progname=(prog_name); ndb_init();} |
Functions | |
| int | ndb_init (void) |
| void | ndb_end (int) |
| #define NDB_INIT | ( | prog_name | ) | {my_progname=(prog_name); ndb_init();} |
| void ndb_end | ( | int | ) |
| int ndb_init | ( | void | ) |
Definition at line 21 of file ndb_init.c.
References err, exit, my_init(), and strlen().
Referenced by main(), and NDB_COMMAND().
00022 { 00023 if (my_init()) { 00024 const char* err = "my_init() failed - exit\n"; 00025 write(2, err, strlen(err)); 00026 exit(1); 00027 } 00028 return 0; 00029 }
Here is the call graph for this function:

Here is the caller graph for this function:

1.4.7

