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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
tsl0922/ttyd | https://github.com/tsl0922/ttyd | null | null | null | null | 11,557 | null | null | mit | null | null | null | null | null | null | null | src/protocol.c | null | null | null | null | null | null | C | 2026-05-04T18:48:08.297947 | #include <errno.h>
#include <json.h>
#include <libwebsockets.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pty.h"
#include "server.h"
#include "utils.h"
#include "compat.h"
// initial message list
static char initial_cmds[] = {SET_WINDOW_TITLE, SET_PREFERENCES};
static ... |
tsl0922/ttyd | https://github.com/tsl0922/ttyd | null | null | null | null | 11,557 | null | null | mit | null | null | null | null | null | null | null | src/pty.c | null | null | null | null | null | null | C | 2026-05-04T18:48:08.298619 | #include <errno.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
#include <unistd.h>
#endif
#ifndef _WIN32
#include <sys/ioctl.h>
#include <sys/wait.h>
#if defined(__OpenBSD__) || defined(__APPLE__)
#include <util.h>
#elif defined(__FreeBSD__)
#inclu... |
tsl0922/ttyd | https://github.com/tsl0922/ttyd | null | null | null | null | 11,557 | null | null | mit | null | null | null | null | null | null | null | src/pty.h | null | null | null | null | null | null | C | 2026-05-04T18:48:08.309209 | #ifndef TTYD_PTY_H
#define TTYD_PTY_H
#include <stdbool.h>
#include <stdint.h>
#include <uv.h>
#ifdef _WIN32
#ifndef HPCON
#define HPCON VOID *
#endif
#ifndef PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE
#define PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE 0x00020016
#endif
bool conpty_init();
#endif
typedef struct {
char *base;
... |
tsl0922/ttyd | https://github.com/tsl0922/ttyd | null | null | null | null | 11,557 | null | null | mit | null | null | null | null | null | null | null | src/utils.c | null | null | null | null | null | null | C | 2026-05-04T18:48:08.309685 | #include <ctype.h>
#include <fcntl.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "compat.h"
#if !defined(_WIN32) && !defined(__CYGWIN__)
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#endif
#if defined(__linux__) && !defined(__ANDROI... |
tsl0922/ttyd | https://github.com/tsl0922/ttyd | null | null | null | null | 11,557 | null | null | mit | null | null | null | null | null | null | null | src/compat.h | null | null | null | null | null | null | C | 2026-05-04T18:48:08.319301 | /* compat.h -- MSVC compatibility shims for POSIX functions */
#ifndef TTYD_COMPAT_H
#define TTYD_COMPAT_H
#ifdef _MSC_VER
#include <string.h>
#include <sys/stat.h>
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#ifndef S_ISDIR
#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
#endif
#ifndef S_ISREG
#define... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/decode.c | null | null | null | null | null | null | C | 2026-05-04T18:48:13.173482 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
#include <brotli/decode.h>
#ifdef __ARM_NEON__
#include <arm_neon.h>
#endif
#include <stdlib.h> /* free, malloc */
#include <string.h> /* memcpy, me... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/bit_reader.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.822706 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Bit reading helpers */
#ifndef BROTLI_DEC_BIT_READER_H_
#define BROTLI_DEC_BIT_READER_H_
#include <string.h> /* memcpy */
#include <brotli/types.... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/port.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.825454 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Macros for compiler / platform specific features and build options.
Build options are:
* BROTLI_BUILD_32_BIT disables 64-bit optimizations
... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/common/dictionary.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.827211 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Collection of static dictionary words. */
#ifndef BROTLI_COMMON_DICTIONARY_H_
#define BROTLI_COMMON_DICTIONARY_H_
#include <brotli/port.h>
#include... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/common/constants.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.828358 | /* Copyright 2016 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
#ifndef BROTLI_COMMON_CONSTANTS_H_
#define BROTLI_COMMON_CONSTANTS_H_
/* Specification: 7.3. Encoding of the context map */
#define BROTLI_CONTEXT_MAP_... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/common/version.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.829564 | /* Copyright 2016 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Version definition. */
#ifndef BROTLI_COMMON_VERSION_H_
#define BROTLI_COMMON_VERSION_H_
/* This macro should only be used when library is compiled... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/context.h | null | null | null | null | null | null | C | 2026-05-04T18:48:13.830948 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Lookup table to map the previous two bytes to a context id.
There are four different context modeling modes defined here:
CONTEXT_LSB6: cont... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/bit_reader.c | null | null | null | null | null | null | C | 2026-05-04T18:48:13.961143 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Bit reading helpers */
#include "./bit_reader.h"
#include <brotli/types.h>
#include "./port.h"
#if defined(__cplusplus) || defined(c_plusplus)
ext... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/backward_references_hq.c | null | null | null | null | null | null | C | 2026-05-04T18:48:15.194384 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function to find backward reference copies. */
#include "./backward_references_hq.h"
#include <string.h> /* memcpy, memset */
#include "../common... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/backward_references.c | null | null | null | null | null | null | C | 2026-05-04T18:48:15.474222 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function to find backward reference copies. */
#include "./backward_references.h"
#include "../common/constants.h"
#include "../common/dictionary.h... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/backward_references.h | null | null | null | null | null | null | C | 2026-05-04T18:48:15.475768 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function to find backward reference copies. */
#ifndef BROTLI_ENC_BACKWARD_REFERENCES_H_
#define BROTLI_ENC_BACKWARD_REFERENCES_H_
#include "../com... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/state.c | null | null | null | null | null | null | C | 2026-05-04T18:48:15.489951 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
#include "./state.h"
#include <stdlib.h> /* free, malloc */
#include <brotli/types.h>
#include "./huffman.h"
#if defined(__cplusplus) || defined(c_p... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/state.h | null | null | null | null | null | null | C | 2026-05-04T18:48:15.510880 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Brotli state for partial streaming decoding. */
#ifndef BROTLI_DEC_STATE_H_
#define BROTLI_DEC_STATE_H_
#include "../common/constants.h"
#include "... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/transform.h | null | null | null | null | null | null | C | 2026-05-04T18:48:15.587311 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Transformations on dictionary words. */
#ifndef BROTLI_DEC_TRANSFORM_H_
#define BROTLI_DEC_TRANSFORM_H_
#include <brotli/types.h>
#include "./port.... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/backward_references_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:16.254702 | /* NOLINT(build/header_guard) */
/* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: EXPORT_FN, FN */
static BROTLI_NOINLINE void EXPORT_FN(CreateBackwardReferences)(
const Br... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/bit_cost_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:16.443924 | /* NOLINT(build/header_guard) */
/* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN */
#define HistogramType FN(Histogram)
double FN(BrotliPopulationCost)(const HistogramType... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/bit_cost.c | null | null | null | null | null | null | C | 2026-05-04T18:48:16.504372 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions to estimate the bit cost of Huffman trees. */
#include "./bit_cost.h"
#include "../common/constants.h"
#include <brotli/types.h>
#include... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/bit_cost.h | null | null | null | null | null | null | C | 2026-05-04T18:48:16.504989 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions to estimate the bit cost of Huffman trees. */
#ifndef BROTLI_ENC_BIT_COST_H_
#define BROTLI_ENC_BIT_COST_H_
#include <brotli/types.h>
#in... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/block_splitter.c | null | null | null | null | null | null | C | 2026-05-04T18:48:16.730402 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Block split point selection utilities. */
#include "./block_splitter.h"
#include <assert.h>
#include <string.h> /* memcpy, memset */
#include "./... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/block_splitter.h | null | null | null | null | null | null | C | 2026-05-04T18:48:16.996672 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Block split point selection utilities. */
#ifndef BROTLI_ENC_BLOCK_SPLITTER_H_
#define BROTLI_ENC_BLOCK_SPLITTER_H_
#include <brotli/types.h>
#incl... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/block_splitter_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:17.110543 | /* NOLINT(build/header_guard) */
/* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN, DataType */
#define HistogramType FN(Histogram)
static void FN(InitialEntropyCodes)(const... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/brotli_bit_stream.h | null | null | null | null | null | null | C | 2026-05-04T18:48:17.236427 | /* Copyright 2014 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions to convert brotli-related data structures into the
brotli bit stream. The functions here operate under
assumption that there is enoug... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/brotli_bit_stream.c | null | null | null | null | null | null | C | 2026-05-04T18:48:17.242990 | /* Copyright 2014 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Brotli bit stream functions to support the low level format. There are no
compression algorithms here, just the right ordering of bits to match th... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/block_encoder_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:17.362324 | /* NOLINT(build/header_guard) */
/* Copyright 2014 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN */
#define HistogramType FN(Histogram)
/* Creates entropy codes for all block types and st... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/cluster.c | null | null | null | null | null | null | C | 2026-05-04T18:48:17.597769 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions for clustering similar histograms together. */
#include "./cluster.h"
#include <brotli/types.h>
#include "./bit_cost.h" /* BrotliPopulat... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/huffman.h | null | null | null | null | null | null | C | 2026-05-04T18:48:17.598296 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Utilities for building Huffman decoding tables. */
#ifndef BROTLI_DEC_HUFFMAN_H_
#define BROTLI_DEC_HUFFMAN_H_
#include <brotli/types.h>
#include "... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/huffman.c | null | null | null | null | null | null | C | 2026-05-04T18:48:17.600082 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Utilities for building Huffman decoding tables. */
#include "./huffman.h"
#include <string.h> /* memcpy, memset */
#include "../common/constants.... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/cluster.h | null | null | null | null | null | null | C | 2026-05-04T18:48:17.816535 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions for clustering similar histograms together. */
#ifndef BROTLI_ENC_CLUSTER_H_
#define BROTLI_ENC_CLUSTER_H_
#include <brotli/types.h>
#inc... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/cluster_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.141046 | /* NOLINT(build/header_guard) */
/* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN, CODE */
#define HistogramType FN(Histogram)
/* Computes the bit cost reduction by combini... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/compress_fragment.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.256363 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function for fast encoding of an input fragment, independently from the input
history. This function uses one-pass processing: when we find a back... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/compress_fragment.c | null | null | null | null | null | null | C | 2026-05-04T18:48:18.332675 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function for fast encoding of an input fragment, independently from the input
history. This function uses one-pass processing: when we find a back... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/compress_fragment_two_pass.c | null | null | null | null | null | null | C | 2026-05-04T18:48:18.371473 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function for fast encoding of an input fragment, independently from the input
history. This function uses two-pass processing: in the first pass w... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/compress_fragment_two_pass.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.484706 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function for fast encoding of an input fragment, independently from the input
history. This function uses two-pass processing: in the first pass w... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/context.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.506543 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Functions to map previous bytes into a context id. */
#ifndef BROTLI_ENC_CONTEXT_H_
#define BROTLI_ENC_CONTEXT_H_
#include <brotli/port.h>
#include... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/dictionary_hash.c | null | null | null | null | null | null | C | 2026-05-04T18:48:18.641613 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Hash table on the 4-byte prefixes of static dictionary words. */
#include <brotli/port.h>
#include "./dictionary_hash.h"
#if defined(__cplusplus) |... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/dictionary_hash.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.820889 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Hash table on the 4-byte prefixes of static dictionary words. */
#ifndef BROTLI_ENC_DICTIONARY_HASH_H_
#define BROTLI_ENC_DICTIONARY_HASH_H_
#inclu... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/dec/prefix.h | null | null | null | null | null | null | C | 2026-05-04T18:48:18.822147 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Lookup tables to map prefix codes to value ranges. This is used during
decoding of the block lengths, literal insertion lengths and copy lengths.
... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/encode.c | null | null | null | null | null | null | C | 2026-05-04T18:48:18.958099 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Implementation of Brotli compressor. */
#include <brotli/encode.h>
#include <stdlib.h> /* free, malloc */
#include <string.h> /* memcpy, memset *... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/entropy_encode.c | null | null | null | null | null | null | C | 2026-05-04T18:48:18.998329 | /* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Entropy encoding (Huffman) utilities. */
#include "./entropy_encode.h"
#include <string.h> /* memset */
#include "../common/constants.h"
#include... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/entropy_encode.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.078956 | /* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Entropy encoding (Huffman) utilities. */
#ifndef BROTLI_ENC_ENTROPY_ENCODE_H_
#define BROTLI_ENC_ENTROPY_ENCODE_H_
#include <brotli/types.h>
#inclu... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/entropy_encode_static.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.225995 | /* Copyright 2015 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Static entropy codes used for faster meta-block encoding. */
#ifndef BROTLI_ENC_ENTROPY_ENCODE_STATIC_H_
#define BROTLI_ENC_ENTROPY_ENCODE_STATIC_H_... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/fast_log.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.307116 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Utilities for fast computation of logarithms. */
#ifndef BROTLI_ENC_FAST_LOG_H_
#define BROTLI_ENC_FAST_LOG_H_
#include <math.h>
#include <brotli/... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/find_match_length.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.358555 | /* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function to find maximal matching prefixes of strings. */
#ifndef BROTLI_ENC_FIND_MATCH_LENGTH_H_
#define BROTLI_ENC_FIND_MATCH_LENGTH_H_
#include ... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/hash_forgetful_chain_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.533450 | /* NOLINT(build/header_guard) */
/* Copyright 2016 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN, BUCKET_BITS, NUM_BANKS, BANK_BITS,
NUM_LAST_DISTANCES_TO_CHECK */
... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/hash.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.596655 | /* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* A (forgetful) hash table to the data seen by the compressor, to
help create backward references to previous data. */
#ifndef BROTLI_ENC_HASH_H_
#... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/backward_references_hq.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.627737 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Function to find backward reference copies. */
#ifndef BROTLI_ENC_BACKWARD_REFERENCES_HQ_H_
#define BROTLI_ENC_BACKWARD_REFERENCES_HQ_H_
#include "... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/hash_longest_match_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.628351 | /* NOLINT(build/header_guard) */
/* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN */
/* A (forgetful) hash table to the data seen by the compressor, to
help create backwa... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/hash_longest_match64_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.703081 | /* NOLINT(build/header_guard) */
/* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN */
/* A (forgetful) hash table to the data seen by the compressor, to
help create backwa... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/hash_longest_match_quickly_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:48:19.740562 | /* NOLINT(build/header_guard) */
/* Copyright 2010 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* template parameters: FN, BUCKET_BITS, BUCKET_SWEEP, HASH_LEN,
USE_DICTIONARY
*/
#define Ha... |
h2o/h2o | https://github.com/h2o/h2o | null | null | null | null | 11,448 | null | null | mit | null | null | null | null | null | null | null | deps/brotli/c/enc/command.h | null | null | null | null | null | null | C | 2026-05-04T18:48:26.798873 | /* Copyright 2013 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* This class models a sequence of literals and a backward reference copy. */
#ifndef BROTLI_ENC_COMMAND_H_
#define BROTLI_ENC_COMMAND_H_
#include "..... |
krallin/tini | https://github.com/krallin/tini | null | null | null | null | 11,065 | null | null | mit | null | null | null | null | null | null | null | src/tiniLicense.h | null | null | null | null | null | null | C | 2026-05-04T18:48:29.395816 | unsigned char LICENSE[] = {
0x54, 0x68, 0x65, 0x20, 0x4d, 0x49, 0x54, 0x20, 0x4c, 0x69, 0x63, 0x65,
0x6e, 0x73, 0x65, 0x20, 0x28, 0x4d, 0x49, 0x54, 0x29, 0x0a, 0x0a, 0x43,
0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28, 0x63, 0x29,
0x20, 0x32, 0x30, 0x31, 0x35, 0x20, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x... |
krallin/tini | https://github.com/krallin/tini | null | null | null | null | 11,065 | null | null | mit | null | null | null | null | null | null | null | test/sigconf/sigconf-test.c | null | null | null | null | null | null | C | 2026-05-04T18:48:29.473476 | /*
Test program to:
+ Ignore a few signals
+ Block a few signals
+ Exec whatever the test runner asked for
*/
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
// Signals to ignore
signal(SIGTTOU, SIG_IGN); // This one should still be in SigIgn (Tini touches it to igno... |
krallin/tini | https://github.com/krallin/tini | null | null | null | null | 11,065 | null | null | mit | null | null | null | null | null | null | null | src/tini.c | null | null | null | null | null | null | C | 2026-05-04T18:48:29.601991 | /* See LICENSE file for copyright and license details. */
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/prctl.h>
#include <assert.h>
#include <errno.h>
#include <signal.h>
#include <string.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdboo... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/getopt.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.068113 | /* Copyright (c) 2012, Kim Gräsman
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions an... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glew/src/visualinfo.c | null | null | null | null | null | null | C | 2026-05-04T18:48:32.070368 | /*
** visualinfo.c
**
** Copyright (C) Nate Robins, 1997
** Michael Wimmer, 1999
** Milan Ikits, 2002-2008
**
** visualinfo is a small utility that displays all available visuals,
** aka. pixelformats, in an OpenGL system along with renderer version
** information. It shows a table of all th... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/glad.c | null | null | null | null | null | null | C | 2026-05-04T18:48:32.082868 | #include <stdio.h>
#include <string.h>
#include <glad/glad.h>
struct gladGLversionStruct GLVersion;
#if defined(GL_ES_VERSION_3_0) || defined(GL_VERSION_3_0)
#define _GLAD_IS_SOME_NEW_VERSION 1
#endif
int GLAD_GL_VERSION_1_0;
int GLAD_GL_VERSION_1_1;
int GLAD_GL_VERSION_1_2;
int GLAD_GL_VERSION_1_3;
int GLAD_GL_VERS... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/EGL/eglext.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.084190 | #ifndef __eglext_h_
#define __eglext_h_
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright (c) 2007-2013 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and/or associated documentation files (the
** "Materials"), to deal in the Material... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glew/include/GL/wglew.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.090686 | /*
** The OpenGL Extension Wrangler Library
** Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
** Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
** Copyright (C) 2002, Lev Povalahev
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** mo... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/getopt.c | null | null | null | null | null | null | C | 2026-05-04T18:48:32.095744 | /* Copyright (c) 2012, Kim Gräsman
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions an... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glew/include/GL/glxew.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.103743 | /*
** The OpenGL Extension Wrangler Library
** Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
** Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
** Copyright (C) 2002, Lev Povalahev
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** mo... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/GL/wglext.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.111791 | #ifndef __wglext_h_
#define __wglext_h_ 1
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright (c) 2013-2014 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and/or associated documentation files (the
** "Materials"), to deal in the Materi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/KHR/khrplatform.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.176110 | #ifndef __khrplatform_h_
#define __khrplatform_h_
/*
** Copyright (c) 2008-2009 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and/or associated documentation files (the
** "Materials"), to deal in the Materials without restriction, includi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/GL/glxext.h | null | null | null | null | null | null | C | 2026-05-04T18:48:32.237396 | #ifndef __glxext_h_
#define __glxext_h_ 1
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright (c) 2013-2014 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and/or associated documentation files (the
** "Materials"), to deal in the Materi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/tinycthread.c | null | null | null | null | null | null | C | 2026-05-04T18:48:32.989519 | /* -*- mode: c; tab-width: 2; indent-tabs-mode: nil; -*-
Copyright (c) 2012 Marcus Geelnard
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this softwar... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/heightmap.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.018437 | //========================================================================
// Heightmap example program using OpenGL 3 core profile
// Copyright (c) 2010 Olivier Delannoy
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// a... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/tinycthread.h | null | null | null | null | null | null | C | 2026-05-04T18:48:33.066155 | /* -*- mode: c; tab-width: 2; indent-tabs-mode: nil; -*-
Copyright (c) 2012 Marcus Geelnard
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this softwar... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/linmath.h | null | null | null | null | null | null | C | 2026-05-04T18:48:33.116178 | #ifndef LINMATH_H
#define LINMATH_H
#include <math.h>
#ifdef _MSC_VER
#define inline __inline
#endif
#define LINMATH_H_DEFINE_VEC(n) \
typedef float vec##n[n]; \
static inline void vec##n##_add(vec##n r, vec##n const a, vec##n const b) \
{ \
int i; \
for(i=0; i<n; ++i) \
r[i] = a[i] + b[i]; \
} \
static inline ... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/simple.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.138737 | //========================================================================
// Simple GLFW example
// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/deps/glad/glad.h | null | null | null | null | null | null | C | 2026-05-04T18:48:33.251775 |
#ifndef __glad_h_
#ifdef __gl_h_
#error OpenGL header already included, remove this include, glad already provides it
#endif
#define __glad_h_
#define __gl_h_
#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#en... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/wave.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.606457 | /*****************************************************************************
* Wave Simulation in OpenGL
* (C) 2002 Jakob Thomsen
* http://home.in.tum.de/~thomsen
* Modified for GLFW by Sylvain Hellegouarch - sh@programmationworld.com
* Modified for variable frame rate by Marcus Geelnard
* 2003-Jan-31: Minor cl... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/include/GLFW/glfw3native.h | null | null | null | null | null | null | C | 2026-05-04T18:48:33.719744 | /*************************************************************************
* GLFW 3.1 - www.glfw.org
* A library for OpenGL, window and input
*------------------------------------------------------------------------
* Copyright (c) 2002-2006 Marcus Geelnard
* Copyright (c) 2006-2010 Camilla Berglund <elmindreda@el... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/context.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.738379 | //========================================================================
// GLFW 3.1 - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/cocoa_platform.h | null | null | null | null | null | null | C | 2026-05-04T18:48:33.762896 | //========================================================================
// GLFW 3.1 OS X - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or im... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/gears.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.777564 | /*
* 3-D gear wheels. This program is in the public domain.
*
* Command line options:
* -info print GL implementation information
* -exit automatically exit after 30 seconds
*
*
* Brian Paul
*
*
* Marcus Geelnard:
* - Conversion to GLFW
* - Time based rendering (frame rate independent)... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/egl_context.c | null | null | null | null | null | null | C | 2026-05-04T18:48:33.778854 | //========================================================================
// GLFW 3.1 EGL - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is p... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/boing.c | null | null | null | null | null | null | C | 2026-05-04T18:48:34.019253 | /*****************************************************************************
* Title: GLBoing
* Desc: Tribute to Amiga Boing.
* Author: Jim Brooks <gfx@jimbrooks.org>
* Original Amiga authors were R.J. Mical and Dale Luck.
* GLFW conversion by Marcus Geelnard
* Notes: - 360' = 2*PI [r... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/examples/particles.c | null | null | null | null | null | null | C | 2026-05-04T18:48:34.389675 | //========================================================================
// A simple particle engine with threaded physics
// Copyright (c) Marcus Geelnard
// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event wil... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/glx_context.c | null | null | null | null | null | null | C | 2026-05-04T18:48:34.592542 | //========================================================================
// GLFW 3.1 GLX - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is p... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/init.c | null | null | null | null | null | null | C | 2026-05-04T18:48:34.594158 | //========================================================================
// GLFW 3.1 - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/glx_context.h | null | null | null | null | null | null | C | 2026-05-04T18:48:34.595245 | //========================================================================
// GLFW 3.1 GLX - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is p... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/iokit_joystick.h | null | null | null | null | null | null | C | 2026-05-04T18:48:34.787788 | //========================================================================
// GLFW 3.1 IOKit - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2006-2014 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or i... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/internal.h | null | null | null | null | null | null | C | 2026-05-04T18:48:34.814154 | //========================================================================
// GLFW 3.1 - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/input.c | null | null | null | null | null | null | C | 2026-05-04T18:48:34.814767 | //========================================================================
// GLFW 3.1 - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/egl_context.h | null | null | null | null | null | null | C | 2026-05-04T18:48:34.967921 | //========================================================================
// GLFW 3.1 EGL - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is p... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/linux_joystick.h | null | null | null | null | null | null | C | 2026-05-04T18:48:35.023715 | //========================================================================
// GLFW 3.1 Linux - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014 Jonas Ådahl <jadahl@gmail.com>
//
// This software is provided 'as-is', without any express or implied
// warranty.... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/mach_time.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.240996 | //========================================================================
// GLFW 3.1 OS X - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or im... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/mir_monitor.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.273284 | //========================================================================
// GLFW 3.1 Mir - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
//
// This software is provided 'as-is', without any express o... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/mir_init.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.355500 | //========================================================================
// GLFW 3.1 Mir - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
//
// This software is provided 'as-is', without any express o... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/monitor.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.450946 | //========================================================================
// GLFW 3.1 - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provi... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/mir_platform.h | null | null | null | null | null | null | C | 2026-05-04T18:48:35.551419 | //========================================================================
// GLFW 3.1 Mir - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
//
// This software is provided 'as-is', without any express o... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/mir_window.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.564059 | //========================================================================
// GLFW 3.1 Mir - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
//
// This software is provided 'as-is', without any express o... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/nsgl_context.h | null | null | null | null | null | null | C | 2026-05-04T18:48:35.633981 | //========================================================================
// GLFW 3.1 OS X - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is provided 'as-is', without any express or im... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/posix_time.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.664820 | //========================================================================
// GLFW 3.1 POSIX - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/posix_tls.c | null | null | null | null | null | null | C | 2026-05-04T18:48:35.889213 | //========================================================================
// GLFW 3.1 POSIX - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is... |
fogleman/Craft | https://github.com/fogleman/Craft | null | null | null | null | 10,994 | null | null | mit | null | null | null | null | null | null | null | deps/glfw/src/posix_time.h | null | null | null | null | null | null | C | 2026-05-04T18:48:35.949092 | //========================================================================
// GLFW 3.1 POSIX - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// This software is... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.