diff options
| author | yuzu-eva <cafebabe@disroot.org> | 2025-04-12 08:39:13 +0200 |
|---|---|---|
| committer | yuzu-eva <cafebabe@disroot.org> | 2025-04-12 08:39:13 +0200 |
| commit | 5aa349d6229806ad78b083fed3997164bd3721ae (patch) | |
| tree | d32b2063769df0e540ff5164b33c84a7e6493c9a /dbhandling.h | |
| parent | 56c355574d29546bbd5676d94dff48c8631a9fec (diff) | |
combined the enums into one
Diffstat (limited to 'dbhandling.h')
| -rw-r--r-- | dbhandling.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbhandling.h b/dbhandling.h index df54eba..042ad97 100644 --- a/dbhandling.h +++ b/dbhandling.h @@ -10,8 +10,8 @@ #include "enum.h" void exit_with_error(sqlite3 *db, const char *msg); -void select_from_table(sqlite3 *db, target_e target, char *qp); -void update_entry(sqlite3 *db, target_e target, char *qp, char *value, char *status); -void add_entry(sqlite3 *db, target_e target, char *name, char *value, char *status); +void select_from_table(sqlite3 *db, args_e target, char *qp); +void update_entry(sqlite3 *db, args_e target, char *qp, char *value, char *status); +void add_entry(sqlite3 *db, args_e target, char *name, char *value, char *status); #endif |
