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" +