From 207db63ee5340e97ea11b1b664b97d999a4ae8c5 Mon Sep 17 00:00:00 2001 From: gaotianyu1350 Date: Sun, 7 Apr 2019 20:29:47 +0800 Subject: [PATCH] add audio hello --- biscuit/c/audio_hello.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 biscuit/c/audio_hello.c diff --git a/biscuit/c/audio_hello.c b/biscuit/c/audio_hello.c new file mode 100644 index 0000000..1f42cda --- /dev/null +++ b/biscuit/c/audio_hello.c @@ -0,0 +1,21 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +int main(int argc, char **argv) +{ + printf("hello audio world!\n"); + fprintf(stdout, "stdout test ok\n"); + fprintf(1, "stdout number test ok\n"); + fprintf(3, "audio number test ok\n"); + return 0; +}