ctlseqs/man/ctlseqs_reader_init.3

36 lines
992 B
Groff
Raw Normal View History

2020-12-17 08:04:55 +00:00
.TH CTLSEQS_READER_INIT 3 "Sep 01, 2020" 0.1.0 "ctlseqs Library Manual"
2020-11-17 06:24:43 +00:00
.
.SH NAME
ctlseqs_reader_init - initialize control sequence reader
.
.SH SYNOPSYS
.nf
.B #include <ctlseqs.h>
.PP
.B struct ctlseqs_reader *ctlseqs_reader_init(void);
.fi
.
.SH DESCRIPTION
Creates a control sequence reader, which can be configured with
2020-12-11 04:47:14 +00:00
.BR ctlseqs_reader_config ().
2020-11-17 06:24:43 +00:00
.PP
Instance of a control sequence reader should be freed with
.BR ctlseqs_reader_free ().
.
.SH RETURN VALUE
Returns a pointer to opaque type
.B struct ctlseqs_reader
holding the reader instance.
.PP
If the function fails to allocate sufficient memory, returns NULL.
.
.SH SEE ALSO
2020-12-11 04:47:14 +00:00
.BR ctlseqs_reader_config (3),
2020-11-17 06:24:43 +00:00
.BR ctlseqs_reader_free (3)
.
.SH COPYRIGHT
Copyright (c) 2020 CismonX <admin@cismon.net>
.PP
Copying and distribution of this file, with or without modification, are permitted in any medium without royalty, provided the copyright notice and this notice are preserved.
2020-12-10 08:03:18 +00:00
This file is offered as-is, without any warranty.