|
|
|
extern array_t *dbload(const char *new, const char *old) { |
|
if (canopen(new)) |
|
return loadfile(new, NULL, NULL); |
|
return loadfile(old, NULL, NULL); |
|
} |
|
|
array_t *file;
file = canopen(new)
? loadfile(new, NULL, NULL)
: loadfile(old, NULL, NULL);
return file;
Utils/hhss/c/dbload.c
Lines 3 to 9 in dbc6637