fallout2-ce/src/word_wrap.h

9 lines
195 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef WORD_WRAP_H
#define WORD_WRAP_H
#define WORD_WRAP_MAX_COUNT (64)
int wordWrap(const char* string, int width, short* breakpoints, short* breakpointsLengthPtr);
#endif /* WORD_WRAP_H */