fallout2-ce/src/word_wrap.h

13 lines
240 B
C++

#ifndef WORD_WRAP_H
#define WORD_WRAP_H
namespace fallout {
#define WORD_WRAP_MAX_COUNT (64)
int wordWrap(const char* string, int width, short* breakpoints, short* breakpointsLengthPtr);
} // namespace fallout
#endif /* WORD_WRAP_H */