mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
12 lines
268 B
C
12 lines
268 B
C
#ifndef _MSL_COMMON_BUFFER_IO_H
|
|
#define _MSL_COMMON_BUFFER_IO_H
|
|
|
|
#include "MSL_C/ansi_files.h"
|
|
|
|
enum { __align_buffer, __dont_align_buffer };
|
|
|
|
void __prep_buffer(FILE* file);
|
|
int __flush_buffer(FILE* file, size_t* bytes_flushed);
|
|
|
|
#endif /* _MSL_COMMON_BUFFER_IO_H */
|