c: Add skeleton filesfor the CLI tool

This is prep work for the moving to Meson.
This commit is contained in:
2021-09-22 18:35:15 +02:00
parent 50b0758ffc
commit 9d3ffdadf5
3 changed files with 22 additions and 0 deletions

4
c/phogen/inc/phogen.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef PHOGEN_H_INCLUDED
#define PHOGEN_H_INCLUDED
#endif /* PHOGEN_H_INCLUDED */

10
c/phogen/src/phogen.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdlib.h>
/*
* Phonetic generator -- used to convert binary data to semi-pronouncable
* strings
*/
#include "phogen_map.h"
#include "phogen.h"