diff options
| author | Louis Burda <quent.burda@gmail.com> | 2021-04-29 16:20:38 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2021-04-29 16:20:38 +0200 |
| commit | 008b5f74235a7fd04852e6f640429269f1ec4845 (patch) | |
| tree | 7eea7fea892da529fe4f37a437218705a4158ca8 /service/src/stlfile.c | |
| parent | 8aac44bb98af5442e29c8cb9a5a4acbe40d96bb2 (diff) | |
| download | enowars5-service-stldoctor-008b5f74235a7fd04852e6f640429269f1ec4845.tar.gz enowars5-service-stldoctor-008b5f74235a7fd04852e6f640429269f1ec4845.zip | |
basic service structure and docker setup
Diffstat (limited to 'service/src/stlfile.c')
| -rw-r--r-- | service/src/stlfile.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/service/src/stlfile.c b/service/src/stlfile.c index 37a3a0a..0fbe6b0 100644 --- a/service/src/stlfile.c +++ b/service/src/stlfile.c @@ -1,4 +1,16 @@ #include "stlfile.h" +struct parseinfo* +parse_file(char *buf, size_t len) +{ + return NULL; +} + + +void +free_parseinfo(struct parseinfo *info) +{ + free(info); +} |
