summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-07-04 03:01:24 +0000
committerNorbert Preining <norbert@preining.info>2021-07-04 03:01:24 +0000
commit7994f86ec5e18f9d0d9f90161a2f26dd26d26af7 (patch)
tree88edb7d1a1aed3183a1350202c898716b4ac59ce /macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h
parent03fa062b03ce2bb5385f8f30888f94d441fa5cb4 (diff)
CTAN sync 202107040301
Diffstat (limited to 'macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h')
-rw-r--r--macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h
index 423d5559fd..11ea682aea 100644
--- a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h
+++ b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/text.h
@@ -1,5 +1,7 @@
/* text.h - declarations for text.c */
-/* Copyright 2014, 2015 Free Software Foundation, Inc.
+#ifndef TEXT_H
+#define TEXT_H
+/* Copyright 2014-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,6 +16,12 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
+typedef struct TEXT {
+ char *text;
+ size_t space; /* Allocated bytes in 'text', including terminating null. */
+ size_t end;
+} TEXT;
+
void text_init (TEXT *t);
void text_append (TEXT *t, char *s);
void text_append_n (TEXT *t, char *s, size_t len);
@@ -22,3 +30,4 @@ void text_alloc (TEXT *t, size_t len);
void text_reset (TEXT *t);
#define text_base(t) ((t)->space ? (t)->text : (char *) 0)
+#endif