From 9d3ffdadf5f9755f8d00b12d0cbc289ef5af6215 Mon Sep 17 00:00:00 2001 From: Mitja HORVAT Date: Wed, 22 Sep 2021 18:35:15 +0200 Subject: [PATCH] c: Add skeleton filesfor the CLI tool This is prep work for the moving to Meson. --- c/cli/src/passgeny.c | 8 ++++++++ c/phogen/inc/phogen.h | 4 ++++ c/phogen/src/phogen.c | 10 ++++++++++ 3 files changed, 22 insertions(+) create mode 100644 c/cli/src/passgeny.c create mode 100644 c/phogen/inc/phogen.h create mode 100644 c/phogen/src/phogen.c diff --git a/c/cli/src/passgeny.c b/c/cli/src/passgeny.c new file mode 100644 index 0000000..e2b7412 --- /dev/null +++ b/c/cli/src/passgeny.c @@ -0,0 +1,8 @@ +#include + +#include "phogen.h" + +int main(void) +{ + return EXIT_SUCCESS; +} diff --git a/c/phogen/inc/phogen.h b/c/phogen/inc/phogen.h new file mode 100644 index 0000000..29b27bc --- /dev/null +++ b/c/phogen/inc/phogen.h @@ -0,0 +1,4 @@ +#ifndef PHOGEN_H_INCLUDED +#define PHOGEN_H_INCLUDED + +#endif /* PHOGEN_H_INCLUDED */ diff --git a/c/phogen/src/phogen.c b/c/phogen/src/phogen.c new file mode 100644 index 0000000..e25eb8a --- /dev/null +++ b/c/phogen/src/phogen.c @@ -0,0 +1,10 @@ +#include + +/* + * Phonetic generator -- used to convert binary data to semi-pronouncable + * strings + */ + +#include "phogen_map.h" +#include "phogen.h" +