aboutsummaryrefslogtreecommitdiff
path: root/src/base/utf/vendor/common.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
commit12e09f9f85ac48ff891adf92f3b2c9a5fea27273 (patch)
tree60051793885e9978dadf6672ef85cdda216676a2 /src/base/utf/vendor/common.h
parentb80a3d28ce42be4fdec451f74620b10ee75219dc (diff)
Chore(REMOVE): finished deprecation of old io functions.
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
Diffstat (limited to 'src/base/utf/vendor/common.h')
-rw-r--r--src/base/utf/vendor/common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/base/utf/vendor/common.h b/src/base/utf/vendor/common.h
index 51a53bd..95d7eaf 100644
--- a/src/base/utf/vendor/common.h
+++ b/src/base/utf/vendor/common.h
@@ -25,6 +25,7 @@ enum
NumFields,
NumRunes = 1 << 21,
};
+#define FieldLen 128
/* input functions */
enum
@@ -34,9 +35,9 @@ enum
ParseSkip,
};
-int parse(io·Stream *io, int nfield, char **field, int len, char *line);
+int parse(io·Buffer *io, int nfield, char field[][FieldLen]);
int codepoint(char *s);
-void codepointrange(io·Stream *utf8, char *field[NumFields], int *start, int *stop);
+void codepointrange(io·Buffer *utf8, char field[NumFields][FieldLen], int *start, int *stop);
/* output functions */
void putsearch(void);