13 lines
301 B
C
13 lines
301 B
C
// this code is licenced under Wrathmark licence
|
|
// © 2026 wullie wulliestudio.com
|
|
// please see attached licence for full usage and rights
|
|
|
|
#ifndef READWRITE_H
|
|
#define READWRITE_H
|
|
|
|
long reader(long fd, char *string, size_t buflen);
|
|
long writer(long fd, const char *string, size_t buflen);
|
|
|
|
|
|
#endif
|