blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
268
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
816 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.31k
677M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
151 values
src_encoding
stringclasses
33 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
3
10.3M
extension
stringclasses
119 values
content
stringlengths
3
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
228
4df93ef673f7c48ba4453f49cd6336b4d25a0153
b488ef393c5f8459403c8ef0e3b9a44f58c8b29d
/bankers1.c
8322faf0ae9be22caeaa1a7b9634ed198835195f
[]
no_license
manas-shukl/Bankers-Algorithm-Implementation
a0d92c66c7ad4a6a2419583b48a8f627ff21ca1b
18780bcefd9e9a980d3106ec1baf8feb13b33338
refs/heads/master
2022-12-22T18:55:09.155639
2020-09-30T18:32:28
2020-09-30T18:32:28
300,016,415
0
0
null
2020-09-30T18:30:09
2020-09-30T18:30:08
null
UTF-8
C
false
false
3,151
c
/* Operating Systems Banker's Algorithm Date Created: 29th Aug,19 By : Madhur Chhajed */ #include <stdio.h> int m, n, i, j, al[10][10], max[10][10], av[10], need[10][10], temp, z, y, p, k; void main() { printf("\n Enter no of processes : "); scanf("%d", &m); // enter numbers of processes printf("\n Ente...
[ "noreply@github.com" ]
manas-shukl.noreply@github.com
f1df0545dd4edde26fea833229fcbee38fdf09ca
1e496313ba4761f221819e4bf5448ef8c93cdaa3
/list.c
e7a10449767a3cca10945a557f0b9382962b3bc7
[]
no_license
RafalWilinski/Interpreter
dd25fc3bc1ab649f390a6ace9f0254b30ecd4d35
363016841ad5dfe600b76c2fb58e6120c84fc22f
refs/heads/master
2021-01-10T16:07:24.881082
2016-02-28T21:07:56
2016-02-28T21:07:56
48,548,361
0
0
null
null
null
null
UTF-8
C
false
false
2,093
c
#include <stdlib.h> #include <string.h> #include <assert.h> #include "list.h" void list_new(generic_list *list, int elementSize, freeFunction freeFn) { assert(elementSize > 0); list->logicalLength = 0; list->elementSize = elementSize; list->head = list->tail = NULL; list->freeFn = freeFn; } void list_de...
[ "tho.ornee@gmail.com" ]
tho.ornee@gmail.com
ef544a634d1988b4963c0c98f6c1cbf167b3c3c3
a587058fdf68a24975d360385b868677eb808dc3
/Sysprg_day5/_exited.c
cbb0b776d491642a95fea00660842615ba0c5961
[]
no_license
HyunJungChoe/LinuxSysPrg2020
85e260becbf6dfe4274101e0c9f5b5a981525f9f
188f73ceb3dbe0dee35f27f9c7472071d06aafb8
refs/heads/master
2021-05-21T09:14:35.784233
2020-04-13T07:06:02
2020-04-13T07:06:02
252,597,364
0
0
null
null
null
null
UTF-8
C
false
false
92
c
#include<unistd.h> #include<stdio.h> int main() { printf("Good afternoon?"); _exit(0); }
[ "noreply@github.com" ]
HyunJungChoe.noreply@github.com
eab8df173cc51b622fc9729dd7a9ffac1c7ffbc8
d153de2407f635bbd2667a6b266354d532e80e85
/heclib/heclib_c/src/Utilities/convertDataArray.c
506ffea8ead30d8eccda4ddb7270d914bb6edc58
[ "MIT" ]
permissive
HydrologicEngineeringCenter/hec-dss
195845c6312f2d9fc508032b39179f457849ede1
8587bd5339ee9aa8519d1d0d17f3625419a63122
refs/heads/master
2023-08-30T11:56:27.416514
2023-08-22T19:06:25
2023-08-22T19:06:25
345,726,079
26
13
MIT
2023-09-13T23:01:51
2021-03-08T16:45:37
C
UTF-8
C
false
false
2,022
c
#include <stdio.h> #include "hecdssInternal.h" /** * Function: convertDataArray * * Use: Semi public * * Description: Converts an array of doubles to floats or an array of floats to doubles * * Declaration: void convertDataArray(int *dataIn, int *dataOut, int number, int dataInElementLength, int dataOutEleme...
[ "karl.l.tarbet@usace.army.mil" ]
karl.l.tarbet@usace.army.mil
c7834b96566a3022c919bc54a99cf7ad94db41ad
81e672074972d564558be7343460b7f22ec8ba17
/Kernel/include/string.h
bc486a08b316a3af70906e6d74583bf1845c3d78
[ "BSD-2-Clause" ]
permissive
VirtualSenseSystems/Lemon-OS
6c070112f75320eb420f3bcf0dc866a9bc649f61
6bd982494ae96716c29ea9ce12ab1467586b3e73
refs/heads/master
2022-11-28T17:14:57.167729
2020-07-31T10:26:02
2020-07-31T10:26:02
null
0
0
null
null
null
null
UTF-8
C
false
false
848
h
#pragma once #include <stddef.h> char* itoa(unsigned long long num, char* str, int base); extern "C" void* memset(void* src, int c, size_t count); extern "C" void *memcpy(void* dest, const void* src, size_t count); extern "C" int memcmp(const void *s1, const void *s2, size_t n); void memcpy_optimized(void* dest, vo...
[ "fidojj@hotmail.com" ]
fidojj@hotmail.com
cef5d6431f82991975f50132032ff7580bf96c55
3238c95e99350b3df271cae6de3b83dc71c17708
/cpsc256/Examples/Other_Examples/SumOrdering/main.c
7bb8311b3539d724015dc750627eb632aa297e9f
[]
no_license
brash99/CLionProjects
bb798c3d684cf3b7dc559e7b491c88a284d040bc
262da58b35dd81987f574494c4879d29d23a09a6
refs/heads/main
2023-09-03T20:12:06.010827
2023-08-31T21:26:50
2023-08-31T21:26:50
363,820,609
0
18
null
null
null
null
UTF-8
C
false
false
3,853
c
/* * CPSC 256 - C/C+ for Scientists and Engineers * Christopher Newport University * Department of Physics, Computer Science & Engineering */ /* * File: main.c * Author: brash * * Created on August 4, 2021, 10:02 AM */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <math.h> #include <...
[ "brash@jlab.org" ]
brash@jlab.org
959450e57f175cae9569c3b835b400e61d281948
ab48377f0d038b98b02d7656a823249643d87b7f
/C/Lesson7/crea/define.h
608b3f269205cb5eb669b364d4bb4697de5cf0e3
[]
no_license
pietropezzi/os-rep
8d69229ab94995e3b040144850982af5697fe702
f74a3805d79a68d2bddf9eea702a98c35f33796b
refs/heads/main
2023-02-17T08:08:04.641193
2021-01-10T19:10:37
2021-01-10T19:10:37
315,679,653
1
0
null
null
null
null
UTF-8
C
false
false
17
h
#define NUM 1000
[ "pietro.pezzi3@studio.unibo.it" ]
pietro.pezzi3@studio.unibo.it
f17a50480caa94c6fdab6f537bdc97fe1da3101a
4fc15ccac40536024440170354cfb420b8c0b921
/Microchip/PIC32CM-JH_DFP/1.0.72/PIC32CM-JH01/xc32/PIC32CM2532JH01100/startup_pic32cm2532jh01100.c
b8e57b27f103e2684fdab9f34c2dca05439468ed
[ "Apache-2.0" ]
permissive
dd-rrc-ps/dev_packs
332ada2d4e127d4b176305cc2149fd61b8ed4836
774a64e80f5f5ee6f54e1b55ee4cffe2762927bf
refs/heads/master
2023-03-12T17:38:20.424934
2021-02-23T21:01:56
2021-02-23T21:01:56
null
0
0
null
null
null
null
UTF-8
C
false
false
15,927
c
/** * \file * * \brief MPLAB(R) XC32 - Startup code for PIC32CM2532JH01100 * * Copyright (c) 2021 Microchip Technology Inc. * * \license_start * * \page License * * 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...
[ "thibaut.viard@microchip.com" ]
thibaut.viard@microchip.com
18a1bdaa02af946f83608461a0db32156ac9c354
05935f90b49f48fbaed5dd5db88d62114406f030
/C/1.c
480cc73c6199d020202d0584b2be29dd17288f7c
[]
no_license
sudopower/playground
1f12f84d857b9ffb9d4ea32c7104adc2bb6048c8
e24d1144bb59fa62785d60a26582efcabfd8c552
refs/heads/master
2021-06-29T19:35:03.450695
2020-10-16T21:27:30
2020-10-16T21:27:30
168,324,955
0
0
null
2019-02-01T06:17:11
2019-01-30T10:33:51
Makefile
UTF-8
C
false
false
132
c
#include<stdio.h> int main (){ char lang = 'c'; printf("I'm trying to print in %c language",toupper(lang)); return 0; }
[ "nkirandroid@gmail.com" ]
nkirandroid@gmail.com
c03b46cad4c1ad46c191a4688088e203de94957c
84c20bd988e095caa0183944adb3a740052a0d51
/Funciones/declarar_jaque_mate.h
14459d95477672cced4005621c29b0d85de3c804
[]
no_license
MartinIMR/Ajedrez2016
6875f184503766d049cf9c8595d0e3d48f499439
338765f3172c0084eff2187729101cadc77e762e
refs/heads/master
2020-06-17T04:39:24.231380
2016-11-29T02:16:36
2016-11-29T02:16:36
null
0
0
null
null
null
null
UTF-8
C
false
false
109
h
int declarar_jaque_mate (char tablero[8][8], char pieza_jaque, int coordenadas_pieza[2], int rey[2]);
[ "arturorivas61@yahoo.com" ]
arturorivas61@yahoo.com
a055ecf07c4f3bd51ad5deded837b4614943b6ab
1bc86d541a8273cdbadb851d295a3fa1e4402a0f
/tools/cert_create/include/tbb_key.h
cc927d1e55e257c6f914c3c229b1070a8aabc1c0
[ "BSD-3-Clause" ]
permissive
96boards/arm-trusted-firmware
8e25741713362b731478768e524b9784e49f7de5
7fb9b0e1bf90d167ba451fa3d1485ad07ca5c1da
refs/heads/hikey
2020-04-05T04:48:47.424838
2016-01-12T06:18:51
2016-01-12T06:18:51
30,957,485
16
23
null
2017-11-08T21:14:02
2015-02-18T08:23:36
C
UTF-8
C
false
false
1,900
h
/* * Copyright (c) 2015, ARM Limited and Contributors. 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 o...
[ "dan.handley@arm.com" ]
dan.handley@arm.com
00fb018f008dfa722e33373b5172b4508d0fbe82
85151a5b416f4de1c3552f654a25c30a46c5a275
/Tuto_Image_JNI_Cuda/INC_SYMLINK/EXT/storage_class.h
89492b8f92a72bc4096c970d3c7401790108e68e
[]
no_license
Kurokabe/GPU-Course
b1a89e5f7e8bcc316b433ddc42c296ded78e97f2
ae3e4461e8f08bc6283e041628191f4ff579c4c4
refs/heads/master
2020-09-05T18:48:27.881880
2019-11-29T19:19:10
2019-11-29T19:19:10
220,181,449
1
0
null
null
null
null
UTF-8
C
false
false
43
h
/usr/local/cuda/include/crt/storage_class.h
[ "farid.abdalla.13@gmail.com" ]
farid.abdalla.13@gmail.com
5acb084a4a83af601b9fefd9bcf1d4d42fea6045
68ac6ebca737b4b855a730d540478295f6cf1afd
/Introduction_to_Embedded_Systems/RTOS_test2/include/RTOS_config.h
6105458319ed5210577e255e14b24dbedb14707b
[]
no_license
Nafe3/stm32f103c8t6
2104700027c1e3aae301245ddea1280f72b50c9e
2fb64cc08df4eb91361d4f6ea52475fa9bac1134
refs/heads/master
2021-01-01T00:48:39.334662
2020-05-19T22:54:17
2020-05-19T22:54:17
239,102,379
1
0
null
null
null
null
UTF-8
C
false
false
143
h
#ifndef RTOS_CONFIG_H_ #define RTOS_CONFIG_H_ #define RTOS_TASKS_NUMBER ((u32)20) #define RTOS_PRELOAD_VALUE ((u32)1000000) #endif
[ "eng.mohamed.nafe3@gmail.com" ]
eng.mohamed.nafe3@gmail.com
36258682609dbde95b2b028d0e68630ee781afd9
d19ec663ece04192dfcf94c79dd6269d2738b4b3
/Software/Common/Libraries/u8g2/tools/font/build/single_font_files/u8g2_font_logisoso28_tf.c
affc00fd0f11c97fbc6a20302345564ab6197060
[ "MIT", "BSD-3-Clause", "CC-BY-SA-3.0", "LicenseRef-scancode-x11-adobe-dec", "BSD-2-Clause" ]
permissive
RobertGawron/DDSFunctionGenerator
1c579d4adf264067c4c64c3a1ebd2b2f69408c59
61d04e90cb750f3428319db6301d89e68d47794c
refs/heads/master
2021-10-08T07:19:49.728259
2021-08-27T20:33:38
2021-08-27T20:33:38
216,220,244
4
0
MIT
2021-08-15T18:07:26
2019-10-19T14:36:21
C
UTF-8
C
false
false
13,268
c
/* Fontname: -FreeType-Logisoso-Medium-R-Normal--40-400-72-72-P-49-ISO10646-1 Copyright: Created by Mathieu Gabiot with FontForge 2.0 (http://fontforge.sf.net) - Brussels - 2009 Glyphs: 224/527 BBX Build Mode: 0 */ const uint8_t u8g2_font_logisoso28_tf[4891] U8G2_FONT_SECTION("u8g2_font_logisoso28_tf") = "\3...
[ "robert_gawron@yahoo.fr" ]
robert_gawron@yahoo.fr
2b6713f654359954fc61d0d4eba4f3de4688af31
66ad784a3315e4163361de1637c53c75f697f5de
/v3/ext/asn1c/KeyHash.h
758e0d90fbb9724969a1fc77b4b70fe2a5f6ab86
[ "Apache-2.0", "LicenseRef-scancode-unknown", "LicenseRef-scancode-unknown-license-reference" ]
permissive
fotisl/zlint
d78f969494d9d68302fca88d35c9985dcb665eb8
6bd12988da7f11085e83f9d3bb0933df200d89f0
refs/heads/master
2021-12-02T21:26:03.576516
2021-10-28T16:49:40
2021-10-28T16:49:40
212,315,266
0
0
Apache-2.0
2019-10-02T10:53:32
2019-10-02T10:53:31
null
UTF-8
C
false
false
1,028
h
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "OCSP" * found in "asn1/rfc2560-OCSP.asn1" * `asn1c -S /home/fotisl/Projects/revlintsynt/asn1c/skeletons -pdu=all -fwide-types -fcompound-names` */ #ifndef _KeyHash_H_ #define _KeyHash_H_ #include <asn_application.h> /* Including e...
[ "fotisl@google.com" ]
fotisl@google.com
d6580fbf1956e29d700da1d37f0225c4818e89c9
a46e67fefe88f3313790843c6f4bdaf62872d0f1
/assu.c
777a6665e33a728c6f2aed4ea4d03bb65900c5e9
[]
no_license
muthumanic/c-pgm
d7bedac91bb729cb544394f27e2076ef12d14421
4c325015f5d76aabaf3880f980abe34afbc5ec8f
refs/heads/master
2021-05-10T12:35:27.756387
2018-03-16T10:35:54
2018-03-16T10:35:54
118,445,055
0
0
null
null
null
null
UTF-8
C
false
false
130
c
#include <stdio.h> #include<conio.h> void main() {int celcius; scanf("%d",&celcius); printf("%d",celcius+273); getch(); }
[ "noreply@github.com" ]
muthumanic.noreply@github.com
79ddfa0c7cf752571bc411e75520baeeb9002a71
89005d930aaf55b448795e35edcc47dbf78c431a
/splash2/splash2-base/codes/apps/water-nsquared/kineti.c
1b0ca823c1daea34c24949ff191a698cd84627f0
[ "LicenseRef-scancode-public-domain" ]
permissive
tsealex/ffwd
34daaa3a81b9f50c30396f319a11cbc755eabdad
634c57547f85d739625a1160c7a4f26f0cee4223
refs/heads/master
2020-05-03T11:38:52.354805
2019-04-21T13:42:59
2019-04-21T13:42:59
178,605,693
1
1
null
2019-03-30T20:02:27
2019-03-30T20:02:26
null
UTF-8
C
false
false
2,246
c
/*************************************************************************/ /* */ /* Copyright (c) 1994 Stanford University */ /* */ /* All rights ...
[ "srogha2@uic.edu" ]
srogha2@uic.edu
e29eef3ba0fed9c75808cf759b69ec5035f6de05
662df72f2dc8e772a44733c8bcfdb9610ae20648
/6_time_base_10micro/Src/it.c
ffeb0aef3e3ddddc088710ae2b1690e49f17a67c
[ "MIT" ]
permissive
zelkhachin/STM32f446xx_drivers_2
dc6ddce53308af4716f85afc3d9ae836a995fc00
bbf72c7c3dd49f7dcb7fcf9b2c1b851cf679d1bc
refs/heads/master
2022-12-09T04:31:42.742986
2020-08-21T14:37:42
2020-08-21T14:37:42
null
0
0
null
null
null
null
UTF-8
C
false
false
408
c
/** ****************************************************************************** * @file it.c * @author zelkhachin ****************************************************************************** */ #include "main.h" extern TIM_HandleTypeDef htimer6; void SysTick_Handler (void) { HAL_IncTick(); HAL_SYSTI...
[ "zakariaelkhachin@gmail.com" ]
zakariaelkhachin@gmail.com
39daa39d045e383624b8568fb612f8835fd6f786
411cb8f89605603e8941b088892f6d41b7da1481
/malloc/src/free.c
756a240c61ac252573707d4691698bb9b5027762
[]
no_license
MoutonSanglant/42-projects
d957ed122602472faea67ca4cde48f12af0888f0
70f4958e5aae3c616c264b03771caa5fa24edfe1
refs/heads/master
2022-07-17T05:57:12.200267
2020-05-25T07:12:19
2020-05-25T07:12:19
55,406,807
0
0
null
null
null
null
UTF-8
C
false
false
968
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* free.c :+: :+: :+: ...
[ "defresne.thierry@gmail.com" ]
defresne.thierry@gmail.com
71d7c590a3cb7a4fd18cc5a18a036badf3727b57
27bcd5c9ded70102540c0ccd03f3e2b281dbf58c
/mudlib/d/faeleen/rooms/ciudad/MCITY_39.c
57d38deb6bf96ffded4cfef00b7be7008272eeec
[]
no_license
unleashed/ninetears
57fdc71fd651b3ff95e5e7c14b0566729584e006
4edd22c75e3fa99be4b5820300491c6b62e06085
refs/heads/master
2020-07-14T04:25:56.302027
2019-08-29T18:46:57
2019-08-29T18:46:57
205,225,438
1
0
null
null
null
null
UTF-8
C
false
false
219
c
//Kryger 2003// inherit "/d/faeleen/handlers/base_handler_cf.c"; #include "../path.h" void setup() { habitacion(1); add_exit("norte",CIUDAD"MCITY_37.c","standard"); add_exit("sur",CIUDAD"MCITY_41.c","standard"); }
[ "amr@redhat.com" ]
amr@redhat.com
3d94e060fc6c4fcbf920433f839b3cb19ca65c41
ca95807245ad8af5d00e7315f0efe6037f5d8b1d
/SAME54_Oryx_ATECC608/cyclone_tcp/mibs/tcp_mib_module.h
f6751b6fef7d6fa457bcdae90c9bc575194e5632
[]
no_license
HaiQNguyen/Oryx_608_Porting
7ebb09094277e99dbe8b5cbebdff1b7f0254981a
bc5fc3a70c1e734e3351a892b33c3fe395bdbf28
refs/heads/master
2020-07-12T02:19:39.576663
2019-08-27T11:44:38
2019-08-27T11:44:38
204,691,840
1
0
null
null
null
null
UTF-8
C
false
false
3,143
h
/** * @file tcp_mib_module.h * @brief TCP MIB module * * @section License * * SPDX-License-Identifier: GPL-2.0-or-later * * Copyright (C) 2010-2019 Oryx Embedded SARL. All rights reserved. * * This file is part of CycloneTCP Open. * * This program is free software; you can redistribute it and/or * modify i...
[ "qnguyen@arroweurope.com" ]
qnguyen@arroweurope.com
5e227702d3288d5609f19a10461c554a7b8eeea2
32b9507ac2afe0d43b475e302efbe69e60d5b696
/MatrixMultiply/sgemm-small-backup.c
e10c801d1bcec5cf1ecc9ef8cf7e7de65ec14754
[ "MIT" ]
permissive
jasonaibrahim/AcademicWorks
2dbf5e8a3f6e762acf96340e89f0a767f6e531c4
4c3e75f48bdafa02fabb551beb6ebf2fea871238
refs/heads/main
2023-04-05T09:15:07.279990
2021-04-18T00:18:54
2021-04-18T00:18:54
359,007,937
0
0
null
null
null
null
UTF-8
C
false
false
3,206
c
#include <stdio.h> #include <stdlib.h> #include <emmintrin.h> #include <math.h> #include <float.h> #include <string.h> #define BLOCKSIZE 20 float *matrix_pad(int m, int n, int z, float *A); void matrix_unpad(int m, int z, float *Cn, float *C); void naive( int m, int n, float *A,float *C); void mm( int n, float *An, f...
[ "jasonaibrahim@gmail.com" ]
jasonaibrahim@gmail.com
45edfdf1e415d1ed40023830733f516dcedef630
5b7412a3b1a52215b37ae4372eb77f5517b97bdb
/LaseriOSBuildv1/Classes/Native/mscorlib_System_IO_MonoFileType.h
41325ef0e6b04d6242d12178eab83ff2c125e9d9
[]
no_license
MishMick/Laser-Defender
54dd553143c16fa3e56f7c0e225e79d0832c2bb6
db796e2b197a0628bac5ddc7927264b834be00de
refs/heads/master
2021-05-04T10:20:55.305230
2016-01-12T09:55:48
2016-01-12T09:55:48
43,044,445
0
0
null
2018-10-17T07:09:24
2015-09-24T04:19:01
C++
UTF-8
C
false
false
287
h
#pragma once #include <stdint.h> // System.Enum #include "mscorlib_System_Enum.h" // System.IO.MonoFileType #include "mscorlib_System_IO_MonoFileType.h" // System.IO.MonoFileType struct MonoFileType_t1231 { // System.Int32 System.IO.MonoFileType::value__ int32_t ___value___1; };
[ "mishallovic@gmail.com" ]
mishallovic@gmail.com
8c7a2c86225ea64848a14fecdf2623260cee4ef8
29aae96691a258ab0f5155820671343c4bf2872d
/STM32CubeF4/Projects/STM32F401RE-Nucleo/Examples/HAL/HAL_TimeBase_RTC_ALARM/Inc/stm32f4xx_hal_conf.h
4e19a2c15adfb4cbd56c6f01b4c902c314acb0c1
[ "BSD-2-Clause" ]
permissive
b264/crystal_stm32
60a225bda5b2c9baedee7290adb3f0fc4c53c3ca
3720064a141a04d4c7a528dbf5603141e0198f47
refs/heads/master
2021-04-27T18:31:51.235187
2017-11-03T00:12:39
2017-11-03T00:12:39
null
0
0
null
null
null
null
UTF-8
C
false
false
12,940
h
/** ****************************************************************************** * @file stm32f4xx_hal_conf.h * @author MCD Application Team * @brief HAL configuration file. ****************************************************************************** * @attention * * <h2><center>&copy; COPYRI...
[ "aurimas@niekis.lt" ]
aurimas@niekis.lt
a4de0b1d4df427a5b2064a057391b3c79b8390c1
cfe69fc556729bdecf2118fa5bc329343c42ed80
/10.0.10240.16384/ntoskrnl/Functions/sub_54F9E8.c
e0cf49015adb4a3d825a1e9ff058dcc759108055
[]
no_license
Myprivateclonelibrary/W10M_unedited-decomp
8e5ec89a20e634ffc53457a40b0fd6d8a9e1757a
67b05851a3e262ff8a5d11ee50db34f28c350f16
refs/heads/main
2023-08-31T06:00:37.303105
2021-05-15T23:53:23
2021-05-15T23:53:23
null
0
0
null
null
null
null
UTF-8
C
false
false
177
c
// sub_54F9E8 void __fastcall sub_54F9E8(int a1, int a2, void (__fastcall *a3)(_DWORD, int)) { int v3; // r5 a3(*(_DWORD *)(v3 + 120), v3 + 128); JUMPOUT(0x4EAC64); }
[ "64583248+Empyreal96@users.noreply.github.com" ]
64583248+Empyreal96@users.noreply.github.com
0beb576201b28902a7701e35c21a7e517fb30e74
381e836369a8f5028facba28c426990eda121f2a
/42Project_Fillit/libft/ft_lstnew.c
b32d53bce9c47c8b71c84c3dd7584c88d569e792
[]
no_license
emiller521/42Cadet-Projects
d19517d03c38e4331a520459925284af48b12435
4c1d7831ff188988c3af19b4e6958da80dd473d1
refs/heads/master
2023-02-27T04:52:57.454634
2021-02-06T03:32:37
2021-02-06T03:32:37
336,444,826
1
0
null
null
null
null
UTF-8
C
false
false
1,349
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstnew.c :+: :+: :+: ...
[ "emiller@Elijahs-MacBook-Pro.local" ]
emiller@Elijahs-MacBook-Pro.local
9d4f826707a5ae0b2f9d971a724e5a6faf120086
aab44ef0c655bb422b7d0081ead0e7cf53837d14
/Functions/ft_isascii.c
47ec8f99c76efb1c737964c45a7f3ae02ff8a9be
[]
no_license
Sombre-Osmoze/libft
c14d2d53b3e10bd4f10fb17d53338cc7b46fced0
729208ee07014f5a69b91bc39f2453b89d49314e
refs/heads/master
2021-06-24T07:13:18.654832
2019-04-25T01:30:00
2019-04-25T01:30:00
109,871,150
1
0
null
null
null
null
UTF-8
C
false
false
970
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: ...
[ "mflorent@student.42.fr" ]
mflorent@student.42.fr
d86ddd28a0034be08fa1e64e284917ca6bfa2e24
242df0938660136f81b200e072954b15929862e5
/strings/test.c
dad7216e32be69c00fddbde002db6d8433acd0e2
[]
no_license
noslen-dev/IP-1-Semestre-ISEC
e4d3b2a9d5045c8f85419cf922b10065c3647602
8324a68767aa110574d82de53d94119133605666
refs/heads/main
2023-03-12T13:11:28.242058
2021-02-28T18:11:04
2021-02-28T18:11:04
339,504,856
1
0
null
null
null
null
UTF-8
C
false
false
613
c
#include <stdio.h> #include <string.h> #include <ctype.h> #define TAMFRASE 100 #define TAMPAL 100 int main(){ int i,j,cnt,pos,res,logic,index; char s[TAMFRASE], aux[TAMFRASE]; printf("Digite uma frase: "); gets(s); printf("Digite uma frase: "); gets(aux); for(i=0,res=1; i<strlen(s) && res;++i){ for(; s...
[ "noreply@github.com" ]
noslen-dev.noreply@github.com
4537275b7d19c995b8967db6b972a8b0ff649cf4
9476bd5d59554c0f9d1fb8ccc9688da384bbc5ff
/FTP/server/src/checkpasswd.c
bd6894025feee3bc0e628fbe7e2605a529535f87
[]
no_license
luodiaolaunch/FTP
f6c142b9367119e1831454ba189a1a415cb741ac
283bb056d033717b31300a2e1bc9d6248dea7c61
refs/heads/master
2021-01-10T07:41:42.295630
2016-03-03T04:21:46
2016-03-03T04:21:46
52,655,737
0
0
null
null
null
null
UTF-8
C
false
false
990
c
#include "head.h" int check_passwd(int sockfd, char *usr_buf) { int renum; char usr_name[USR_NAME_LEN] = {0}; char pwd_buf[PASSWD_LEN] = {0}; struct spwd *sp; char salt[512] = {0}; char *pcrypt; int ret; //获取客户端用户名密码 ret = recv(sockfd,(char*) &renum, sizeof(int), 0); if(ret == 0) return -2; ret = recv(so...
[ "547897049@qq.com" ]
547897049@qq.com
0ef5faf823285382ddeea71e7aea7d102790621b
f0dfd88459d5aa2f19ab5ee1fbc993952cb37332
/sys/net80211/ieee80211.c
d5a2cc714530e15997e8e0ce52ce3e56eb2cdefb
[]
no_license
radixo/openbsd-src
5f93c09735d519689ffc0c5144d05abfeaacf82c
2554c092cef615cba187243a9e2fe6e943ef6248
refs/heads/master
2021-01-10T21:48:43.347196
2015-12-04T02:34:41
2015-12-04T02:34:41
41,678,666
0
0
null
null
null
null
UTF-8
C
false
false
30,687
c
/* $OpenBSD: ieee80211.c,v 1.50 2015/11/15 12:34:07 stsp Exp $ */ /* $NetBSD: ieee80211.c,v 1.19 2004/06/06 05:45:29 dyoung Exp $ */ /*- * Copyright (c) 2001 Atsushi Onoe * Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting * All rights reserved. * * Redistribution and use in source and binary forms, with or ...
[ "wsouzant@gmail.com" ]
wsouzant@gmail.com
d4f0ed5ea74729935cf2ce49c7c0bb62093c7190
6d7d1557133d2f85037b0b72e04b57844b5065dd
/HW6/ldev.c
d734133e8a88b746393a3e0629801054ee22dc01
[]
no_license
k0nen/CSED353-Homeworks
f1799d4fd49f11b82f58aafce9aada0de18fda7d
258b406f345105f6f13785f032aa43c14983a041
refs/heads/master
2021-04-09T11:01:59.535186
2018-05-25T13:02:31
2018-05-25T13:02:31
125,484,351
0
0
null
null
null
null
UTF-8
C
false
false
1,544
c
/* ldev.c Martin Casado http://yuba.stanford.edu/~casado/pcap/section1.html To compile: >gcc ldev.c -lpcap Looks for an interface, and lists the network ip and mask associated with that interface. */ #include <stdio.h> #include <stdlib.h> #include <pcap.h> /* GIMME a libpcap plz! */ #include <errno.h> #i...
[ "shmyung@postech.ac.kr" ]
shmyung@postech.ac.kr
5d5ee68c732e3139f2e47d92956db5c9bedfdc8a
e9645b959219f18912bf0d9255641c5e7977131a
/libs/libmaumau/include/stddef.h
f21323d0e3e3e13d3fe84246a335ae86e8390d6c
[]
no_license
ProgrammNoob/NandOS
d2806ac88e133331c635ebc027346b771d5bfbe6
cac25c2211c3465c24578dfa91b445a66bcf7a15
refs/heads/master
2021-01-18T17:00:34.994261
2010-07-08T09:55:10
2010-07-08T09:55:10
null
0
0
null
null
null
null
UTF-8
C
false
false
76
h
#ifndef STDLIB_H #define STDLIB_H typedef signed int ptrdiff_t #endif
[ "Christian.Klahn@live.de" ]
Christian.Klahn@live.de
0fb9186ad794d72f4e46323fa6c9e34befd365e2
dd5e1c345ac285a24fd361ca3842c456754665eb
/NORDIC_SDK/components/libraries/atomic/nrf_atomic.c
8d1609f4eb65d5781b8ca6910d4e855ce0b0fd68
[ "Apache-2.0" ]
permissive
ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC
e68b2822fe42d3922c1f639cd12dba4feb14e237
69ee04bdff4871cb5dbf265e82e4831155352f6d
refs/heads/master
2022-12-07T08:44:31.451296
2022-11-22T12:07:59
2022-11-22T12:07:59
162,685,557
74
51
Apache-2.0
2020-03-08T10:26:09
2018-12-21T08:08:24
C
UTF-8
C
false
false
12,775
c
/** * Copyright (c) 2018 - 2018, Nordic Semiconductor ASA * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice,...
[ "450547566@qq.com" ]
450547566@qq.com
bca0b6c102c0597015d1e98e9ae68025a118617d
61510106c0ee0abc6ef733ab78bc87445a7c5622
/TetriPic-tema3/task1.c
48afb8f518b1ffa15a3b6ee8af68a6e1d2d7d544
[]
no_license
ioanarusaldas/Programarea-Calculatoarelor
e28dddfd1c43f739c90e57331aef9dfbad684691
b8ec9adfc40a58cdba1a63224f1c7cf40e416755
refs/heads/master
2022-12-18T09:01:34.323597
2020-09-18T15:19:44
2020-09-18T15:19:44
296,339,286
1
0
null
null
null
null
UTF-8
C
false
false
8,156
c
//Savu Ioana Rusalda //315CB #include <stdio.h> #include <stdint.h> #include <string.h> #include <malloc.h> #include "bmp_header.h" // functia create_bmp seteaza fiecare camp din headerconform cerintei bitmap* create_bmp(int height, int width){ int line_size; unsigned long _pixelbytesize; line_size = width ...
[ "ioanarusaldas@yahoo.com" ]
ioanarusaldas@yahoo.com
299941115860fac31f7527c614487aada11a4dba
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/mips/math-emu/dp_scalb.c
845e2e2726c0ed7df91229fd054ba5b50952c999
[]
no_license
weilaidb/PythonExample
b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466
798bf1bdfdf7594f528788c4df02f79f0f7827ce
refs/heads/master
2021-01-12T13:56:19.346041
2017-07-22T16:30:33
2017-07-22T16:30:33
68,925,741
4
2
null
null
null
null
UTF-8
C
false
false
92
c
ieee754dp ieee754dp_scalb(ieee754dp x, int n) ieee754dp ieee754dp_ldexp(ieee754dp x, int n)
[ "weilaidb@localhost.localdomain" ]
weilaidb@localhost.localdomain
05ca4a6651edd2e0676c4b3bb7d927bcbedde70b
cac711406faf321c8e3c7b0fcabfc07eba18a213
/xmlrpc-c/lib/abyss/src/conn.h
1282f436008984b2dd7172f96231fb8a4dadaa1a
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "ISC" ]
permissive
arssivka/naomech
5ecf4b9e21030f99958b3f4719ecb96a9f3633ee
678e270d388498ae888b4f945b3753e21bf5ad5a
refs/heads/master
2021-01-21T04:37:25.717230
2016-07-19T17:22:02
2016-07-19T17:22:02
44,099,775
3
0
null
null
null
null
UTF-8
C
false
false
3,655
h
#ifndef CONN_H_INCLUDED #define CONN_H_INCLUDED #include "bool.h" #include "xmlrpc-c/abyss.h" #include "thread.h" struct TFile; #define BUFFER_SIZE 4096 struct _TConn { struct _TConn *nextOutstandingP; /* Link to the next connection in the list of outstanding connections */ TServer *server; ...
[ "arssivka@yandex.ru" ]
arssivka@yandex.ru
ce2629fdf36ac3387cec30869d2bc275e2a15551
6a26a6a254d667ca10bb4633b45f005e52b29325
/src/blas/vsctrz.c
728d1f92246d1a9695fe807b0374f60a4a8ea967
[ "MIT" ]
permissive
jiverson002/efika-core
cd2cc7e9e258cc676905f3221b5c415f20bd50f3
0dadef1f93e0ec5e622789323b519d181abc5b55
refs/heads/master
2023-01-31T12:58:52.809717
2020-12-12T22:25:57
2020-12-12T22:25:57
249,284,047
0
0
null
null
null
null
UTF-8
C
false
false
487
c
/* SPDX-License-Identifier: MIT */ #include "efika/core/blas.h" /*----------------------------------------------------------------------------*/ /*! Zeros the corresponding values of a compressed sparse vector in full storage * form. */ /*----------------------------------------------------------------------------*/ ...
[ "jiverson002@csbsju.edu" ]
jiverson002@csbsju.edu
ae97364a86771d83fb8a85d71e6f304b968f9ac9
bee45e8e68113fc4060e72838d3bd58f65813c7f
/src/mca/prm/base/prm_base_select.c
35d43726ce5e7f285a3e838502a21ab7cc90166e
[ "BSD-3-Clause-Open-MPI" ]
permissive
junghans/openpmix
90e7ed2d0a93851121f1a7cf145d08d78bc098b9
e4a27268cc2916577ab0bbeb23536d0b79842be6
refs/heads/master
2022-11-26T01:37:09.990546
2020-07-31T18:06:07
2020-07-31T18:06:07
285,120,140
0
0
NOASSERTION
2020-08-04T23:00:34
2020-08-04T23:00:33
null
UTF-8
C
false
false
4,738
c
/* * Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. * Copyright (c) 2004-2005 The University of Tennessee and The University * of Tennessee Resea...
[ "rhc@pmix.org" ]
rhc@pmix.org
785dfae49740582b2169f1fe73e34df48eabd383
4a7d2502d53c5402ccef085d1c0dcf46f911860f
/SPIway/delay_x.h
de9107a18a21c66301f74d6f8600ac0fbc6d2b17
[]
no_license
hjudges/NORway
50e6bf06466ef8d650b784d2c9774a579341571e
35aa5a66edadbad22bc7ab996d54c7bb792ec72f
refs/heads/master
2023-04-08T03:09:06.300419
2023-02-04T22:37:15
2023-02-04T22:37:15
2,637,087
107
67
null
2023-03-21T22:58:25
2011-10-24T15:31:28
C
UTF-8
C
false
false
11,257
h
/* Copyright (c) 2005, Hans-Juergen Heinrichs 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 co...
[ "judges@eEcho.com" ]
judges@eEcho.com
f8e45f1078fc1048d15ae7d6dd185841adfeb174
5c255f911786e984286b1f7a4e6091a68419d049
/code/3120d0d8-674c-4fa8-9cee-8f0d1f6f6482.c
dbddf7d256a3df7e52a19920bcfd5638c50bb488
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
249
c
#include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = i/j; l = l/j; l = l%j; l = i-j; k = k-j*i; printf("vulnerability"); printf("%d\n",l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
63d06149dbeba854ff429b79d189b264fb0a9631
f7c91a3a3871a4a8033c3a8b6d71b3f3ff491738
/srcs/check_neighborhood.c
2e2a6a888c0490091324c2a603841a1b9da43030
[]
no_license
hugs42/cub3D_Linux
5491744c4ac42ae66779c23a35617ba2370a61eb
dd41eafcb2ac54fecc7c973b0644a63cdb8b2898
refs/heads/master
2023-04-23T17:41:14.591479
2021-04-14T09:52:23
2021-04-14T09:52:23
357,224,938
0
0
null
null
null
null
UTF-8
C
false
false
1,943
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* check_neighborhood.c :+: :+: :+: ...
[ "hugsbord@student.42.fr" ]
hugsbord@student.42.fr
71c54609b80ec3d88805c729d51e0828a07e1db6
1b036101506ec7a043b85be5fd7c66c05d4dc5ca
/Source/timer.c
14deba880a14c51655a4636370ab64a530f17e5d
[]
no_license
linuxxunil/micro-quadcopter
150fc5ed56fb0d4e21837c24ddbcda53be667dd4
d7cc817255a263e81b09b44b84e7109b5d53857f
refs/heads/master
2021-01-02T22:31:55.635294
2013-12-16T08:08:03
2013-12-16T08:08:07
null
0
0
null
null
null
null
UTF-8
C
false
false
1,757
c
#include "stm32f10x_it.h" #include "FreeRTOS.h" #include "task.h" #include "queue.h" #include "timers.h" /* The set frequency of the interrupt. Deviations from this are measured as the jitter. */ #define timerINTERRUPT_FREQUENCY ( ( unsigned portSHORT ) 20000 ) /* The expected time between each of the timer interru...
[ "hsiao.jung.lin@gmail.com" ]
hsiao.jung.lin@gmail.com
37b049095363e15898e66b49b616e85ce8930177
bc949cbcded25afc8511d07c8d86509d5746b2a8
/dataset/478.c
c35237c0e89cafd149a65864974f395d6bc6e01d
[]
no_license
hqjenny/CSmith_random_pgm
52aa1face59749a9d0656fc4088f6f921aac2dab
0ebf41b85201cbe791a13304cdb45e22504f0ce7
refs/heads/master
2023-08-17T23:28:24.519500
2021-09-15T19:55:23
2021-09-15T19:55:23
406,904,982
1
0
null
null
null
null
UTF-8
C
false
false
4,045
c
/* * This is a RANDOMLY GENERATED PROGRAM. * * Generator: csmith 2.2.0 * Git version: dcef523 * Options: --no-structs --no-pointers --no-math64 --max-funcs 4 --no-unions --output 478.c * Seed: 2688798568 */ #include "csmith.h" static long __undefined; /* --- Struct/Union Declarations --- */ /* --- GLO...
[ "hqjenny@hotmail.com" ]
hqjenny@hotmail.com
2c14f9c56a1e4212ddd391415c7916a1893d3896
d0d059812cfc349dea02bb1ea5b67ef8b8df37da
/contests/31295_contest2/walkslengthn.c
2a84dadd90fae5c4ab0a02b5dfceae415cbf5224
[]
no_license
kevinalh/algoritmia
2223e49c0edaf35e773d40035b8fdb0455237878
055439f503cd966e9ff7ac14787bf96980e9e6e0
refs/heads/master
2020-05-24T09:42:58.986369
2017-07-17T17:01:12
2017-07-17T17:01:12
84,844,196
2
0
null
null
null
null
UTF-8
C
false
false
4,960
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXN 11 #define MAXWALKS 6 void productoMatricial(int aN[MAXN][MAXN]); int findWalk(int start, int end, int currentwalk[MAXN], int currentlen); int incluido(int node, int currentwalk[MAXN], int currentlen); void imprimirMatriz(int matriz[MAXN][MAXN], ...
[ "kevinalh@hotmail.com" ]
kevinalh@hotmail.com
6d3ea0677d798804d8cc34464c3bd60a74f32d5e
290fd724aa7403f16d3c96682a837e392ae1e87d
/third_party/google/protobuf/compiler/java/java_primitive_field.h
672b87dd47761ae31943102b13dd88e1d6e10851
[]
no_license
westfly/aresroad
e129546b11a68d91f7f81858a674f3ede719e9a2
430332cd0fc1be3a876c807e3c39735f0859c012
refs/heads/master
2020-04-16T00:16:16.480049
2013-09-30T03:27:16
2013-09-30T03:27:16
null
0
0
null
null
null
null
UTF-8
C
false
false
556
h
// DO NOT EDIT! Geneated by link_protobuf_headers.sh, edit the script if necessary. // Copyright (c) 2011, The Blade Authors. // All rights reserved. // // Created: 11/22/11 // Description: Link to protobuf source header file #ifndef THIRDPARTY_GOOGLE_PROTOBUF_COMPILER_JAVA_JAVA_PRIMITIVE_FIELD_H #define THIRDPARTY_GO...
[ "yweiyun@163.com" ]
yweiyun@163.com
ce4d2e83213218adecbca2d8baacf33f21c28310
f2d621257e6e60cbca71a4cf27785e9419846c01
/piscine/stupid/work/ex04/ft_sort_params.c
01f892cc1ad6871ab7549a655b7b26973267e63a
[]
no_license
IllgamhoDuck/42SiliconValley
3253d3961c956d3eafffc7e21e6c12a930211269
e86c7927ce73840eb98f1b4232fffc96c678e8ff
refs/heads/master
2021-07-12T18:45:44.880009
2020-05-20T04:08:41
2020-05-20T04:08:41
134,135,444
3
0
null
null
null
null
UTF-8
C
false
false
1,688
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_sort_params.c :+: :+: :+: ...
[ "hypark@e1z1r3p31.42.us.org" ]
hypark@e1z1r3p31.42.us.org
f10392c7a4367ed851a35705eaca8a752e7f671f
532a671d5156365ca7aa8f74a0b736c3f290e380
/Ch06/编程题/17.c
a5446f1fea39d98afdc2add88725923e0f4dfcda
[]
no_license
zwzky/C-Primer-Plus
1917f403ff63705e0fdfbc50d215c2959e9ebc6f
56a8c77fbafff935e75ba05b000ac0336180847a
refs/heads/master
2022-12-28T22:34:01.364878
2020-09-29T16:51:34
2020-09-29T16:51:34
291,493,961
1
0
null
null
null
null
UTF-8
C
false
false
407
c
/*17.Chuckie Lucky赢得了100万美元(税后),他把奖金存入年利率8%的 * 账户。在每年的最后一天, Chuckie取出10万美元。编写一个程序,计算多 * 少年后Chuckie会取完账户的钱? */ #include <stdio.h> int main(void) { double money = 1000000; int i = 0; while( money > 0){ money *= 1.08; money -= 100000; i++; } printf("%d\n", i); return 0; }
[ "zwz1689458834@gmail.com" ]
zwz1689458834@gmail.com
4c1d0a583406c11263352889d8bd91789b86abd3
aa29916c8427cccb247274244151b6ae1cc90345
/Kboot/src/bootloader_hi/gpiohs.c
273e23b30bd57e06aef550568cc5394592f6f340
[]
no_license
webduino-cn/MicroPython_K210_LoBo
76e01fa5f603783c29de08c470d8a7281704c502
8398b4bce2593e00f55da5d75c4714d28696ca8c
refs/heads/master
2022-06-27T00:19:41.162425
2020-05-05T12:05:50
2020-05-07T01:22:28
258,111,198
3
0
null
2020-04-23T06:10:39
2020-04-23T06:10:38
null
UTF-8
C
false
false
2,838
c
/* Copyright 2018 Canaan Inc. * * 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 applicable law or agreed to in ...
[ "loboris@gmail.com" ]
loboris@gmail.com
7243c6f51908284297da8181b2fb6116aca5910a
88bb5d5d01507cdab698087f03b669ec2f336663
/third_partybak/lasso-2.3.6/lasso/saml-2.0/ecpprivate.h
306c7edc4fda63a0223d0bff91822f2ea67471a2
[]
no_license
flaght/mylib
419d246e2d8e9b8acbc9a607d236cb2c2c32eb2c
389d61e76ee8a9ca4eaad86421bed86a6bc8a97f
refs/heads/master
2021-06-18T17:21:00.207043
2019-07-14T06:16:21
2019-07-14T06:16:21
51,120,734
0
3
null
2017-08-21T08:41:12
2016-02-05T02:21:52
C++
UTF-8
C
false
false
1,236
h
/* $Id$ * * Lasso - A free implementation of the Liberty Alliance specifications. * * Copyright (C) 2004-2007 Entr'ouvert * http://lasso.entrouvert.org * * Authors: See AUTHORS file in top-level directory. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU...
[ "kerry@miglab.com" ]
kerry@miglab.com
4d2e3f8350235c112f5602c772e558c3171c5c53
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant105725_tree.c
8f2751d37f029c95639bc150170b0575808cc183
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
249,320
c
/* Language-independent node constructors for parse phase of GNU compiler. Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or mod...
[ "agroce@gmail.com" ]
agroce@gmail.com
95afd71103b70d93053ce948e851346329203c3d
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/ata/extr_libata-scsi.c_ata_scsi_em_message_show.c
8e746bc63f986f9754830e397e41fe0fff9d12bf
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,251
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
59679235066db65fb5ee8dba78ae966cbd4e9027
e0f55f78a0a012573370b9520288cd4ccd216239
/C/C/homework/niehengyang/memory_gl/free.c
c24ce5f280fad3c29c81288c15067676b4d9d064
[]
no_license
lxf2git/quectel_work
2ee2811ed82d4b147f39361af89929f6f8fc6b18
92acb485689d3b1111e33dc13862cc3fe4974b16
refs/heads/master
2021-06-23T22:29:46.032931
2020-10-26T16:14:12
2020-10-26T16:14:12
145,352,846
0
0
null
null
null
null
UTF-8
C
false
false
931
c
#include"main.h" void cut_free(pMem p5,pRec p4) { p5->next->prev=p5->prev; p5->prev->next=p5->next; p5->next=p5; p5->prev=p5; } void link_free(pMem p5,pMem ptmp) { ptmp->prev->next=p5; p5->prev=ptmp->prev; p5->next=ptmp; ptmp->prev=p5; } void find_free(pMem pHead,pRec p4) { pMem p5=(p4->pdata)->next; pMem...
[ "robin.lu@quectel.com" ]
robin.lu@quectel.com
66be20d485c2d4f1c449d4c73e5a548efa043ac0
9ab451e1c43db4b27b151ff20dc56eaca010513c
/Chapter 1/04_practice.c
512c9ebe30fe48c968cafac0134c8e286cf5feae
[]
no_license
jiveshs98/C-Programming-Practice
a8b80dd00ba48a5c06133d201543f33fe16eda25
41837f4b9288926d769d1dddcf7f62c9350198fb
refs/heads/master
2023-07-19T21:11:56.497856
2021-08-29T14:58:52
2021-08-29T14:58:52
367,894,669
0
0
null
null
null
null
UTF-8
C
false
false
216
c
#include<stdio.h> int main(){ int principal=100, rate=4, years=1; int simpleInterest = (principal * rate * years)/100; printf("The value of simple Interest is %d", simpleInterest); return 0; }
[ "jiveshs98@hotmail.com" ]
jiveshs98@hotmail.com
248fc5fdf037868d54493dbaa2e0159466e0d9f4
b05dba64f04eb8815996679743342d90e94c1447
/libft/ft_strequ.c
aad3127c194ae592aa308e8c44b1a9c4a046a1bd
[]
no_license
mperronc/fillit
bf6c9757254d21e3f8b30c307c6aaa6773b1de94
3b61f3a1ccc82ff1c3aced436fc2c812b034a40e
refs/heads/master
2021-07-08T15:04:04.429832
2017-10-06T19:37:17
2017-10-06T19:37:17
106,035,374
0
0
null
null
null
null
UTF-8
C
false
false
1,019
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strequ.c :+: :+: :+: ...
[ "dboudy@e3r8p6.42.fr" ]
dboudy@e3r8p6.42.fr
62d3693eff5ea2856d5a33585175d24ee14e9476
045b00d8453c2e1c88fd94813026dc6a01ed56b7
/crc/crc_header.c
9115875d0d036590ae590de8aa6dec0d8ffaad90
[]
no_license
ugonfor/reversing.kr-crc1
a0966252e7de50d0fc40882547d1c1197e147cc1
e35f088cfe77ab40a350c5c744d3e51abfa5b9a8
refs/heads/master
2022-11-29T16:31:25.956541
2020-08-02T17:25:13
2020-08-02T17:25:13
281,061,843
0
0
null
null
null
null
UTF-8
C
false
false
7,998
c
#include "crc_header.h" #include <Windows.h> void init_data(void){ unsigned __int64 crc_table_tmp[256] = {0x0, 0xb32e4cbe03a75f6f, 0xf4843657a840a05b, 0x47aa7ae9abe7ff34, 0x7bd0c384ff8f5e33, 0xc8fe8f3afc28015c, 0x8f54f5d357cffe68, 0x3c7ab96d5468a107, 0xf7a18709ff1ebc66, 0x448fcbb7fcb9e309, 0x325b15e575e1c3d, 0...
[ "noreply@github.com" ]
ugonfor.noreply@github.com
e591d1d637c40baa1d5401c47eb7bf2f319d289d
5d24f800ad35397699dac7bf48f1aff9e256e552
/Kamek/include/rvl/GXEnum.h
bb154d940dc83d13506587a0217f987f6e2c3a8a
[ "MIT" ]
permissive
Danster64/NSMBWer
861c26e7440ce56af6227051224588d0141d94f7
05dae4ddf04745d389923670311de437d2df825c
refs/heads/master
2022-02-12T09:10:34.846693
2021-10-11T05:56:06
2021-10-11T05:56:06
236,567,638
5
5
MIT
2022-01-30T01:47:00
2020-01-27T18:54:51
C++
UTF-8
C
false
false
26,510
h
#ifndef __GXENUM_H__ #define __GXENUM_H__ /********************************/ #ifdef __cplusplus extern "C" { #endif /********************************/ typedef u8 GXBool; /********************************/ #define GX_TRUE ((GXBool)1) #define GX_FALSE ((GXBool)0) #define GX_ENABLE ((GXBool)1) #define...
[ "twomp021@gmail.com" ]
twomp021@gmail.com
9a428b5235e813f89eee37e1873310da74fc017b
52ebc59248f0e5437d493b6356277f7b97e59613
/src/vm/vm.c
941f72867a2e05d77e1972ff4f27c513d5d4c467
[ "LicenseRef-scancode-public-domain" ]
permissive
xinhaoyuan/see
d048d5f41b13e15782473911bb43baa0cc5e4458
a2a4724015848c6761e62a908a5c0f67972befbb
refs/heads/master
2020-04-29T02:55:37.090512
2012-08-14T12:01:13
2012-08-14T12:01:13
2,178,873
0
1
null
null
null
null
UTF-8
C
false
false
18,084
c
#include <config.h> #include "../object.h" #include "vm.h" #include "builtin.h" /* The internal function numbers */ static inline unsigned int bsr(unsigned int n) { unsigned int result; asm volatile("bsr %1, %0" : "=r" (result) : "r" (n)); return result; } #define PUSH...
[ "xinhaoyuan@gmail.com" ]
xinhaoyuan@gmail.com
4b89cdc37da199be6e468e1bde5ef7be11ecc6dc
0243e84d0fd442648fa525c054379dbfe92f782c
/vendor/twig/twig/ext/twig/php_twig.h
31b56f44512c256d99d9849b462afd3c30510108
[ "MIT", "BSD-3-Clause", "BSD-2-Clause" ]
permissive
lrt/lrt
8452ee323f4adcdaac4ba0ef5a35ce325644ed6f
2035e78aa55109057115aeb69e2e66c33dd09210
refs/heads/master
2021-01-10T19:16:54.581265
2013-05-23T13:55:12
2013-05-23T13:55:12
6,908,215
0
0
null
null
null
null
UTF-8
C
false
false
1,148
h
/* +----------------------------------------------------------------------+ | Twig Extension | +----------------------------------------------------------------------+ | Copyright (c) 2011 Derick Rethans | +----...
[ "alexandre.seiller92@gmail.com" ]
alexandre.seiller92@gmail.com
613a2c77e1358a3cdb87139d827c7e4c94380a86
3db023edb0af1dcf8a1da83434d219c3a96362ba
/windows_nt_3_5_source_code/NT-782/PRIVATE/SDKTOOLS/RESTOOLS/RLTOOLS/COMMON/PROJDATA.C
52d71220c5cb4b477ab6908e0c96f37befe33b6e
[]
no_license
xiaoqgao/windows_nt_3_5_source_code
de30e9b95856bc09469d4008d76191f94379c884
d2894c9125ff1c14028435ed1b21164f6b2b871a
refs/heads/master
2022-12-23T17:58:33.768209
2020-09-28T20:20:18
2020-09-28T20:20:18
null
0
0
null
null
null
null
UTF-8
C
false
false
23,594
c
#include <windows.h> #include <stdio.h> #include <io.h> #include <errno.h> #include <stdlib.h> #include "windefs.h" #include "restok.h" #include "projdata.h" #include "showerrs.h" #include "rlmsgtbl.h" #include "commbase.h" #include "custres.h" #include "rlstrngs.h" #include "resourc2.h" extern MS...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
07b35d5e0a6861d46e444f7a29bf3e4a0ab2c4de
2adb9270345523e00d97b8977a683f597a3652bd
/src/sprite_manager.h
f090ad4d1bc65fc842055afe591d5ba9808b30e4
[]
no_license
TheADrain/GB_Game_1
4fa42b7c7dc009e8833426b053ab4c686bdf2253
bb5de683d3ad0b277ce24fc139ce34139c999281
refs/heads/main
2023-08-15T20:38:18.476584
2021-10-18T12:51:47
2021-10-18T12:51:47
333,699,194
0
0
null
null
null
null
UTF-8
C
false
false
2,097
h
#ifndef SPRITE_MANAGER_H #define SPRITE_MANAGER_H #include <gb/gb.h> /* ---------- SPRITE MANAGEMENT ------------- sprites.h contains the sprite engine and the code for bundling meta-sprites into a single point of reference */ /* 20 for 8x16 mode or 40 for 8x8 mode */ #define MAX_SPRITES 40 #define SPRITES_NOT_A...
[ "theadrain@hotmail.co.uk" ]
theadrain@hotmail.co.uk
95c3b794d3e24dcae2bfa8cdabcc41a7250b74b8
618ca9492e3ec2c1ef36b29e253f2d46cad5564a
/UCOSII/路路彩(ucos)/HARDWARE/BLE/ble.c
0cf8bfe39b6264b4f906aae81a73c7948cb2b4e0
[]
no_license
yatt122496/stm32_demo_std
3797f9ecb83e26c60a894ed7a4f9768d8933e46a
c301da75afb6efd95aafeb0a60e696d8ac524c0f
refs/heads/master
2023-07-12T22:38:03.141680
2021-08-01T04:32:10
2021-08-01T04:32:10
373,777,037
0
0
null
null
null
null
GB18030
C
false
false
3,231
c
#include "ble.h" u8 *bBLE_Scan(void) { u8 i; if(BLE_Fram_Record_Struct.wInfBit.wFramFinishFlag) { BLE_Fram_Record_Struct.bData_RX_BUF[BLE_Fram_Record_Struct.wInfBit.wFramLength]=0; // printf("bData_RX_BUF=%s\r\n",BLE_Fram_Record_Struct.bData_RX_BUF); // for(i=0;i<BLE_Fram_Record_Struct.wInfBit.wFramLength;i++) ...
[ "1254452743@qq.com" ]
1254452743@qq.com
34f8fd6960edb2fa4659802cafef1266d20ca8f7
64a2ba242025b2ba1d87592c621caae607921cd1
/t/vcmpgtsw_-1.c
8e0353a4f585842011d2344a71779eb3752ac4f7
[]
no_license
revel8n/altivec-archc
3c726a2bdd9d68a88e5a63152a6c5b6d72b090b6
cd20539f86340e2d2cb83f176b60a774646c1224
refs/heads/master
2021-01-19T07:28:58.263936
2007-07-01T05:54:58
2007-07-01T05:54:58
33,338,363
0
0
null
null
null
null
UTF-8
C
false
false
399
c
#include "test.h" int main() { uint32_t a, b, c, d; LOAD_VECTOR_U(13, 0xFFFFFFFF, 0x0110FF0F, 0x80000000, 0x11111111); LOAD_VECTOR_U(14, 0xFFFFFF00, 0x0010FF0F, 0x7FFFFFFF, 0xFF0000FF); asm("vcmpgtsw. 15, 13, 14"); DIE_IF_ALL_TRUE(); DIE_IF_ALL_FALSE(); STORE_VECTOR_U(15, a, b, c, d); return !(a == ...
[ "cmarcelo@86e2ce6f-a531-0410-a1d1-23c94225625f" ]
cmarcelo@86e2ce6f-a531-0410-a1d1-23c94225625f
ed1f1a016162ec1122ce749f86b2db950e6f1217
0e787b7cb0ae032dd9c4ca23e0a32bb3074a845d
/Prodotto_array.c
1410def56cb3755dc97fb24c7e511588f5fef8b9
[ "MIT" ]
permissive
Racci1/Informatica_3
9b3e49defed4544541ea8b0346c2869d5f8bac63
3b9d77a753ece682a7558b7fe6b01c3597e49117
refs/heads/master
2020-01-24T20:43:10.987740
2017-04-24T10:36:57
2017-04-24T10:36:57
73,700,087
0
0
null
null
null
null
WINDOWS-1252
C
false
false
2,918
c
#include<stdio.h> #include<stdlib.h> #include<math.h> /* Scrivere un programma in pseudocodifica e successivamente in C che dato un vettore di K elementi con K compreso fra n1 e n2 con n2<1000 e dispari e uno scalare num intero effettui il prodotto tra lo scalare e il vettore. Autore: Matteo Raccichini - ...
[ "noreply@github.com" ]
Racci1.noreply@github.com
a2f721f8f51ed606008c7553fce972a2a9d1d80e
58bcbb69bbd438335bbcc5368c17cbd7652674e4
/lab2/timers.h
d07ed341e6ef8ebb15121d88cf9b0c8d45dba596
[]
no_license
redusek/seng5831
d6bbfb916ca34285ac88ba69b6312d3b403f1730
7078867045dc186ac4cf7fa4d69e99042bc2e11f
refs/heads/master
2020-12-24T19:17:57.630194
2013-04-25T06:30:02
2013-04-25T06:30:02
null
0
0
null
null
null
null
UTF-8
C
false
false
361
h
/* * timers.h * * Created: 4/17/2013 8:06:10 PM * Author: bobd */ #ifndef TIMERS_H_ #define TIMERS_H_ #include <inttypes.h> //gives us int32_tX_t #define int32_tERPOLATOR_TIMER_RESOLUTION 10 #define CONTROLLER_TIMER_RESOLUTION 1 #define NORMALIZER 1000 #define DEGREES_PER_COUNT 5625 void init_timers(); int3...
[ "redusek@gmail.com" ]
redusek@gmail.com
759473c9a18eb42b0b5bf7a7474e698b12540f11
86d281f2c9a39227a1cda1bc3c2eddfe270e35cf
/MyLibaries/MyF4Config.h
408d82714019c443942524d209351ed353417abd
[]
no_license
wzyy2/Self-balancing-vehicle
b3c1bddb62b014c9066e6198ef1b80e67cf1108a
895265ce2d75e097306aff0b8eff1a40072d57f7
refs/heads/master
2020-05-17T05:19:14.287434
2014-02-03T19:31:25
2014-02-03T19:31:25
16,490,195
1
0
null
null
null
null
GB18030
C
false
false
3,838
h
#ifndef _MYF4CONFIG_H_ #define _MYF4CONFIG_H_ #include "stm32f4xx.h" //#include "arm_math.h" #include "misc.h" #include <stdarg.h> #include "stdio.h" // ??????? #define my_abs(x) ((x<0)?(0-(x)):(x)) // ???????? #define my_Nabs(x) ((x<0)?(x):(0-(x))) // ??????????? // ?????? #define Max(a,b) (((a)<(b))?(b...
[ "547884940@qq.com" ]
547884940@qq.com
0b91b5d800e1b59fbbdcc9a684fa55cb535a1fbc
dfbd3e3a9e7dc81efe9badd5a67a46d344a6c909
/git_gnl/libft/ft_memset.c
763c6c88e78614cf07bfc96816736f9065f1f12e
[]
no_license
marina1177/ft_gnl
f345a962e6c5d58a0a67fec5feb066cd4d83fa76
5d8a5fd8f090a7adf279a8ec47a098b3afa8cc7f
refs/heads/master
2020-05-22T07:15:30.370206
2019-05-12T13:54:37
2019-05-12T13:54:37
186,261,067
0
0
null
null
null
null
UTF-8
C
false
false
1,080
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memset.c :+: :+: :+: ...
[ "bcharity@il-g4.21-school.ru" ]
bcharity@il-g4.21-school.ru
62b286aaf40e792a75b28a611f8fef829627996b
dc9e276fc5d5c758581d9811d305440807674d51
/TCPL/chapter3/swap.c
355ac67b1672551301c395e127706e2a0026e114
[]
no_license
flamedancer/c_linux_study
a57368640ec5dedca90b88cc79fef5ff7ecaf22a
cb5e5fb8a1fc92ea813a477611bbc4eff672a957
refs/heads/master
2020-04-15T15:01:11.578040
2017-09-07T03:52:31
2017-09-07T03:52:31
52,426,504
0
0
null
null
null
null
UTF-8
C
false
false
348
c
#include <stdio.h> #define swap(t, x, y) {t z; z=x; x=y; y=z;} int main() { int n1=1, n2=2; int c1='a', c2='b'; printf("old n1 %d, n2 %d\n", n1, n2); swap(int, n1, n2); printf("new n1 %d, n2 %d\n", n1, n2); printf("old c1 %c, c2 %c\n", c1, c2); swap(int, c1, c2); printf("new c1 %c...
[ "admin@admindeiMac-2.local" ]
admin@admindeiMac-2.local
c3254b513d2dce96a15d08760599af2b28705069
c47c254ca476c1f9969f8f3e89acb4d0618c14b6
/datasets/linux-4.11-rc3/drivers/media/platform/rcar-vin/rcar-v4l2.c
2bbe6d495fa634da37ce8ed2aa8ba7385b43419f
[ "BSD-2-Clause", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
yijunyu/demo
5cf4e83f585254a28b31c4a050630b8f661a90c8
11c0c84081a3181494b9c469bda42a313c457ad2
refs/heads/master
2023-02-22T09:00:12.023083
2021-01-25T16:51:40
2021-01-25T16:51:40
175,939,000
3
6
BSD-2-Clause
2021-01-09T23:00:12
2019-03-16T07:13:00
C
UTF-8
C
false
false
22,952
c
/* * Driver for Renesas R-Car VIN * * Copyright (C) 2016 Renesas Electronics Corp. * Copyright (C) 2011-2013 Renesas Solutions Corp. * Copyright (C) 2013 Cogent Embedded, Inc., <source@cogentembedded.com> * Copyright (C) 2008 Magnus Damm * * Based on the soc-camera rcar_vin driver * * This program is free sof...
[ "y.yu@open.ac.uk" ]
y.yu@open.ac.uk
20e0ff6fc8a1c67a3b1fad7064e2ce0ff90e9a35
f8e480fea96acd1aaadcdacc4233b0f182967a1b
/test/replica.c
a67cd4feff129eadf5fd632762a29892539fd543
[]
no_license
mjolk/epx-c
86c6ef8c968001f0848cf03c56a03469464240b4
83608971c6019bfe4fee8270d9497cf6c055f0f4
refs/heads/master
2022-04-28T04:19:03.028897
2022-04-12T22:01:41
2022-04-12T22:01:41
148,635,467
0
0
null
null
null
null
UTF-8
C
false
false
990
c
/** * File : replica.c * License: MIT/X11 * Author : Dries Pauwels <2mjolk@gmail.com> * Date : za 02 feb 2019 15:06 */ #include "../src/replica.h" int triggered[5] = {0}; void timeout_callback(void *arg){ int id = *(int*) arg; printf("callback %d\t", id); assert(id == 1); triggered[id] = 1; ...
[ "2mjolk@gmail.com" ]
2mjolk@gmail.com
54d3fdf036aa5644d3f2c42f3143cff7252a8359
48cc05b4793387a889b55a84478c25186239fe6d
/nemu/include/cpu/instr/ret.h
a2c442b80d390e6814b52af64a804ae85db7bfa3
[]
no_license
LeoDarcy/PA2017
fc3fd515ec819cc5761ec17869b6ac755ba9f7af
fc16f5c1ceddd049fb5081c35d1ca9d985560dd9
refs/heads/master
2021-05-03T18:52:41.359222
2018-01-31T15:46:38
2018-01-31T15:46:38
120,416,257
6
3
null
null
null
null
UTF-8
C
false
false
106
h
#ifndef __INSTR_RET_H_ #define __INSTR_RET_H_ make_instr_func(ret_v); make_instr_func(ret_iw); #endif
[ "bjy@Debian.Debian" ]
bjy@Debian.Debian
a4536534b0bb51536c0aebfb21a3ac85e68dfe62
6437ce70fcd37d5008ba7c2fb524fe8a183e8040
/devices/MKS22F12/drivers/fsl_flexcan.h
87f84bb3fa64c826b609b3320e2d97d51db1125c
[]
no_license
lihaibin001/Telematics-KS22
73ccfe7bf82410a1b0073207a7c71279ad470cce
d94b685b2c1ac6b3192424d60726ed20b345628a
refs/heads/master
2021-05-11T17:12:48.956550
2017-12-19T02:51:30
2017-12-19T02:51:30
117,791,607
1
1
null
null
null
null
UTF-8
C
false
false
44,902
h
/* * Copyright (c) 2015, Freescale Semiconductor, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, this list...
[ "lihaibin0130@gmail.com" ]
lihaibin0130@gmail.com
9cf5984d3630bd547993f30e8fc44c122a2f287b
caf7dc4cb20f7f44d9168c60dbab8a742e56bf07
/aula-5/cont_caract.c
4f147794eb6a0b9724c17c01e0a7331b63c3cc86
[]
no_license
raquelscpaiva/curso-c
3a0c688e444d37cd70d73f6c974236bc3bb020e6
004f93df79cfa09b357e38b38e87a2cec18b3e89
refs/heads/main
2023-02-16T09:02:23.723803
2021-01-18T12:36:29
2021-01-18T12:36:29
324,791,717
0
0
null
null
null
null
UTF-8
C
false
false
233
c
#include <stdio.h> int main(int argc, char const *argv[]) { char c = getchar(); int cont = 0; while(c !=EOF) { cont++; c = getchar(); } printf("Quantidade: %d\n", cont); return 0; }
[ "raquel.siqueirac@gmail.com" ]
raquel.siqueirac@gmail.com
f2b5f4bdbba0223394803405fbd137d88b95138b
b567d3e3df61e121f497c3bbcdb090a9a69722fe
/plotting/plot_graph_2pads.C
2c867bb5c0f7bf6309d39a19bb0ec16f4b3c7c68
[]
no_license
echapon/HIN-13-007
70a310d149356125c32ab1cbbbbea65b1cdf809d
f560426a07a15ec740ce37093b51e53968c99196
refs/heads/master
2019-01-01T13:49:51.047980
2015-09-01T15:03:37
2015-09-01T15:03:37
40,790,716
0
0
null
null
null
null
UTF-8
C
false
false
48,496
c
#include "TFile.h" #include "TGraphErrors.h" #include "TGraphAsymmErrors.h" #include "TPaveText.h" #include "TCanvas.h" #include "TH1.h" #include "TStyle.h" #include "TLegend.h" #include "TColor.h" #include <fstream> #include <iostream> #include <string> #include "lumierror.h" #include "CMS_lumi.C" // writeExtraText =...
[ "emilien.chapon@cern.ch" ]
emilien.chapon@cern.ch
4340648fafa44b66017b75c2773e224651115da0
31ed2e691b231f43da922d96f6cb55d490d1b5ca
/q3/hash_table.c
52d1fcfe739f6ca1992828689cdf79dcdb207140
[]
no_license
loumac91/CW2
a2942619eef13cd2ed36a8759038af50d77c6d7d
95b246d04a2bbd24fa511d363ffb8cf44dcdbb57
refs/heads/master
2022-11-07T08:12:00.032315
2020-06-14T11:58:12
2020-06-14T11:58:12
266,764,682
0
0
null
null
null
null
UTF-8
C
false
false
6,032
c
#include <stdlib.h> #include <string.h> #include "hash_table.h" #include "hashing.h" #include "string_utils.h" // STATIC FUNCTIONS // These are internal to this file (can only be called from within file), hence static // Double hashing method of applying two hashes together // Collisions are mitigated by...
[ "loumac91@googlemail.com" ]
loumac91@googlemail.com
410a683d37d63a788f120fa1693997058f478995
a7a3351ac3d9f2a82ba8bea258074c04349551f8
/linuxdriver/linux/drivers/media/video/planb.c
baa0c55a7c26501b10d2c35ead582a45241aa172
[]
no_license
Saentist/AZLinux_v1.4.2_CI_FC6
c895fbad0460aee3e38da0da953ba23cd1048048
961f27caad95c8fc3ba0042c384b4c964a329763
refs/heads/master
2023-05-10T23:35:20.877421
2023-05-02T21:19:57
2023-05-02T21:19:57
94,002,758
1
0
null
null
null
null
UTF-8
C
false
false
62,200
c
/* planb - PlanB frame grabber driver PlanB is used in the 7x00/8x00 series of PowerMacintosh Computers as video input DMA controller. Copyright (C) 1998 Michel Lanners (mlan@cpu.lu) Based largely on the bttv driver by Ralph Metzler (rjkm@thp.uni-koeln.de) Additional debugging and coding by ...
[ "saentist@gmail.com" ]
saentist@gmail.com
35c9a6b741857186f9f281e720ba51c9a477c53e
082d1d015f795959b66867bd0fecb780d233b81f
/utils/cfgutils.c
a23e115247ba01465bf288510d887cfa03cc5626
[]
no_license
jokeyoq/giraffedb
7e5fc658f02ee74e7960fb115f7bb047edb4c8b5
59bf740d91d942649cb37eaf4b7f753526338da7
refs/heads/master
2023-02-03T20:30:08.775101
2020-12-24T11:53:50
2020-12-24T11:53:50
323,074,575
0
0
null
null
null
null
UTF-8
C
false
false
8,454
c
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> #include <string.h> #include "../dast/strlist.h" #include "cfgutils.h" #define DONOTHING ; bool is_cfg_existed(char* cfgname) { struct stat st; char* fullpath; int ret; fullpath = combine_path(cfgname); ...
[ "agustinkim2020@hotmail.com" ]
agustinkim2020@hotmail.com
6030e537b2aeb32c81ec3002f0b5e3389181de2d
20502b131cbf369abf933b4daaceb59934ffc281
/egroot/src/pkg/cortexm/intrinsics+.h
74b2f5c91a163c6629b17b23d01292724ba46126
[ "BSD-3-Clause" ]
permissive
xandlom/emgo
31439575b0b51f28f528fc9f3ad152f55462f40c
1b586a69c5d849deb7897e4e9c40df2d6e5c25f6
refs/heads/master
2021-01-18T16:34:36.719829
2014-10-15T17:51:50
2014-10-15T17:51:50
null
0
0
null
null
null
null
UTF-8
C
false
false
2,940
h
__attribute__ ((always_inline)) extern inline uint32 cortexm$APSR() { uintptr r; asm volatile ("mrs %0, apsr" : "=r" (r)); return r; } __attribute__ ((always_inline)) extern inline void cortexm$SetAPSR(uint32 r) { asm volatile ("msr apsr, %0" :: "r" (r) : "apsr"); } __attribute__ ((always_inline)) extern inline u...
[ "michal@Lnet.pl" ]
michal@Lnet.pl
29fa1b1828c964dcc8785c59e874998619dd7f7e
c1a8e75227512a30db772c92973c7b179d4eaa67
/Test/Classes/Native/UnityEngine_UnityEngine_AnimationEventSource.h
936ac1991200022cf2fd7ff73328ab89706b0334
[]
no_license
joshtwynham/dissertation
266f5463d970e15bf5b0842c881ff65c9c85389c
b860fc4ae2b6152d0aea15b36036904b4a88bd15
refs/heads/master
2021-01-10T09:20:17.128871
2016-04-17T16:07:36
2016-04-17T16:07:36
49,824,777
0
0
null
2016-02-02T11:36:07
2016-01-17T16:14:25
C++
UTF-8
C
false
false
391
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Enum.h" #include "UnityEngine_UnityEngine_AnimationEventSource.h" // UnityEngine.AnimationEventSource struct AnimationEventSource_t257 { // System.Int32...
[ "psyjt1@nottingham.ac.uk" ]
psyjt1@nottingham.ac.uk
2f4f0bc94c2c8413a33ede70a506fdf889ad2cf9
8879dd90dc615ab0d77c5faa2424679123988166
/plat/nvidia/tegra/include/platform_def.h
2a7935fd086ccb4728e052445102a0520ff47205
[ "BSD-3-Clause" ]
permissive
HotRays/arm-trusted-firmware
609a8633aba5e69b267cd1e79b8e40428a93fc4f
870d881ced126bd492fe96f6a7bedd0d869dd23a
refs/heads/master
2020-03-07T17:05:13.593447
2016-01-25T11:02:42
2016-01-25T11:02:42
127,602,213
1
0
null
2018-04-01T06:05:43
2018-04-01T06:05:43
null
UTF-8
C
false
false
4,310
h
/* * Copyright (c) 2015, ARM Limited and Contributors. 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 o...
[ "vwadekar@nvidia.com" ]
vwadekar@nvidia.com
9421cc766d59a7716a162ae94c302e095b3a4a4e
530ac0ecfc790b5ca6a7bb2729ee29eef5fcb637
/src/gfx/pt_gfx_icon.c
2453b55c42bdca845faa77aa28bc4ef62843ae2e
[ "WTFPL" ]
permissive
echolevel/protracker
442af817e78fc473fa682e4bfcdb73020ef9e9ce
d26aa8a9ca968d4c500393b52217b771b67e9ab7
refs/heads/master
2021-03-12T20:29:58.549533
2017-05-16T20:27:45
2017-05-16T20:27:45
91,458,832
11
1
null
null
null
null
UTF-8
C
false
false
12,983
c
#include <stdint.h> uint32_t iconBMP[1024] = { 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x00444444, 0x...
[ "eightbitbubsy@4421b666-268f-4d9d-8f69-d2436a73919e" ]
eightbitbubsy@4421b666-268f-4d9d-8f69-d2436a73919e
050bd3e5a53f443b80e5ffd3401443613af1c7c0
70709b0e4960f8a1cb42327b8fa24978b98e3963
/osh-基于C的shell实现/osh.c
4f85ddad90494600587dc63446e42da25e053271
[]
no_license
needhourger/university
7b7dd025d78f134215475493e6694b9749cb7e46
95bdfc2801a40ad5d63cf1e3b1abf5fb9f11ce77
refs/heads/master
2023-01-10T02:51:46.788842
2022-12-26T08:09:32
2022-12-26T08:09:32
142,943,871
1
2
null
2022-12-26T08:16:43
2018-07-31T00:58:17
JavaScript
UTF-8
C
false
false
6,721
c
/* * @Description: * @Author: cc * @Date: 2021-04-13 09:35:03 * @LastEditors: cc * @LastEditTime: 2021-04-13 12:11:19 */ #include<stdio.h> #include<stdlib.h> #include<string.h> #include<stdbool.h> #include<sys/wait.h> #include<sys/types.h> #include<unistd.h> #include<fcntl.h> #define BUFF_SIZE 1024 #define ARGS_...
[ "841904608@qq.com" ]
841904608@qq.com
4b175025be76182bf699286d59798f5e0898d380
bb5f8bebf235379a456b0419bfc6f5ea2b2d75eb
/arduino-1.6.12P230/ESPEasy/Commands/Tasks.h
28dc868cdeb0a6930a5a99a6919e66bc8d8b5955
[]
no_license
ghsecuritylab/Lampa
30ae16090f084a2572fbdbaeb23d9a01caf66a3d
8a8979312df03201b1e64a1e07b99379bd183c45
refs/heads/master
2021-03-01T01:18:47.194631
2018-10-14T20:50:19
2018-10-14T20:50:19
245,744,488
0
0
null
2020-03-08T03:19:42
2020-03-08T03:19:41
null
UTF-8
C
false
false
1,594
h
#ifndef COMMAND_TASKS_H #define COMMAND_TASKS_H bool Command_Task_Clear(struct EventStruct *event, const char* Line) { bool success = true; taskClear(event->Par1 - 1, true); return success; } bool Command_Task_ClearAll(struct EventStruct *event, const char* Line) { bool success = true; for (byte t=0; t<TAS...
[ "kmiotekkrzysztof@gmail.com" ]
kmiotekkrzysztof@gmail.com
611688f643e8a74753b18621c5218fbeca4ae8cc
3d4c4fcfe965fef78d2561dafe28c4b61c4cdf28
/process/zombie/zombie.c
675a8defc61b32b87bce8178f458b09c8f2d3754
[]
no_license
cinderelladlw/billwawa
206dbf090376d820c079991687ef5852128b20e3
9bed36e73308ef7f63b13b8ffcc092c32c26863f
refs/heads/master
2018-12-28T04:20:14.922224
2014-12-02T14:10:17
2014-12-02T14:10:17
5,884,487
1
0
null
null
null
null
UTF-8
C
false
false
530
c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <signal.h> int main() { pid_t pid = fork(); if(pid == 0) { printf("child:[%d]\n", getpid()); sleep(5); exit(0); } else { printf("parent:[%d]\n", getpid()); #ifdef SIGNA signal(SIGCHL...
[ "bill@ubuntu.(none)" ]
bill@ubuntu.(none)
93870b51d0011bacd18d72da976d778ce7ffa9be
d5f7a45edde5efd339ba451560d07c907d9f6bca
/drivers/hostinterface/lfqueue.h
65d77b22c658a9a63a5e8a9e995132e216e52a2c
[]
no_license
vinodpa/VHDL_IP-Cores_zelenkaj
ab1e8e357bd2796f1fddc9bd86f9ad77be1293af
325b6c3c49e89d149d43a7d18437ad17927ce209
refs/heads/master
2021-01-18T01:46:19.068989
2014-01-16T08:08:15
2014-01-21T07:12:14
null
0
0
null
null
null
null
UTF-8
C
false
false
5,531
h
/** ******************************************************************************** \file lfqueue.h \brief This is the interface description of a lock-free queue. The lock-free queue implementation enables an independent producer- and consumer-process to access the shared resource without critical sections. This ...
[ "joerg.zelenka@br-automation.com" ]
joerg.zelenka@br-automation.com
41ebfed9360d1c92e17fb2ee311c11b94b14c00d
5f8edf43685cfefa2cf7c3cf1097cebdfd87ad44
/microgenios/projetos/03-AD/unit07/chalange.c
1eabd21fdb36f81ffa734fd5566413d0179daedf
[]
no_license
celolima/microcontroller-projects
d5cb60a2789e2044a3df0b91c8cdc972dc18b140
313ca7d1b0b3f77b6e62902c4e788ee33ea5435c
refs/heads/master
2023-03-23T13:11:29.448953
2020-01-05T22:48:22
2020-01-05T22:48:22
348,483,532
0
0
null
null
null
null
ISO-8859-1
C
false
false
2,692
c
/* Desafio Leitura de dois trimpots, e apresente da seguinte forma: 1- linha S1: xxxx // formatação 0 100% 2- linha S2: xxxx // formatação 0 a 255 */ /*Configuração dos pinos do LCD*/ sbit LCD_RS at LATB4_bit; sbit LCD_EN at LATB5_bit; sbit LCD_D4 at LATB0_bit; sbit LCD_D5 at LATB1_bit; sbit LCD_D6 at LATB2_bit; sbi...
[ "m_lima@bitbucket.org" ]
m_lima@bitbucket.org
472701ffced35fa01fff201f1a061ddc23a91791
9e27f819822941a95b6078dc8cc5c3f53ee99cdd
/list.h
12bca20b70637d9bd0a74f14a9062023d99b7fb0
[]
no_license
maggielovescookie/s-talk
604a6ac9e45324d575e0a1708db513fa13075f61
7c0e278d24ce80ed4f675635c6fd8699e0f0b992
refs/heads/master
2022-12-20T14:09:52.855112
2020-09-26T06:37:41
2020-09-26T06:37:41
298,753,648
0
0
null
null
null
null
UTF-8
C
false
false
5,282
h
// List data type // Solution by Brian Fraser (copyright 2020) #ifndef _LIST_H_ #define _LIST_H_ #include <stdbool.h> #define LIST_SUCCESS 0 #define LIST_FAIL -1 typedef struct Node_s Node; struct Node_s; typedef struct List_s List; struct List_s; // Maximum number of unique lists the system can su...
[ "noreply@github.com" ]
maggielovescookie.noreply@github.com
08b856924a585250c6e03c599fe4c899b69b1477
fb6a45c9a2f8b205bb6b312c85d0035a8193d6d9
/ifconfig.c
7350d28702baee643ea1e6fa78b002a243ca2597
[]
no_license
Sureshchandra5544/CPF---project
2ddb7fb9dca583ce5319f703c9cfdb2e0865b06d
d1aa66423dbd401004d7ba009421abc7a07575f7
refs/heads/master
2021-04-02T11:20:39.146586
2020-06-29T12:57:54
2020-06-29T12:57:54
248,269,501
0
0
null
null
null
null
UTF-8
C
false
false
100
c
#include<stdio.h> #include<string.h> int ifconfig(char *buffer){ if(buffer != NULL) return 1; }
[ "mubinfathimaj@hcl.com" ]
mubinfathimaj@hcl.com
0ecad83fdffb504f120fa92e16942511e2e54d3b
8028c77435920a39892a421fca1e444a5fd9eacc
/apps/px4br/fsw/src/pb_msgs/satellite_info.pb.h
73f1c94c4504155c114d2f3b67b69691b60280f4
[]
no_license
WindhoverLabs/airliner
fc2b2d59c73efc8f63c6fb8b3c4e00c5fddcc7c7
2ab9c8717e0a42d40b0d014a22dbcc1ed7ec0eb1
refs/heads/integration
2023-08-04T06:01:53.480641
2023-07-31T03:22:06
2023-07-31T03:22:06
332,887,132
9
2
null
2023-07-31T02:58:48
2021-01-25T21:21:52
C
UTF-8
C
false
false
3,044
h
/* Automatically generated nanopb header */ /* Generated by nanopb-0.3.6 at Wed Oct 26 00:46:16 2016. */ #ifndef PB_SATELLITE_INFO_PB_H_INCLUDED #define PB_SATELLITE_INFO_PB_H_INCLUDED #include <pb.h> /* @@protoc_insertion_point(includes) */ #if PB_PROTO_HEADER_VERSION != 30 #error Regenerate this file with the curre...
[ "mbenson@windhoverlabs.com" ]
mbenson@windhoverlabs.com
fbce5a27ec80a365d02a7a715a7a124815e8790a
b027b1609011975bf568f64a21376eea2afcc22e
/marketprice/mp_config.h
f135ba02c4e06663260acbec3f1627fc94014230
[ "MIT" ]
permissive
pcdevelop0datacom/exs_server
32a1cfd779d4e7db68c8941f40944dd774818f7b
69571f0df0d5e28c946f9d52a790d36585a7c650
refs/heads/master
2021-09-07T11:24:00.349834
2018-02-22T08:08:38
2018-02-22T08:08:38
119,790,393
0
1
null
null
null
null
UTF-8
C
false
false
1,207
h
/* * Description: * History: yang@haipo.me, 2017/04/16, create */ # ifndef _MP_CONFIG_H_ # define _MP_CONFIG_H_ # include <math.h> # include <stdio.h> # include <error.h> # include <errno.h> # include <ctype.h> # include <string.h> # include <stdlib.h> # include <unistd.h> # include <assert.h> # include <intt...
[ "yang@haipo.me" ]
yang@haipo.me
9f0b8e49414e58cd564b8fd0db18d3751d3b22e2
111edfb480e927a67f3f4e83783f347bd7f8491f
/include/gl.h
7b0cb5ef89328218e9f419a716be9efdc5e19adb
[ "MIT" ]
permissive
pragma-/assimilate3d
2c5dee1dae06f7ea5dcfbf4c2b2da0a348db84d9
e1201601124f4f4a0cfdb8d4bd80eb8a5b6766c6
refs/heads/master
2020-12-04T17:00:13.078782
2020-01-06T12:37:17
2020-01-06T12:37:17
231,845,993
3
1
null
null
null
null
UTF-8
C
false
false
229
h
#ifndef HAS_MULTITEXTURE extern PFNGLACTIVETEXTUREARBPROC glActiveTextureARB; extern PFNGLCLIENTACTIVETEXTUREARBPROC glClientActiveTextureARB; #endif void G_initGL(int width, int height); void G_queryGL(void);
[ "pragma78@gmail.com" ]
pragma78@gmail.com
0861e01b3ca6238b39afd2a2ee816f3c3b18fa14
721d70011e3b9447113b0f62d5e6bb00c54b7008
/windows/mingw/i686-w64-mingw32/include/wincodec.h
15809754526fd4410098aae21fc6b4e6374bab7d
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
mrmoss/parrot_kinect
d8f3dd477dc6206d54f17266fc618e5e5705fde3
5e118c7b5a31bfa999cd3eb8777677f923fa80b0
refs/heads/master
2021-01-10T21:06:29.716162
2015-11-11T22:11:50
2015-11-11T22:11:50
8,966,232
1
0
null
null
null
null
UTF-8
C
false
false
279,492
h
/*** Autogenerated by WIDL 1.5.25 from include/wincodec.idl - Do not edit ***/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 475 #endif #include <rpc.h> #include <rpcndr.h> #ifndef COM_NO_WINDOWS_H #include <windows.h> #include <ole2.h> #endif #ifndef __wincodec_h__ #def...
[ "mrmoss@alaska.edu" ]
mrmoss@alaska.edu
f84bc4d49c8519234437dd3ece8978c5d2329bce
b68286b0228eb3e9d0fe3b89fb351f5d74314e62
/Online Judges/Huxley/regeneracaodevida.c
cd45cc129edec74f7af63265eda181383eb4ba24
[ "MIT" ]
permissive
NelsonGomesNeto/ProgramC
6f4471933542662f29ce015ecb3041af5580ab3e
e743b1b869f58f7f3022d18bac00c5e0b078562e
refs/heads/master
2021-01-24T17:01:37.846901
2019-08-06T04:44:45
2019-08-06T04:44:45
96,583,441
4
6
null
null
null
null
UTF-8
C
false
false
672
c
#include <stdio.h> int main() { int ataques, ler, recover, HP = 100, ativa, Time = 0; scanf("%d", &ataques); int atk[ataques], tempo[ataques]; for (ler = 0; ler < ataques; ler ++) { scanf("%d %d", &atk[ler], &tempo[ler]); } scanf("%d", &recover); for (ler = 0; ler < ataques; ler ++) { ...
[ "ngn@ic.ufal.br" ]
ngn@ic.ufal.br
926f72b7bdfd8852c16aa617a5e8c9281bc541bc
ebacc5b1b457b08eac119e43c030281c98343aeb
/c_tan/l7.18.c
b765b45ad7525aa2c29e615ae9744f0af953f87e
[]
no_license
deardeng/learning
e9993eece3ed22891f2e54df7c8cf19bf1ce89f4
338d6431cb2d64b25b3d28bbdd3e47984f422ba2
refs/heads/master
2020-05-17T13:12:43.808391
2016-02-11T16:24:09
2016-02-11T16:24:09
19,692,141
1
1
null
null
null
null
UTF-8
C
false
false
580
c
#include<stdio.h> int main() { int sum_day(int month,int day); int leap(int year); int year,month,day,days; printf("input data(year,month,day):"); scanf("%d,%d,%d",&year,&month,&day); printf("%d/%d/%d",year,month,day); days=sum_day(month,day); if(leap(year)&&month>=3) days = days + 1; printf("is the %dth day...
[ "565620795@qq.com" ]
565620795@qq.com
276dbe82356b22b88c5a8caae3056415121762a6
fbafd25b735ec6bac8516f1107379edf0820f1e8
/RobotC/move03_sonor.c
ed2bd5577e83c292a9426e9aced307eaa80341a0
[]
no_license
TylerSouthgate/CodexRobotica
39541af61f0d987fa23fdc766d09d9546a2ffe85
759be7ccc5156b8dbd75a0d59d1cc98626a7918f
refs/heads/master
2021-01-19T00:12:33.093305
2013-05-05T18:47:31
2013-05-05T18:47:31
null
0
0
null
null
null
null
UTF-8
C
false
false
4,090
c
#pragma config(Sensor, S1, Tleft, sensorTouch) #pragma config(Sensor, S2, TopLight, sensorCOLORFULL) #pragma config(Sensor, S3, Rsonar, sensorSONAR) #pragma config(Sensor, S4, Lsonar, sensorSONAR) //*!!Code automatically generated by 'ROBOTC' configuration wizard ...
[ "tylersouthgate@hotmail.com" ]
tylersouthgate@hotmail.com
bc45a4f39e1fac6af32344834e8fa72d43156d7c
4fa17b3b1bd6328702fbd78c84e9b70fad2848f2
/pic18f47q84-utmr-decoding-ws2812-datastream.X/mcc_generated_files/tmr1.h
d34bbd8790cb20a29b8b0e975258d15bd27f1799
[]
no_license
microchip-pic-avr-examples/pic18f47q84-utmr-decoding-ws2812-datastream
cc39247d0a0e7b058d214c38c5a4dddfc45089b8
b6173e88e2c391f3cc60c7ffd8a6e2a9a475a07b
refs/heads/master
2022-12-25T07:13:46.096023
2020-10-08T21:53:12
2020-10-08T21:53:12
300,645,968
3
0
null
null
null
null
UTF-8
C
false
false
7,820
h
/** TMR1 Generated Driver API Header File @Company Microchip Technology Inc. @File Name tmr1.h @Summary This is the generated header file for the TMR1 driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs @Description This header file provides APIs for driver for TMR1. Generation Information...
[ "Ashish.Makthal@microchip.com" ]
Ashish.Makthal@microchip.com
e999450663c0078bc45a957146fdaaecdc76b045
07915111c538b8887613ec9400fc25bc89742ae2
/Linux下的C库函数源代码/最全的Linux下的C库函数源代码2/src/drivemap.c
cf9dcca6eb776f1aef69771c95e94e7104a6e40d
[]
no_license
15831944/skiaming
f4f683dafc393263193629545880d1ffbac810c9
d6500ec2afe1ab45b8a42470ac9dff30c7297b57
refs/heads/master
2021-12-05T17:25:46.351775
2012-10-10T09:54:13
2012-10-10T09:54:13
null
0
0
null
null
null
null
UTF-8
C
false
false
1,110
c
/*** *drivemap.c - _getdrives * * Copyright (c) Microsoft Corporation. All rights reserved. * *Purpose: * defines _getdrives() * *******************************************************************************/ #include <cruntime.h> #include <oscalls.h> #include <direct.h> #if !defined (_WIN3...
[ "zhangming@users.noreply.github.com" ]
zhangming@users.noreply.github.com
4846013ec66eefd248070089c0eee8ab348d06bd
508bdc88549b9031459306c54a1497151625c3a2
/PlatformLibrary/LIB_IOManager/ExternalOutputManager.h
6e58c12ad12967b5f3ab2beb1568e01bf81e8fe8
[]
no_license
AndEmi81/indesit_inertia_rx210
49d8764d4492ee26a5b704f5a6ac1e8c971ea54d
1ea86b91696938e13b878a88f5ade3ae67a88ad1
refs/heads/main
2023-09-05T02:44:11.842216
2021-10-19T13:36:43
2021-10-19T13:36:43
null
0
0
null
null
null
null
UTF-8
C
false
false
1,324
h
/* Copyright (c) 2004-2005, Indesit Company, EDT. Tutti i diritti sono riservati. All rights reserved. */ /** \par ExternalOutputManager.h \n Header file of ExternalOutputManager.c \n \file ExternalOutputManager.h \ingroup ExtOutputsManager \date Sep 11, 2010 \version 01.00.00 \author Roberto fioravanti \n \...
[ "andrea.emili@outlook.com" ]
andrea.emili@outlook.com
e35d89854c71c5d6b30b908ec19543564e5fea32
d7da1a567eb2b3302b6643032a432dee6cb9efc0
/src/api.c
4fdb41e56aabb3d560d4f90683be0fcffa0d2ea5
[ "BSD-2-Clause", "BSD-2-Clause-Views" ]
permissive
cr-lironzuarets/minhook
fcfcbe110c526fb6ec1b6bedc5fda225a17cd43c
cc1b57cb0f9f5d266b60dfd35aaa95cde6ac6390
refs/heads/master
2022-11-08T19:34:27.024531
2020-06-24T20:57:02
2020-06-24T20:57:02
274,656,802
0
0
null
2020-06-24T11:54:30
2020-06-24T11:54:29
null
UTF-8
C
false
false
13,298
c
#include "api.h" #include <windows.h> #include <TlHelp32.h> #include <winternl.h> typedef ULONG LOGICAL; #if WDK_NTDDI_VERSION <= NTDDI_WIN10_RS2 // As of the RS3 SDK (16299), winternl.h declares struct CLIENT_ID. It did not do so before. typedef struct _CLIENT_ID { HANDLE UniqueProcess; HANDLE UniqueThread; ...
[ "liron.zuarets@cybereason.com" ]
liron.zuarets@cybereason.com
e8507ac7a31a6f5a82f09c69a708ba27633ad98e
497dd4dcd3708220093d21c4b4e5164989beef87
/d/shaolin/bagua4.c
9f0534f94c94e96f0308cc0b1e46c19d4047f2e8
[]
no_license
auto21cn/SYXJL
4375ed28c5505f8611907ea4701de4d9b0c2c2df
dd9babf91c9a122d440c0c2a679ac372f3e0c2db
refs/heads/master
2021-01-08T20:47:38.424077
2019-01-17T11:47:40
2019-01-17T11:47:40
null
0
0
null
null
null
null
GB18030
C
false
false
1,042
c
// Room: /d/shaolin/bagua4.c // Date: YZC 96/01/19 inherit ROOM; #include "/d/shaolin/bagua.h" void create() { set("short", "八卦阵"); set("long", @LONG 这是便是八卦阵,四壁全由粗糙的片岩垒垛而成。巨石 狰狞,缺口及合缝处犬牙交错,如洪荒怪兽,其势似欲择人 而噬。壁上刻着一行小篆:“八卦通天地,金刚泣鬼神”。 四周灰尘厚积,蛛网密布,看来已久无人行。地上似乎躺着 几具尸体,早已腐烂化灰,脚步经过,连尸首身上的衣物也 随风飘散。 LONG ...
[ "i@oiuv.cn" ]
i@oiuv.cn
5313931dc43f1e3d3adb54fc0a9b715e8316f69c
f415a43fd0d1069411c0a655ace569797b2159d0
/static_analyzer/EIFGENs/static_analyzer/W_code/C9/ev1150d.c
2802f04378895f90d0db825c378e0e218c304eed
[]
no_license
Will6363/EECS3311-Project
f107727ea281f5d4335b2f79320409d7fadd56e7
5f08685824abd249c188df0f7d00b85444bfc52e
refs/heads/master
2020-04-09T21:19:24.221064
2016-01-21T23:44:09
2016-01-21T23:44:09
null
0
0
null
null
null
null
UTF-8
C
false
false
6,369
c
/* * Class EV_WIDGET_ACTION_SEQUENCES_I */ #include "eif_macros.h" #ifdef __cplusplus extern "C" { #endif static EIF_TYPE_INDEX gen_type0_1150 [] = {0xFF11,219,0xFFFF}; static EIF_TYPE_INDEX gen_type1_1150 [] = {0xFF11,236,0xFF12,1149,0xFFFF}; static EIF_TYPE_INDEX gen_type2_1150 [] = {0xFF11,1149,0xFFFF}; static...
[ "sadman.hasan99@live.com" ]
sadman.hasan99@live.com