Remove .internal from more header filenames

This commit is contained in:
Justine Tunney 2024-08-04 12:52:25 -07:00
parent c265c17d54
commit 31194165d2
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
734 changed files with 779 additions and 778 deletions

23
libc/str/tab.h Normal file
View file

@ -0,0 +1,23 @@
#ifndef COSMOPOLITAN_LIBC_STR_TAB_H_
#define COSMOPOLITAN_LIBC_STR_TAB_H_
#define kHexToInt __kHexToInt
#define kToLower __kToLower
#define kToUpper __kToUpper
#define kBase36 __kBase36
#define kCp437 __kCp437
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
#define gperf_downcase kToLower
extern const int8_t kHexToInt[256];
extern const uint8_t kToLower[256];
extern const uint8_t kToUpper[256];
extern const uint8_t kBase36[256];
extern const char16_t kCp437[256];
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_LIBC_STR_TAB_H_ */