FreeCalypso > hg > ice1-trau-tester
comparison 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 |
comparison
equal
deleted
inserted
replaced
4:2ce0ed560a34 | 5:7233c10af3ad |
---|---|
1 /* | |
2 * In this module we handle user-issued stdin commands during | |
3 * itt-pcm-one running session. | |
4 */ | |
5 | |
6 #include <stdint.h> | |
7 #include <stdbool.h> | |
8 #include <stdio.h> | |
9 #include <stdlib.h> | |
10 #include <string.h> | |
11 | |
12 #include <osmocom/core/select.h> | |
13 | |
14 #include "globals.h" | |
15 | |
16 void handle_user_cmd(int argc, char **argv) | |
17 { | |
18 /* to be filled */ | |
19 } |