| 1 | // Aseprite |
|---|---|
| 2 | // Copyright (C) 2001-2015 David Capello |
| 3 | // |
| 4 | // This program is distributed under the terms of |
| 5 | // the End-User License Agreement for Aseprite. |
| 6 | |
| 7 | #ifndef APP_UTIL_FILETOKS_H_INCLUDED |
| 8 | #define APP_UTIL_FILETOKS_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | #include <stdio.h> |
| 12 | |
| 13 | void tok_reset_line_num(); |
| 14 | int tok_line_num(); |
| 15 | |
| 16 | char* tok_read(FILE* f, char* buf, char* leavings, int sizeof_leavings); |
| 17 | |
| 18 | #endif |
| 19 |