9 lines
164 B
C
9 lines
164 B
C
#ifndef _EDIT_H
|
|
#define _EDIT_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void edit_start (const char* volume, const char* path, const char* text, size_t text_len);
|
|
|
|
#endif // _EDIT_H
|