X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fstr.h;h=ddfd2f82b77e1e7b83098541636fdb5c5f2facc0;hb=b19d2d4b3a4176869c6ba164f7a67ed3b11146ca;hp=ecf9e6eb3fe44cb2fb9658cf539a797433ead671;hpb=d8493b3b0617cc447446a70b031a69079bc19002;p=pspp-builds.git diff --git a/src/libpspp/str.h b/src/libpspp/str.h index ecf9e6eb..ddfd2f82 100644 --- a/src/libpspp/str.h +++ b/src/libpspp/str.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "compiler.h" #include "memcasecmp.h" @@ -127,6 +128,13 @@ int ss_equals (struct substring, struct substring); int ss_equals_case (struct substring, struct substring); size_t ss_pointer_to_position (struct substring, const char *); char *ss_xstrdup (struct substring); + +/* UTF-8. */ +ucs4_t ss_first_mb (struct substring); +int ss_first_mblen (struct substring); +ucs4_t ss_get_mb (struct substring *); +ucs4_t ss_at_mb (struct substring, size_t ofs); +int ss_at_mblen (struct substring, size_t ofs); /* Variable length strings. */