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

View file

@ -18,7 +18,7 @@
*/
#include "libc/assert.h"
#include "libc/fmt/bing.internal.h"
#include "libc/str/tab.internal.h"
#include "libc/str/tab.h"
/**
* Turns binary octet into unicode glyph representation.

View file

@ -19,7 +19,7 @@
#include "libc/fmt/conv.h"
#include "libc/fmt/itoa.h"
#include "libc/intrin/bsr.h"
#include "libc/macros.internal.h"
#include "libc/macros.h"
size_t uint64toarray_radix16(uint64_t x, char b[hasatleast 17]) {
return uint64toarray_fixed16(x, b, ROUNDUP(x ? bsrl(x) + 1 : 1, 4));

View file

@ -17,7 +17,7 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/fmt/bing.internal.h"
#include "libc/macros.internal.h"
#include "libc/macros.h"
static const int kCp437i[] = {
0x000a << 8 | 10, // \n NEWLINE

View file

@ -28,7 +28,7 @@
*/
#include "libc/fmt/leb128.h"
#include "libc/macros.internal.h"
#include "libc/macros.h"
/**
* Decodes array to signed integer w/ zig-zag encoding.

View file

@ -22,7 +22,7 @@
#include "libc/limits.h"
#include "libc/stdckdint.h"
#include "libc/str/str.h"
#include "libc/str/tab.internal.h"
#include "libc/str/tab.h"
/**
* Decodes signed long integer from wide string.

View file

@ -22,7 +22,7 @@
#include "libc/limits.h"
#include "libc/stdckdint.h"
#include "libc/str/str.h"
#include "libc/str/tab.internal.h"
#include "libc/str/tab.h"
/**
* Decodes unsigned integer from wide string.