summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 2cc4061..63bebc9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -19,8 +19,15 @@
* along with Timeteller. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "speech.h"
+
int
main(int argc, char **argv)
{
+ struct speech *speech;
+
+ speech = speech_init(argv[1]);
+ speech_destroy(&speech);
+
return 0;
}