File: textwrap.e

package info (click to toggle)
html-xml-utils 7.7-1.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,540 kB
  • sloc: ansic: 11,213; sh: 7,996; lex: 243; makefile: 192; yacc: 125
file content (19 lines) | stat: -rwxr-xr-x 654 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
extern void set_indent(int n);
extern void set_linelen(int n);
extern void flush();
extern void outc(char c, 
                        _Bool 
                             preformatted);
extern void out(string s, 
                         _Bool 
                              preformatted);
extern void outn(string s, size_t n, 
                                    _Bool 
                                         preformatted);
extern void outln(char *s, 
                          _Bool 
                               preformatted);
extern void outbreak(void);
extern void outbreakpoint(void);
extern void inc_indent(void);
extern void dec_indent(void);