Create read module

This commit is contained in:
2025-08-10 16:39:13 +01:00
parent d90f91cda0
commit e25975e29d
5 changed files with 131 additions and 0 deletions

9
lib/include/read.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef READ_H
#define READ_H
#include "am.h"
#include "stream.h"
void read(am_t *am, stream_t *stream);
#endif