commit 5351f865cabf622fb0d10077a0c838439a7e8e49 parent 16ed12c0750f417facc9e2b5c2d096240016af4f Author: Bharatvaj Hemanth <bharatvaj@yahoo.com> Date: Sat, 30 Dec 2023 23:14:37 +0530 Add vstr.h Diffstat:
A | vstr.h | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/vstr.h b/vstr.h @@ -0,0 +1,9 @@ +#ifndef _VST_H +#define _VST_H + +typedef struct { + char *str; + size_t len; +} vstr_t; + +#endif