22 lines
675 B
C
22 lines
675 B
C
// vim:fileencoding=utf-8:foldmethod=marker
|
|
|
|
#ifndef TEST_FILE_H
|
|
#define TEST_FILE_H
|
|
|
|
#include "wapp.h"
|
|
|
|
TestFuncResult test_wapp_file_open(void);
|
|
TestFuncResult test_wapp_file_get_current_position(void);
|
|
TestFuncResult test_wapp_file_seek(void);
|
|
TestFuncResult test_wapp_file_get_length(void);
|
|
TestFuncResult test_wapp_file_read(void);
|
|
TestFuncResult test_wapp_file_write(void);
|
|
TestFuncResult test_wapp_file_read_array(void);
|
|
TestFuncResult test_wapp_file_write_array(void);
|
|
TestFuncResult test_wapp_file_flush(void);
|
|
TestFuncResult test_wapp_file_close(void);
|
|
TestFuncResult test_wapp_file_rename(void);
|
|
TestFuncResult test_wapp_file_remove(void);
|
|
|
|
#endif // !TEST_FILE_H
|