repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | error.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.412681 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include "8cc.h"
bool enable_warning = true;
bool warning_is_error = false;
static void print_error(char *line, char *pos, char *label, char *fmt, va_list args) {
fprintf(stderr, isatty(filen... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/8cc.h | null | null | null | null | null | null | C | 2026-05-04T18:41:32.413946 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#define _LP64 1
#define __8cc__ 1
#define __ELF__ 1
#define __LP64__ 1
#define __SIZEOF_DOUBLE__ 8
#define __SIZEOF_FLOAT__ 4
#define __SIZEOF_INT__ 4
#define __SIZEOF_LONG_DOUBLE__ 8
#define __SIZEOF_LONG_LONG__ 8
#define __SIZEOF_LONG__ 8
#define __SIZEOF... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | 8cc.h | null | null | null | null | null | null | C | 2026-05-04T18:41:32.429834 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef EIGHTCC_H
#define EIGHTCC_H
#include <assert.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdnoreturn.h>
#include <time.h>
enum {
TIDENT,
TKEYWORD,
TNUMBER,
TCHAR,
TSTRING,
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | cpp.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.431157 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
/*
* This implements Dave Prosser's C Preprocessing algorithm, described
* in this document: https://github.com/rui314/8cc/wiki/cpp.algo.pdf
*/
#include <ctype.h>
#include <libgen.h>
#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | debug.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.435191 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "8cc.h"
static char *decorate_int(char *name, Type *ty) {
char *u = (ty->usig) ? "u" : "";
if (ty->bitsize > 0)
return format("%s%s:%d:%d", u, name, ty->bitoff, ty->bitoff + ty->bitsize);
return format("%s%s", u, name);
}
stat... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | file.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.435715 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
/*
* This file provides character input stream for C source code.
* An input stream is either backed by stdio's FILE * or
* backed by a string.
* The following input processing is done at this stage.
*
* - C11 5.1.1.2p1: "\r\n" or "\r" are canonicaliz... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | dict.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.450272 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <stdlib.h>
#include "8cc.h"
Dict *make_dict() {
Dict *r = malloc(sizeof(Dict));
r->map = make_map();
r->key = make_vector();
return r;
}
void *dict_get(Dict *dict, char *key) {
return map_get(dict->map, key);
}
void dict_put(... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | encoding.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.451308 | // Copyright 2015 Rui Ueyama. Released under the MIT license.
// This file defines functions to convert UTF-8 strings to UTF-16 or UTF-32.
//
// 8cc uses UTF-16 for string literals prefixed with u (char16_t strings).
// UTF-32 is used for string literals prefixed with L or U
// (wchar_t or char32_t strings).
// Unpref... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | buffer.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.464149 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include "8cc.h"
#define INIT_SIZE 8
Buffer *make_buffer() {
Buffer *r = malloc(sizeof(Buffer));
r->body = malloc(INIT_SIZE);
r->nalloc = INIT_SIZE;
r->len = 0;... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | gen.c | null | null | null | null | null | null | C | 2026-05-04T18:41:32.500310 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "8cc.h"
bool dumpstack = false;
bool dumpsource = true;
static char *REGS[] = {"rdi", "rsi", "rdx", "rcx", "r8", "r9"};
s... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/stdbool.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.093772 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef __STDBOOL_H
#define __STDBOOL_H
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/stddef.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.097760 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef __STDDEF_H
#define __STDDEF_H
#define NULL ((void *)0)
typedef unsigned long size_t;
typedef long ptrdiff_t;
typedef unsigned int wchar_t;
typedef long double max_align_t;
#define offsetof(type, member) ((size_t)&(((type *)0)->member))
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | lex.c | null | null | null | null | null | null | C | 2026-05-04T18:41:33.118013 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
/*
* Tokenizer
*
* This is a translation phase after the phase 1 and 2 in file.c.
* In this phase, the source code is decomposed into preprocessing tokens.
*
* Each comment is treated as if it were a space character.
* Space characters are removed, b... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/float.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.125266 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#ifndef __STDFLOAT_H
#define __STDFLOAT_H
#define DECIMAL_DIG 21
#define FLT_EVAL_METHOD 0 // C11 5.2.4.2.2p9
#define FLT_RADIX 2
#define FLT_ROUNDS 1 // C11 5.2.4.2.2p8: to nearest
#define FLT_DIG 6
#define FLT_EPSILON 0x1p-23
#define FLT_MANT_DIG 2... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:33.126896 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <libgen.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "8cc.h"
static char *infile;
static char *outfile;
static char *asmfile;
static bool dumpast;
static bool cpponly;
static ... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/iso646.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.138648 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
// C11 7.9 Alternative Spellings
#ifndef __ISO646_H
#define __ISO646_H
#define and &&
#define and_eq &=
#define bitand &
#define bitor |
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
#define xor ^
#define xor_eq ^=
#endif... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/stdarg.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.139578 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef __STDARG_H
#define __STDARG_H
/**
* Refer this document for the x86-64 ABI.
* http://www.x86-64.org/documentation/abi.pdf
*/
typedef struct {
unsigned int gp_offset;
unsigned int fp_offset;
void *overflow_arg_area;
void *reg_sav... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | map.c | null | null | null | null | null | null | C | 2026-05-04T18:41:33.186921 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
// This is an implementation of hash table.
#include <stdlib.h>
#include <string.h>
#include "8cc.h"
#define INIT_SIZE 16
#define TOMBSTONE ((void *)-1)
static uint32_t hash(char *p) {
// FNV hash
uint32_t r = 2166136261;
for (; *p; p++) {
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/stdalign.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.697679 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef __STDALIGN_H
#define __STDALIGN_H
#define alignas _Alignas
#define alignof _Alignof
#define __alignas_is_defined 1
#define __alignof_is_defined 1
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | include/stdnoreturn.h | null | null | null | null | null | null | C | 2026-05-04T18:41:33.799262 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifndef __STDNORETURN_H
#define __STDNORETURN_H
#define noreturn _Noreturn
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/builtin.c | null | null | null | null | null | null | C | 2026-05-04T18:41:34.347584 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
// This test depends on the stack frame and code layout and does not
// run with gcc -O2.
#include "test.h"
#ifdef __8cc__
static void *test_return_address_sub2() {
return __builtin_return_address(1);
}
static void *test_return_address_sub1() {
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/cast.c | null | null | null | null | null | null | C | 2026-05-04T18:41:34.800437 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void test_signedcast() {
unsigned char c = -1;
int i = (signed char) c;
expect(i, -1);
}
static void test_unsignedcast() {
signed char c = -1;
int i = (unsigned char) c;
expect(1, i > 0);
}
void testmain... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/comp.c | null | null | null | null | null | null | C | 2026-05-04T18:41:35.388474 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
void testmain() {
print("comparison operators");
expect(1, 1 < 2);
expect(0, 2 < 1);
expect(1, 1 == 1);
expect(0, 1 == 2);
expect(0, 1 != 1);
expect(1, 1 != 2);
expect(1, 1 <= 2);
expect(1, 2 <= 2);
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/constexpr.c | null | null | null | null | null | null | C | 2026-05-04T18:41:35.512636 | // Copyright 2015 Rui Ueyama. Released under the MIT license.
#include "test.h"
int x1[] = { 1, 2, 3, 4, 5 };
int *p1 = x1;
int *q1 = x1 + 2;
int x2 = 7;
int *p2 = &x2 + 1;
void testmain() {
print("constexpr");
expect(1, *p1);
expect(3, *q1);
expect(7, p2[-1]);
}
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/control.c | null | null | null | null | null | null | C | 2026-05-04T18:41:35.993875 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
int test_if1(void) { if (1) { return 'a';} return 0; }
int test_if2(void) { if (0) { return 0;} return 'b'; }
int test_if3(void) { if (1) { return 'c';} else { return 0; } return 0; }
int test_if4(void) { if (0) { return 0;} else { return... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/conversion.c | null | null | null | null | null | null | C | 2026-05-04T18:41:36.215770 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void test_bool() {
_Bool v = 3;
expect(1, v);
v = 5;
expect(1, v);
v = 0.5;
expect(1, v);
v = 0.0;
expect(0, v);
}
static void test_float() {
double a = 4.0;
float b = a;
expectf(4, b);
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/decl.c | null | null | null | null | null | null | C | 2026-05-04T18:41:36.708015 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void t1() {
int a = 1;
expect(3, a + 2);
}
static void t2() {
int a = 1;
int b = 48 + 2;
int c = a + b;
expect(102, c * 2);
}
static void t3() {
int a[] = { 55 };
int *b = a;
expect(55, *b);
}
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/enum.c | null | null | null | null | null | null | C | 2026-05-04T18:41:36.966766 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
enum { g1, g2, g3 } global1;
void testmain() {
print("enum");
expect(0, g1);
expect(2, g3);
enum { x } v;
expect(0, x);
enum { y };
expect(0, y);
enum tag { z };
enum tag a = z;
expect(0, z);
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/extern.c | null | null | null | null | null | null | C | 2026-05-04T18:41:37.357163 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
extern int externvar1;
int extern externvar2;
void testmain() {
print("extern");
expect(98, externvar1);
expect(99, externvar2);
}
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/float.c | null | null | null | null | null | null | C | 2026-05-04T18:41:37.618655 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <float.h>
#include <stdarg.h>
#include <stdint.h>
#include "test.h"
float tf1(float a) { return a; }
float tf2(double a) { return a; }
float tf3(int a) { return a; }
double td1(float a) { return a; }
double td2(double a) { return a; }
double... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/funcargs.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.012663 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void many_ints(int v1, int v2, int v3, int v4, int v5, int v6, int v7, int v8, int v9) {
expect(1, v1); expect(2, v2); expect(3, v3); expect(4, v4);
expect(5, v5); expect(6, v6); expect(7, v7); expect(8, v8);
expect(9, ... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/function.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.252480 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
#include <stdbool.h>
int t1() {
return 77;
}
static void t2(int a) {
expect(79, a);
}
static void t3(int a, int b, int c, int d, int e, int f) {
expect(1, a);
expect(2, b);
expect(3, c);
expect(4, d);
expect(... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/generic.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.585570 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <stdbool.h>
#include "test.h"
#ifdef __8cc__
static void test_basic() {
expect(1, _Generic(5, int: 1, float: 2));
expectd(3.0, _Generic(5.0, int: 1, float: 2.0, double: 3.0));
}
static void test_arith() {
typedef signed char schar;
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | path.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.712299 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include "8cc.h"
// Returns the shortest path for the given full path to a file.
static char *clean(char *p) {
assert(*p == '/');
char buf[PATH_MAX];
char *q = buf;
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | parse.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.737665 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
/*
* Recursive descendent parser for C.
*/
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "8cc.h"
// The largest alignment requirement on x86-64. When we are allocating mem... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | set.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.743059 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
// Sets are containers that store unique strings.
//
// The data structure is functional. Because no destructive
// operation is defined, it's guranteed that a set will never
// change once it's created.
//
// A null pointer represents an empty set.
//
// S... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/arith.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.787697 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void test_basic() {
expect(0, 0);
expect(3, 1 + 2);
expect(3, 1 + 2);
expect(10, 1 + 2 + 3 + 4);
expect(11, 1 + 2 * 3 + 4);
expect(14, 1 * 2 + 3 * 4);
expect(4, 4 / 2 + 6 / 3);
expect(4, 24 / 2 / 3);... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/assign.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.812328 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
void testmain() {
print("compound assignment");
int a = 0;
a += 5;
expect(5, a);
a -= 2;
expect(3, a);
a *= 10;
expect(30, a);
a /= 2;
expect(15, a);
a %= 6;
expect(3, a);
a = 14;
... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/bitop.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.825338 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void test_or() {
expect(3, 1 | 2);
expect(7, 2 | 5);
expect(7, 2 | 7);
}
static void test_and() {
expect(0, 1 & 2);
expect(2, 2 & 7);
}
static void test_not() {
expect(-1, ~0);
expect(-3, ~2);
expe... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/array.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.857603 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
static void t1() {
int a[2][3];
int *p = a;
*p = 1;
expect(1, *p);
}
static void t2() {
int a[2][3];
int *p = a + 1;
*p = 1;
int *q = a;
*p = 32;
expect(32, *(q + 3));
}
static void t3() {
int... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/align.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.859192 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
#include <stdalign.h>
#include <stddef.h>
static void test_alignas() {
expect(1, offsetof(struct { char x; char y; }, y));
expect(4, offsetof(struct { char x; _Alignas(4) char y; }, y));
expect(4, offsetof(struct { char x; _Al... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/global.c | null | null | null | null | null | null | C | 2026-05-04T18:41:38.873519 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
defaultint;
int val = 21;
int *p1 = &val;
int a1[3];
int a2[3] = { 24, 25, 26 };
int x1, x2;
int x3, x4 = 4;
int x5 = 5, x6;
char s1[] = "abcd";
char *s2 = "ABCD";
long l1 = 8;
int *intp = &(int){ 9 };
void testmain() {
print("glo... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/import.c | null | null | null | null | null | null | C | 2026-05-04T18:41:39.199973 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#include "test.h"
// import.h would raise an error if read twice.
#import "import.h"
#import "import.h"
#include "import.h"
#import "../test/import.h"
// once.h would raise an error if read twice
#include "once.h"
#include "once.h"
#import "once.h"
#inclu... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/includeguard.c | null | null | null | null | null | null | C | 2026-05-04T18:41:39.320826 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#include "test.h"
#if __8cc__
#include "includeguard1.h"
#if __8cc_include_guard == 1
# error "include guard"
#endif
#include "includeguard1.h"
#if __8cc_include_guard == 0
# error "include guard"
#endif
#include "includeguard2.h"
#if __8cc_include_guard... |
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/import.h | null | null | null | null | null | null | C | 2026-05-04T18:41:39.331845 | // Copyright 2012 Rui Ueyama. Released under the MIT license.
#ifdef IMPORT_H
#error "#import directive bug"
#endif
#define IMPORT_H 1
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/includeguard1.h | null | null | null | null | null | null | C | 2026-05-04T18:41:39.380305 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#ifndef INCLUDEGUARD1_H
#define INCLUDEGUARD1_H
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/includeguard3.h | null | null | null | null | null | null | C | 2026-05-04T18:41:39.412198 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#ifndef INCLUDEGUARD3_H
#define INCLUDEGUARD3_H
#endif
#define FOO 1
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/includeguard4.h | null | null | null | null | null | null | C | 2026-05-04T18:41:39.423359 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#ifndef INCLUDEGUARD4_H
#define INCLUDEGUARD4_H
#else
#endif
|
rui314/8cc | https://github.com/rui314/8cc | null | null | null | null | 6,378 | null | null | mit | null | null | null | null | null | null | null | test/includeguard5.h | null | null | null | null | null | null | C | 2026-05-04T18:41:39.650333 | // Copyright 2014 Rui Ueyama. Released under the MIT license.
#define FOO
#ifndef INCLUDEGUARD5_H
#define INCLUDEGUARD5_H
#endif
|
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/NSDate+AddressBookAdditions.h | null | null | null | null | null | null | C | 2026-05-04T18:41:44.486202 | //******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/ABAddressBookManagerInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:44.492042 | //******************************************************************************
//
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AssetsLibrary/ALAssetInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:44.494023 | //******************************************************************************
//
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/Accelerate/cblas_globals.c | null | null | null | null | null | null | C | 2026-05-04T18:41:44.506550 | //******************************************************************************
//
// Copyright (c) 2016 Intel Corporation. All rights reserved.
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WAR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/ABSourceInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:45.130021 | //******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/Accelerate/cblas_xerbla.c | null | null | null | null | null | null | C | 2026-05-04T18:41:45.131865 | //******************************************************************************
//
// Copyright (c) 2016 Intel Corporation. All rights reserved.
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WAR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/ABRecordInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:45.132821 | //******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/ABMultiValueInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:45.134727 | //******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AddressBook/ABContactInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:45.156708 | //******************************************************************************
//
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AssetsLibrary/ALAssetRepresentationInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:45.772419 | //******************************************************************************
//
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFByteOrder.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.189320 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFBridgeUtilities.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.191062 | //******************************************************************************
//
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/AudioToolbox/CAFDecoder.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.192809 | //******************************************************************************
//
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFFileUtilities.c | null | null | null | null | null | null | C | 2026-05-04T18:41:46.226669 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFBase.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.423694 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFBase.c | null | null | null | null | null | null | C | 2026-05-04T18:41:46.551769 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFInternal.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.576975 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFPriv.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.949845 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFLogUtilities.h | null | null | null | null | null | null | C | 2026-05-04T18:41:46.972511 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFRuntime.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.017414 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFPlatform.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.083928 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFRuntime.h | null | null | null | null | null | null | C | 2026-05-04T18:41:47.102040 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFSortFunctions.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.276568 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFSystemDirectories.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.351431 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFUUID.h | null | null | null | null | null | null | C | 2026-05-04T18:41:47.600490 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFUUID.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.625988 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFUtilities.c | null | null | null | null | null | null | C | 2026-05-04T18:41:47.707895 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CoreFoundation.h | null | null | null | null | null | null | C | 2026-05-04T18:41:47.731660 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFUtilities.h | null | null | null | null | null | null | C | 2026-05-04T18:41:47.732797 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CoreFoundation_Prefix.h | null | null | null | null | null | null | C | 2026-05-04T18:41:47.918508 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/ForFoundationOnly.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.032309 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/ForSwiftFoundationOnly.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.218535 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/SwiftRuntime/CoreFoundation.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.272962 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/SwiftRuntime/TargetConditionals.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.315766 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFArray.c | null | null | null | null | null | null | C | 2026-05-04T18:41:48.360773 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFArray.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.367796 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBag.c | null | null | null | null | null | null | C | 2026-05-04T18:41:48.519972 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBag.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.633227 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBasicHash.c | null | null | null | null | null | null | C | 2026-05-04T18:41:48.858708 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBasicHash.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.908375 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBinaryHeap.c | null | null | null | null | null | null | C | 2026-05-04T18:41:48.925339 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBinaryHeap.h | null | null | null | null | null | null | C | 2026-05-04T18:41:48.971609 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBitVector.c | null | null | null | null | null | null | C | 2026-05-04T18:41:49.011109 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFBitVector.h | null | null | null | null | null | null | C | 2026-05-04T18:41:49.174059 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFData.c | null | null | null | null | null | null | C | 2026-05-04T18:41:49.267116 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFData.h | null | null | null | null | null | null | C | 2026-05-04T18:41:49.459567 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Collections.subproj/CFDictionary.c | null | null | null | null | null | null | C | 2026-05-04T18:41:49.551818 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/AppServices.subproj/CFUserNotification.c | null | null | null | null | null | null | C | 2026-05-04T18:41:50.239938 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/Base.subproj/CFAvailability.h | null | null | null | null | null | null | C | 2026-05-04T18:41:50.252150 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
microsoft/WinObjC | https://github.com/microsoft/WinObjC | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | Frameworks/CoreFoundation/AppServices.subproj/CFUserNotification.h | null | null | null | null | null | null | C | 2026-05-04T18:41:50.277306 | // clang-format off
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTR... |
nelhage/reptyr | https://github.com/nelhage/reptyr | null | null | null | null | 6,252 | null | null | mit | null | null | null | null | null | null | null | platform/freebsd/arch/arm.h | null | null | null | null | null | null | C | 2026-05-04T18:41:52.702133 | /*
* Copyright (C) 2011 by Nelson Elhage
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, pu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.