#include <foo.h> -> #include <libowfat/foo.h>

This commit is contained in:
leitner
2017-05-13 22:51:26 +00:00
parent dba47741bf
commit 760598ec2f
366 changed files with 427 additions and 427 deletions

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_0 \- append \\0 to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_0\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_append \- append a character to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_append\fP(stralloc* \fIsa\fR,const char* \fIin\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_cat \- append data to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_cat\fP(stralloc* \fIsato\fR,const stralloc* \fIsafrom\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_catb \- append data to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_catb\fP(stralloc* \fIsa\fR,const char* \fIbuf\fR,size_t \fIlen\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_catlong0 \- append an integer to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_catlong0\fP(stralloc* \fIsa\fR, unsigned long int \fIin\fR, size_t \fIn\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_catm \- append string(s) to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_catm\fP(stralloc* \fIsa\fR,const char* \fIs\fR, ...);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_cats \- append data to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_cats\fP(stralloc* \fIsa\fR,const char* \fIbuf\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_catulong0 \- append an integer to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_catulong0\fP(stralloc* \fIsa\fR, unsigned long int \fIin\fR, size_t \fIn\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_chomp \- remove trailing CR, LF or CRLF
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_chomp\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_chop \- remove and return last char
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_chop\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_copy \- copy data into a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_copy\fP(stralloc* \fIsato\fR,stralloc* \fIsafrom\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_copyb \- copy data into a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_copyb\fP(stralloc* \fIsa\fR,const char* \fIbuf\fR,size_t \fIlen\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_copym \- copy string(s) to a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_copym\fP(stralloc* \fIsa\fR,const char* \fIs\fR, ...);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_copys \- copy data into a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_copys\fP(stralloc* \fIsa\fR,const char* \fIbuf\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_diffs \- compare two strallocs
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_diff\fP(const stralloc* \fIa\fR,const stralloc* \fIb\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_diffs \- check if string is prefix of stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_diffs\fP(stralloc* \fIa\fR,const char* \fIb\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_free \- free storage associated with a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
void \fBstralloc_free\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_init \- initialize a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
void \fBstralloc_init\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_ready \- provide space in a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_ready\fP(stralloc* \fIsa\fR,size_t \fIlen\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_readyplus \- provide space in a stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_readyplus\fP(stralloc* \fIsa\fR,size_t \fIlen\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_starts \- check if string is prefix of stralloc
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
int \fBstralloc_starts\fP(stralloc* \fIsa\fR,const char* \fIin\fR);
.SH DESCRIPTION

View File

@@ -2,7 +2,7 @@
.SH NAME
stralloc_zero \- set length of stralloc to 0
.SH SYNTAX
.B #include <stralloc.h>
.B #include <libowfat/stralloc.h>
void \fBstralloc_zero\fP(stralloc* \fIsa\fR);
.SH DESCRIPTION