diff options
| author | default <nobody@localhost> | 2024-09-18 12:12:58 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-09-18 12:12:58 +0200 |
| commit | 748d60497fb6cdcc3fbc0a9dbd3bc812045ba85f (patch) | |
| tree | efa0977e7216f1252669139071c45c2aef8dcdae /main.c | |
| parent | 5f5d4be347fdde2d1ceb3df9692af3dcfe551bcc (diff) | |
Started support for CSV data export.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -267,6 +267,11 @@ int main(int argc, char *argv[]) return 0; } + if (strcmp(cmd, "export_csv") == 0) { /** **/ + export_csv(&snac); + return 0; + } + if ((url = GET_ARGV()) == NULL) return usage(); |