c: Add skeleton filesfor the CLI tool
This is prep work for the moving to Meson.
This commit is contained in:
8
c/cli/src/passgeny.c
Normal file
8
c/cli/src/passgeny.c
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "phogen.h"
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
4
c/phogen/inc/phogen.h
Normal file
4
c/phogen/inc/phogen.h
Normal 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
10
c/phogen/src/phogen.c
Normal 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"
|
||||||
|
|
||||||
Reference in New Issue
Block a user