Fold LIBC_UNICODE into LIBC_STR

This commit is contained in:
Justine Tunney 2022-08-13 08:42:32 -07:00
parent 17aea99bb3
commit 367d06d9e4
173 changed files with 170 additions and 355 deletions

View file

@ -32,7 +32,7 @@
#include "libc/sysv/consts/o.h"
#include "libc/sysv/consts/prot.h"
#include "libc/sysv/consts/termios.h"
#include "libc/unicode/locale.h"
#include "libc/str/locale.h"
#include "third_party/stb/stb_image.h"
#define SQR(X) ((X) * (X))

View file

@ -21,7 +21,7 @@
#include "libc/fmt/itoa.h"
#include "libc/runtime/gc.internal.h"
#include "libc/str/str.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "libc/x/x.h"
#include "tool/viz/lib/formatstringtable.h"

View file

@ -17,7 +17,7 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/intrin/safemacros.internal.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "tool/viz/lib/formatstringtable.h"
void *FreeStringTableCells(long yn, long xn, char *T[yn][xn]) {

View file

@ -41,7 +41,6 @@ TOOL_VIZ_LIB_A_DIRECTDEPS = \
LIBC_TESTLIB \
LIBC_TIME \
LIBC_TINYMATH \
LIBC_UNICODE \
LIBC_X \
THIRD_PARTY_DLMALLOC \
THIRD_PARTY_GDTOA

View file

@ -80,7 +80,7 @@
#include "libc/sysv/consts/prot.h"
#include "libc/sysv/consts/termios.h"
#include "libc/time/time.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "libc/x/x.h"
#include "third_party/getopt/getopt.h"

View file

@ -50,7 +50,7 @@
#include "libc/sysv/consts/sig.h"
#include "libc/sysv/consts/termios.h"
#include "libc/time/time.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "third_party/getopt/getopt.h"
#define USAGE \

View file

@ -89,7 +89,7 @@
#include "libc/sysv/consts/w.h"
#include "libc/sysv/errfuns.h"
#include "libc/time/time.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "libc/x/x.h"
#include "third_party/getopt/getopt.h"
#include "third_party/stb/stb_image_resize.h"

View file

@ -28,7 +28,7 @@
#include "libc/str/str.h"
#include "libc/sysv/consts/ex.h"
#include "libc/sysv/consts/exit.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "third_party/getopt/getopt.h"
#define kOneTrueTabWidth 8

View file

@ -21,7 +21,7 @@
#include "libc/runtime/gc.internal.h"
#include "libc/stdio/stdio.h"
#include "libc/str/str.h"
#include "libc/unicode/unicode.h"
#include "libc/str/unicode.h"
#include "libc/x/x.h"
int a, b, w, i;
@ -77,7 +77,7 @@ int main(int argc, char *argv[]) {
char *line;
size_t linesize;
printf("\n\n\n\n\n UNICODE PLANES\n\n\n\n");
f = fopen("libc/unicode/blocks.txt", "r");
f = fopen("libc/str/blocks.txt", "r");
line = NULL;
linesize = 0;
while (!feof(f)) {

View file

@ -41,7 +41,6 @@ TOOL_VIZ_DIRECTDEPS = \
LIBC_TESTLIB \
LIBC_TIME \
LIBC_TINYMATH \
LIBC_UNICODE \
LIBC_X \
LIBC_ZIPOS \
NET_HTTP \