insert_event (#1)

Option to insert events seems to work.

Reviewed-on: bjoernf/ics_analyzer#1
Co-authored-by: bjoernf <bjoern.foersterling@web.de>
Co-committed-by: bjoernf <bjoern.foersterling@web.de>
This commit is contained in:
2023-09-09 08:26:50 +02:00
committed by bjoernf
parent c713522736
commit 061ed30333
17 changed files with 452 additions and 188 deletions

View File

@ -1,12 +1,11 @@
#include "cli_arg_parsing.h"
#include "date_time_handling.h"
#include "list_handling.h"
#include "cut_string.h"
#include "string_handling.h"
#include "move_lines.h"
#include "read_until_nl.h"
#include "read_until_string.h"
#include "seek_string_a.h"
#include "remove_whitespace.h"
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
@ -14,8 +13,8 @@
#include <limits.h>
int main(int argc, char **argv) {
char *ics_path = "";
get_cli_args(argc, argv, &ics_path);
char *ics_path = "";
get_cli_args(argc, argv, &ics_path);
char my_line[4096] = "";