blob: ffa5d32f5cfef0889b3409afba453a8b57781721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef ATASCII_H
#define ATASCII_H
#include <stdio.h>
#include <string.h>
#include "atables.h"
#define ATA_MODE_UTF8 0 /* default */
#define ATA_MODE_MAGAZINE 1
/* TODO: #define ATA_MODE_DOTS 2 */
#define ATA_FLAG_NONE 0 /* default */
#define ATA_FLAG_UNDERLINE 1
#define ATA_FLAG_ICS 2
#define ATA_FLAG_TEXTMODE 4
#define ATA_FLAG_STRIP_INVERSE 8
#define ATA_CHR_FINISH -1
extern const char *atascii_inverse_on;
extern const char *atascii_inverse_off;
typedef struct {
int mode;
int flags;
int inv;
int lines;
const char **table;
} atascii_ctx;
/* returns true if mode and flags are valid, 0 otherwise. */
extern int atascii_context_init(atascii_ctx *ctx, int mode, int flags);
/* obeys all the flags and modes.
result goes in dest, which needs to be 9 bytes in utf-8 mode (big
enough to handle up to 4 bytes of UTF-8 plus 4 bytes of ANSI escape
code plus a terminating null), or 12 bytes in magazine mode.
the return value is dest.
*/
extern char *atascii_a2utf(atascii_ctx *ctx, int src, char *dest);
#endif
|