8 lines
168 B
C++
8 lines
168 B
C++
#ifndef EDITOR_HPP
|
|
#define EDITOR_HPP
|
|
|
|
// buffer must me deleted
|
|
// null there we no changes to save
|
|
char *edit_file(const char *s, int &out_len);
|
|
|
|
#endif // EDITOR_HPP
|