| 1 | // Aseprite |
| 2 | // Copyright (C) 2022 Igara Studio S.A. |
| 3 | // Copyright (C) 2001-2017 David Capello |
| 4 | // |
| 5 | // This program is distributed under the terms of |
| 6 | // the End-User License Agreement for Aseprite. |
| 7 | |
| 8 | #ifndef APP_FILE_SPLIT_FILENAME_H_INCLUDED |
| 9 | #define APP_FILE_SPLIT_FILENAME_H_INCLUDED |
| 10 | #pragma once |
| 11 | |
| 12 | #include <string> |
| 13 | |
| 14 | namespace app { |
| 15 | |
| 16 | int split_filename(const std::string& filename, |
| 17 | std::string& left, |
| 18 | std::string& right, |
| 19 | int& width); |
| 20 | |
| 21 | } // namespace app |
| 22 | |
| 23 | #endif |
| 24 | |