2022-05-19 01:51:26 -07:00
|
|
|
#ifndef WORD_WRAP_H
|
|
|
|
#define WORD_WRAP_H
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#define WORD_WRAP_MAX_COUNT (64)
|
|
|
|
|
2022-11-11 02:52:35 -08:00
|
|
|
extern int leagcyWordWrap(const char* string, int width, short* breakpoints, short* breakpointsLengthPtr);
|
2022-05-19 01:51:26 -07:00
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* WORD_WRAP_H */
|