Create print module

This commit is contained in:
2025-08-10 16:38:59 +01:00
parent d5173243ba
commit d90f91cda0
5 changed files with 97 additions and 0 deletions

8
lib/include/print.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef PRINT_H
#define PRINT_H
#include "am.h"
size_t print(am_t *am, char *buffer, size_t buffer_size);
#endif