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
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/ov7725.c
null
null
null
null
null
null
C
2026-05-04T18:59:34.739615
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV7725 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "ov77...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/ov2640_regs.h
null
null
null
null
null
null
C
2026-05-04T18:59:34.777654
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV2640 register definitions. */ #ifndef __REG_REGS_H__ #define __REG_REGS_H__ /* DSP register bank FF=0x00*/ #def...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/camera.c
null
null
null
null
null
null
C
2026-05-04T18:59:34.839369
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/ov7725_regs.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.268378
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV2640 register definitions. */ #ifndef __REG_REGS_H__ #define __REG_REGS_H__ #define GAIN 0x0...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/sccb.c
null
null
null
null
null
null
C
2026-05-04T18:59:35.308485
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * SCCB (I2C like) driver. * */ #include <stdbool.h> #include "wiring.h" #include "sccb.h" #include "twi.h" #includ...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/sccb.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.309125
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * SCCB (I2C like) driver. * */ #ifndef __SCCB_H__ #define __SCCB_H__ #include <stdint.h> int SCCB_Init(...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/twi.c
null
null
null
null
null
null
C
2026-05-04T18:59:35.330336
/* si2c.c - Software I2C library for ESP31B Copyright (c) 2015 Hristo Gochkov. All rights reserved. This file is part of the ESP31B core for Arduino environment. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/wiring.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.379237
#ifndef __OMV_PORT_H__ #define __OMV_PORT_H__ #include <freertos/FreeRTOS.h> #include <freertos/task.h> // Some functions from Arduino/Wiring void pinMode(int pin, int mode); void digitalWrite(int pin, int value); void delay(int millis); #define OUTPUT 0 #define INPUT 1 #define INPUT_PULLUP 2 // Some functions to ...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/xclk.c
null
null
null
null
null
null
C
2026-05-04T18:59:35.419875
#include "driver/gpio.h" #include "driver/ledc.h" #include "esp_err.h" #include "esp_log.h" #include "xclk.h" static const char* TAG = "camera_xclk"; esp_err_t camera_enable_out_clock(camera_config_t* config) { periph_module_enable(PERIPH_LEDC_MODULE); ledc_timer_config_t timer_conf = { .duty_resolut...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/sensor.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.420367
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * Sensor abstraction layer. * */ #ifndef __SENSOR_H__ #define __SENSOR_H__ #include <stdint.h> #include "wiring.h"...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/twi.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.443766
/* twi.h - Software I2C library for ESP31B Copyright (c) 2015 Hristo Gochkov. All rights reserved. This file is part of the ESP31B core for Arduino environment. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published b...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/wiring.c
null
null
null
null
null
null
C
2026-05-04T18:59:35.522943
#include "wiring.h" #include "soc/gpio_reg.h" #include "soc/io_mux_reg.h" #include "driver/gpio.h" void pinMode(int pin, int mode) { gpio_config_t conf = {0}; conf.pin_bit_mask = 1LL << pin; if (mode == OUTPUT) { conf.mode = GPIO_MODE_OUTPUT; } if (mode == INPUT || mode == INPUT_PULLUP) { conf.mode ...
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
components/camera/xclk.h
null
null
null
null
null
null
C
2026-05-04T18:59:35.589914
#pragma once #include "camera_common.h" esp_err_t camera_enable_out_clock(); void camera_disable_out_clock();
igrr/esp32-cam-demo
https://github.com/igrr/esp32-cam-demo
null
null
null
null
661
null
null
apache-2.0
null
null
null
null
null
null
null
main/app_main.c
null
null
null
null
null
null
C
2026-05-04T18:59:36.024165
// Copyright 2015-2017 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/amd64.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.647092
/* libco.amd64 (2016-09-14) author: byuu license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #include <assert.h> #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif static thread_local long long co_active_buffer[64]; static thread_local cothread_t co_active_handle = 0; st...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/ppc.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.677433
/* libco.ppc (2016-09-14) author: blargg license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #include <stdlib.h> #include <stdint.h> #include <string.h> #if LIBCO_MPROTECT #include <unistd.h> #include <sys/mman.h> #endif /* state format (offsets in 32-bit words) +0 pointer...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/settings.h
null
null
null
null
null
null
C
2026-05-04T18:59:38.680584
#ifdef LIBCO_C /*[amd64, arm, ppc, x86]: by default, co_swap_function is marked as a text (code) section if not supported, uncomment the below line to use mprotect instead */ /* * Testing Fluent Bit on Windows when doing co_swap it crash if the * option LIBCO_MPROTECT is not defined. */ #ifdef _WIN32 #define...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/arm.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.681635
/* libco.arm (2016-09-14) author: byuu license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #include <assert.h> #include <stdlib.h> #include <unistd.h> #include <sys/mman.h> #ifdef __cplusplus extern "C" { #endif static thread_local unsigned long co_active_buffer[64]; static thre...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/fiber.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.689712
/* libco.win (2008-01-28) authors: Nach, byuu license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #define WINVER 0x0400 #define _WIN32_WINNT 0x0400 #include <windows.h> #ifdef __cplusplus extern "C" { #endif static thread_local cothread_t co_active_ = 0; static void __stdcall c...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/libco.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.690897
/* libco license: public domain */ #if defined(__clang__) #pragma clang diagnostic ignored "-Wparentheses" #endif #if defined(__clang__) || defined(__GNUC__) #if defined(__i386__) #include "x86.c" #elif defined(__amd64__) #include "amd64.c" #elif defined(__arm__) #include "arm.c" #elif defin...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/aarch64.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.706997
/* libco.aarch64 (2017-06-26) author: webgeek1234 license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #include <assert.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #if defined(HAVE_POSIX_MEMALIGN_IN_STDLIB) /* stdlib is already included */ #elif defined(HAVE_POSI...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
api/errors.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.707517
#include <monkey/mk_lib.h> #include <mk_core/mk_unistd.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> #define API_ADDR "127.0.0.1" #define API_PORT "2020" /* Main context set as global so the signal handler can use it */ mk_ctx_t *ctx; static void signal_handler(int signal) { write(STDERR_FIL...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/libco.h
null
null
null
null
null
null
C
2026-05-04T18:59:38.739533
/* libco v18 (2016-09-14) author: byuu license: public domain */ #ifndef LIBCO_H #define LIBCO_H #include <stddef.h> #ifdef __cplusplus extern "C" { #endif typedef void* cothread_t; cothread_t co_active(); cothread_t co_create(unsigned int, void (*)(void), size_t *); void co_delete(cothread_t); void co_switc...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
api/test.c
null
null
null
null
null
null
C
2026-05-04T18:59:38.741018
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ #include <monkey/mk_lib.h> #include <mk_core/mk_unistd.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> #define API_ADDR "127.0.0.1" #define API_PORT "9080" /* Main context set as global so the signal handler can use it *...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/ucontext.c
null
null
null
null
null
null
C
2026-05-04T18:59:39.286349
/* libco.ucontext (2008-01-28) author: Nach license: public domain */ /* WARNING: the overhead of POSIX ucontext is very high, assembly versions of libco or libco_sjlj should be much faster this library only exists for two reasons: 1: as an initial test for the viability of a ucontext implementation 2...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/x86.c
null
null
null
null
null
null
C
2026-05-04T18:59:39.287564
/* libco.x86 (2016-09-14) author: byuu license: public domain */ #define LIBCO_C #include "libco.h" #include "settings.h" #include <assert.h> #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif #if defined(__clang__) || defined(__GNUC__) #define fastcall __attribute__((fastcall)) #elif defined(_MSC_V...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/flb_libco/sjlj.c
null
null
null
null
null
null
C
2026-05-04T18:59:39.319100
/* libco.sjlj (2008-01-28) author: Nach license: public domain */ /* note this was designed for UNIX systems. Based on ideas expressed in a paper by Ralf Engelschall. for SJLJ on other systems, one would want to rewrite springboard() and co_create() and hack the jmb_buf stack pointer. */ #define LIBCO_C #in...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-suite-b.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.339057
/* * Minimal configuration for TLS NSA Suite B Profile (RFC 6460) * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-mini-tls1_1.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.361493
/* * Minimal configuration for TLS 1.1 (RFC 4346) * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a co...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-ccm-psk-tls1_2.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.363444
/* * Minimal configuration for TLS 1.2 with PSK and AES-CCM ciphersuites * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-picocoin.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.366607
/* * Reduced configuration used by Picocoin. * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/aes.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.375412
/** * \file aes.h * * \brief AES block cipher * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-thread.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.375923
/* * Minimal configuration for using TLS as part of Thread * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may ob...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/configs/config-no-entropy.h
null
null
null
null
null
null
C
2026-05-04T18:59:39.398756
/** * Minimal configuration of features that do not require an entropy source * * Copyright (C) 2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/asn1write.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.316433
/** * \file asn1write.h * * \brief ASN.1 buffer writing functionality * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. *...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/blowfish.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.319927
/** * \file blowfish.h * * \brief Blowfish block cipher * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obta...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/camellia.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.321615
/** * \file camellia.h * * \brief Camellia block cipher * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obta...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/base64.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.323378
/** * \file base64.h * * \brief RFC 1521 base64 encoding/decoding * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * Yo...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/asn1.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.324274
/** * \file asn1.h * * \brief Generic ASN.1 parsing * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/bignum.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.366217
/** * \file bignum.h * * \brief Multi-precision integer library * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/arc4.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.367747
/** * \file arc4.h * * \brief The ARCFOUR stream cipher * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obta...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/aesni.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.491793
/** * \file aesni.h * * \brief AES-NI for hardware AES acceleration on some Intel processors * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in complian...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/certs.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.952871
/** * \file certs.h * * \brief Sample certificates and DHM parameters for testing * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/cmac.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.958226
/** * \file cmac.h * * \brief Cipher-based Message Authentication Code (CMAC) Mode for * Authentication * * Copyright (C) 2015-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/cipher.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.960589
/** * \file cipher.h * * \brief Generic cipher wrapper. * * \author Adriaan de Jong <dejong@fox-it.com> * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file excep...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/cipher_internal.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.962116
/** * \file cipher_internal.h * * \brief Cipher wrappers. * * \author Adriaan de Jong <dejong@fox-it.com> * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file exc...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/check_config.h
null
null
null
null
null
null
C
2026-05-04T18:59:40.994502
/** * \file check_config.h * * \brief Consistency checks for configuration options * * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with th...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ctr_drbg.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.008392
/** * \file ctr_drbg.h * * \brief CTR_DRBG based on AES-256 (NIST SP 800-90) * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the Lice...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/bn_mul.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.024641
/** * \file bn_mul.h * * \brief Multi-precision integer library * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ccm.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.036248
/** * \file ccm.h * * \brief Counter with CBC-MAC (CCM) for 128-bit block ciphers * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/config.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.066074
/** * \file config.h * * \brief Configuration options (set of defines) * * This set of compile-time options may be used to enable * or disable features selectively, and reduce the global * memory footprint. * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2....
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/debug.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.071538
/** * \file debug.h * * \brief Functions for controlling and providing debug output from the library. * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ecdh.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.550505
/** * \file ecdh.h * * \brief Elliptic curve Diffie-Hellman * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/des.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.563537
/** * \file des.h * * \brief DES block cipher * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ecdsa.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.568800
/** * \file ecdsa.h * * \brief Elliptic curve DSA * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a c...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/dhm.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.569435
/** * \file dhm.h * * \brief Diffie-Hellman-Merkle key exchange * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ecjpake.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.627486
/** * \file ecjpake.h * * \brief Elliptic curve J-PAKE * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtai...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/entropy_poll.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.627969
/** * \file entropy_poll.h * * \brief Platform-specific and custom entropy polling functions * * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in complian...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/entropy.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.631001
/** * \file entropy.h * * \brief Entropy accumulator implementation * * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * ...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/ecp.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.663459
/** * \file ecp.h * * \brief Elliptic curves over GF(p) * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obta...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/gcm.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.679621
/** * \file gcm.h * * \brief Galois/Counter mode for 128-bit block ciphers * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the Licens...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/error.h
null
null
null
null
null
null
C
2026-05-04T18:59:41.697044
/** * \file error.h * * \brief Error to string translation * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may o...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/hmac_drbg.h
null
null
null
null
null
null
C
2026-05-04T18:59:42.121061
/** * \file hmac_drbg.h * * \brief HMAC_DRBG (NIST SP 800-90A) * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You m...
monkey/monkey
https://github.com/monkey/monkey
null
null
null
null
653
null
null
apache-2.0
null
null
null
null
null
null
null
deps/mbedtls-2.4.2/include/mbedtls/havege.h
null
null
null
null
null
null
C
2026-05-04T18:59:42.234424
/** * \file havege.h * * \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance ...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Exception.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.195104
//------------------------------------------------------------------------ // Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/QZBarImage.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.201009
//------------------------------------------------------------------------ // Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Decoder.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.205812
//------------------------------------------------------------------------ // Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/config.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.208040
/* manually customized for iPhone platform */ #define HAVE_LANGINFO_CODESET 0 /* whether to build support for Code 128 symbology */ #define ENABLE_CODE128 1 /* whether to build support for Code 93 symbology */ #define ENABLE_CODE93 1 /* whether to build support for Code 39 symbology */ #define ENABLE_CODE39 1 /* w...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Image.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.211514
//------------------------------------------------------------------------ // Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/ImageScanner.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.221913
//------------------------------------------------------------------------ // Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.223053
/*------------------------------------------------------------------------ * Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> * * This file is part of the ZBar Bar Code Reader. * * The ZBar Bar Code Reader is free software; you can redistribute it * and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Processor.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.302503
//------------------------------------------------------------------------ // Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/QZBar.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.303788
//------------------------------------------------------------------------ // Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Scanner.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.319426
//------------------------------------------------------------------------ // Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Window.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.811366
//------------------------------------------------------------------------ // Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/build-aux/snippet/_Noreturn.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.880565
#if !defined _Noreturn && __STDC_VERSION__ < 201112 # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/build-aux/snippet/c++defs.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.885907
/* C++ compatible function declaration macros. Copyright (C) 2010-2017 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or ...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Video.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.887340
//------------------------------------------------------------------------ // Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/zbargtk.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.940687
/*------------------------------------------------------------------------ * Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net> * * This file is part of the ZBar Bar Code Reader. * * The ZBar Bar Code Reader is free software; you can redistribute it * and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/build-aux/snippet/arg-nonnull.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.941766
/* A C macro for declaring that specific arguments must not be NULL. Copyright (C) 2009-2017 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version ...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/include/zbar/Symbol.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.945079
//------------------------------------------------------------------------ // Copyright 2007-2010 (c) Jeff Brown <spadix@users.sourceforge.net> // // This file is part of the ZBar Bar Code Reader. // // The ZBar Bar Code Reader is free software; you can redistribute it // and/or modify it under the terms of the GNU...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/build-aux/snippet/warn-on-use.h
null
null
null
null
null
null
C
2026-05-04T18:59:45.978590
/* A C macro for emitting warnings if a function is used. Copyright (C) 2010-2017 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the Li...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/config.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.000531
/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to the number of bits in type 'ptrdiff_t'. */ #define BITSIZEOF_PTRDIFF_T 64 /* Define to the number of bits in type 'sig_atomic_t'. */ #define BITSIZEOF_SIG_ATOMIC_T 32 /* Define to t...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/extras/iconv_string.c
null
null
null
null
null
null
C
2026-05-04T18:59:46.018159
/* Copyright (C) 1999-2001, 2003, 2011 Bruno Haible. This file is not part of the GNU LIBICONV Library. This file is put into the public domain. */ #include "iconv_string.h" #include <iconv.h> #include <errno.h> #include <stdlib.h> #include <string.h> #define tmpbufsize 4096 int iconv_string (const char* toco...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/extras/iconv_string.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.444622
/* Copyright (C) 1999-2001 Bruno Haible. This file is not part of the GNU LIBICONV Library. This file is put into the public domain. */ /* * This C function converts an entire string from one encoding to another, * using iconv. Easier to use than iconv() itself, and supports autodetect * encodings on input. ...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/alloca.in.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.517359
/* Memory allocation on the stack. Copyright (C) 1995, 1999, 2001-2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or ...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xalloc.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.518574
/* malloc with out of memory checking. Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc. Written by Bruno Haible <haible@clisp.cons.org>, 2001. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xstrdup.c
null
null
null
null
null
null
C
2026-05-04T18:59:46.773004
/* xstrdup.c -- copy a string with out of memory checking Copyright (C) 1990, 1996, 2000-2003, 2005-2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eit...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/include/iconv.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.774268
/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc. This file is part of the GNU LIBICONV Library. The GNU LIBICONV Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foun...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_aix.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.882919
S(aix_0, "CP856", ei_cp856 ) S(aix_1, "CP922", ei_cp922 ) S(aix_2, "CP943", ei_cp943 ) S(aix_3, "CP1046", ei_cp1046 ) S(aix_4, "CP1124", ei_cp1124 ) S(aix_5, "CP1129", ei_cp1129 ) S(aix_6, "CP1161", ei_cp1161 ) S(aix_7, "IBM1161", ei_cp1161 ) S(aix_8, "IBM-1161", ei_cp1161 ) S(aix_9, "CSIBM1161", ei...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases2.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.883501
/* * Copyright (C) 1999-2003, 2008 Free Software Foundation, Inc. * This file is part of the GNU LIBICONV Library. * * The GNU LIBICONV Library is free software; you can redistribute it * and/or modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; eit...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/include/export.h
null
null
null
null
null
null
C
2026-05-04T18:59:46.914533
#if @HAVE_VISIBILITY@ && BUILDING_LIBICONV #define LIBICONV_DLL_EXPORTED __attribute__((__visibility__("default"))) #else #define LIBICONV_DLL_EXPORTED #endif
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/gnulib-local/lib/xmalloc.c
null
null
null
null
null
null
C
2026-05-04T18:59:47.017796
/* xmalloc.c -- malloc with out of memory checking Copyright (C) 1990-1996, 2000-2003, 2005-2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either vers...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.034464
/* ANSI-C code produced by gperf version 3.0.4 */ /* Command-line: gperf -m 10 lib/aliases.gperf */ /* Computed positions: -k'1,3-11,$' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ && (')' == 41) && ('*' == 42) && ('+' =...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_dos.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.364008
S(dos_0, "CP437", ei_cp437 ) S(dos_1, "IBM437", ei_cp437 ) S(dos_2, "437", ei_cp437 ) S(dos_3, "CSPC8CODEPAGE437", ei_cp437 ) S(dos_4, "CP737", ei_cp737 ) S(dos_5, "CP775", ei_cp775 ) S(dos_6, "IBM775", ei_cp775 ) S(dos_7, "CSPC775BALTIC", ei_cp775 ) S(dos_8, "CP852", ei_cp852 ) S(dos_9, "IBM852", e...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_extra.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.365999
S(extra_0, "EUC-JISX0213", ei_euc_jisx0213 ) S(extra_1, "EUC-JIS-2004", ei_euc_jisx0213 ) S(extra_2, "SHIFT_JISX0213", ei_shift_jisx0213 ) S(extra_3, "SHIFT_JIS-2004", ei_shift_jisx0213 ) S(extra_4, "ISO-2022-JP-3", ei_iso2022_jp3 ) S(extra_5, "ISO-2022-JP-2004", ei_iso2022_jp3 ) S(extra_6, "BIG5-2003", e...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_osf1_sysosf1.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.458402
S(osf1_0, "DEC-KANJI", ei_dec_kanji ) S(osf1_1, "DECKANJI", ei_dec_kanji ) S(osf1_2, "DEC-HANYU", ei_dec_hanyu ) S(osf1_3, "DECHANYU", ei_dec_hanyu )
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_syshpux.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.477839
/* ANSI-C code produced by gperf version 3.0.4 */ /* Command-line: gperf -m 10 lib/aliases_syshpux.gperf */ /* Computed positions: -k'1,3-11,$' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ && (')' == 41) && ('*' == 42) &...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_sysosf1.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.582616
/* ANSI-C code produced by gperf version 3.0.4 */ /* Command-line: gperf -m 10 lib/aliases_sysosf1.gperf */ /* Computed positions: -k'1,3-11,$' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ && (')' == 41) && ('*' == 42) &...
Simon-Leeeeeeeee/XCodeScanner
https://github.com/Simon-Leeeeeeeee/XCodeScanner
null
null
null
null
648
null
null
apache-2.0
null
null
null
null
null
null
null
zbar/src/main/jni/libiconv-1.15/lib/aliases_sysaix.h
null
null
null
null
null
null
C
2026-05-04T18:59:47.598614
/* ANSI-C code produced by gperf version 3.0.4 */ /* Command-line: gperf -m 10 lib/aliases_sysaix.gperf */ /* Computed positions: -k'1,3-11,$' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ && (')' == 41) && ('*' == 42) &&...