mirror of
https://github.com/xdsopl/robot36.git
synced 2025-12-06 07:12:07 +01:00
7 lines
168 B
C
7 lines
168 B
C
#ifndef MMAP_FILE_H
|
|
#define MMAP_FILE_H
|
|
int mmap_file_ro(void **, char *, size_t *);
|
|
int mmap_file_rw(void **, char *, size_t);
|
|
int munmap_file(void *, size_t);
|
|
#endif
|