blob: d4067047717cb5dcf627a2bdbeb46ae77012f795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef MODES_H
#define MODES_H
#include <stdbool.h>
enum {
MODE_WORD,
MODE_SENTENCE,
MODE_PARAGRAPH
};
int word_mode(int length, bool newline, bool capitalize);
int sentence_mode(int length, bool newline);
int paragraph_mode(int length, bool newline);
#endif // MODES_H
|