Text-Adventure/wordwrap.h

15 lines
239 B
C
Raw Permalink Normal View History

2023-11-16 00:44:12 +08:00
#ifndef TEXTADV_WORDWRAP_H
#define TEXTADV_WORDWRAP_H
#include <string>
void initWordWrap();
void wrapOut(const std::string *text);
void wrapOut(const std::string& text);
void wrapEndPara();
#endif //TEXTADV_WORDWRAP_H