diff pcm/user_cmd.c @ 5:7233c10af3ad

pcm: hook in stdin select mechanism
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Jun 2024 18:33:09 +0000
parents
children 631f2db08538
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pcm/user_cmd.c	Sun Jun 23 18:33:09 2024 +0000
@@ -0,0 +1,19 @@
+/*
+ * In this module we handle user-issued stdin commands during
+ * itt-pcm-one running session.
+ */
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <osmocom/core/select.h>
+
+#include "globals.h"
+
+void handle_user_cmd(int argc, char **argv)
+{
+	/* to be filled */
+}