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
66da179279f10a1e7dc927b27f5771226668dfb4
10f3d98ff5d67200141a66d3ca81c060d5a54b3e
/JsonParser/valuetype.h
7756f37e97d7d5ddb32902d41d35f8f96c87a4e3
[]
no_license
melihovv/JsonParser
7142629af6911ef9306bbd7eda1a347eca8f8b07
7c9de592b7879bac86542205c5215fe0674f1765
refs/heads/master
2021-01-10T07:33:40.550994
2016-02-11T18:12:21
2016-02-11T18:13:02
44,845,915
1
0
null
null
null
null
UTF-8
C
false
false
473
h
/*! *\file valuetype.h *\author Alexander Melihov <amelihovv@ya.ru> *\version 0.0.1 * *\license This code is distributed under the very permissive MIT License but, * if you use it, you might consider referring to the repository. * * The file contains declaration of json value type. */ #ifndef VALUETYPE_H #def...
[ "amelihovv@ya.ru" ]
amelihovv@ya.ru
c0a539e34f67c2bfa8523692c813bb70a41f74df
a43de57550a61fc3d69fccbb9042cb4c4d802fbf
/clox/memory.h
71ea2a2509a67e97d4a2d43173b7a01f4becf9a9
[]
no_license
kandersen/crafting-interpreters
c1e6b95df1a682a390fadce11d58c0acbe24b7b1
1695fb526f596a158e1d7215878a6bcbfae8c2ea
refs/heads/master
2023-05-10T14:59:12.472441
2021-06-05T22:44:51
2021-06-05T22:44:51
288,980,044
0
0
null
null
null
null
UTF-8
C
false
false
1,582
h
#ifndef CLOX_MEMORY_H #define CLOX_MEMORY_H #include "common.h" #define ALLOCATE(mm, type, count) \ (type*)reallocate(mm, NULL, 0, sizeof(type) * (count)) #define FREE(mm, type, pointer) reallocate(mm, pointer, sizeof(type), 0) #define GROW_CAPACITY(capacity) \ ((capacity) < 8 ? 8 : (capacity) * 2) #define...
[ "kristoffer@arndalandersen.dk" ]
kristoffer@arndalandersen.dk
816f69f9fa998e5613bb6c3090d2919f2c98a4e8
ef051602f1d65d8f784beb166145f1b8503ece54
/lib/nsif/nsif.c
ee7afa2a1f17bc17ed284da3d6d4cc7a69afb78f
[ "Beerware" ]
permissive
kaisaryousuf/RsaCtfTool
30c98297137da80b5139542672adb7fb911c2ff3
d99b1f38fab0e013e7b0ed485804c563ba45400d
refs/heads/master
2023-08-04T13:09:50.282045
2022-07-12T20:11:14
2022-07-12T20:11:14
234,890,729
0
0
NOASSERTION
2022-07-14T22:57:20
2020-01-19T11:43:53
Python
UTF-8
C
false
false
1,755
c
#include <stdlib.h> #include <stdint.h> #include <stdio.h> #include <gmp.h> /* * NSI Authors , Enrique Santos, Vicent Nos, Francisco Izquierdo * https://github.com/pedroelbanquero/prime-grimoire * C++ Algo improvements, BanachTarskiVeli * Solution of banachtarskiveli to NSI/ RSA POISONING / Powe Modular factoriza...
[ "pedro@blackhole.consulting" ]
pedro@blackhole.consulting
40adf6112808d090bf72ab219c9a00468cebc4cc
32d1fbbdbce7003756f98961cfc9bdbcf059f827
/third_party/mosquitto/test/lib/c/08-ssl-connect-cert-auth.c
58f7da0ffbe1352f419ecc03801cc623428fa5b1
[ "BSD-3-Clause", "EPL-1.0", "CPL-1.0", "LicenseRef-scancode-generic-export-compliance", "MPL-1.1", "Apache-1.1", "Apache-2.0", "LGPL-2.1-only", "MIT" ]
permissive
jkrvivian/create_chid_benchmark
45d7c8f7999b6c0316ff515eec90d67f68c71085
f6bfa387c834aeafe27bc0aa33bc03bb1cedccbc
refs/heads/master
2020-11-28T17:06:16.831238
2019-12-24T05:31:45
2019-12-24T05:56:50
229,876,385
0
0
MIT
2019-12-24T05:28:32
2019-12-24T05:28:32
null
UTF-8
C
false
false
888
c
#include <errno.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <mosquitto.h> static int run = -1; void on_connect(struct mosquitto *mosq, void *obj, int rc) { if(rc){ exit(1); }else{ mosquitto_disconnect(mosq); } } void on_disconnect(struct mosquitto *mosq, void *obj, int rc) { run =...
[ "vulxj0j8j8@gmail.com" ]
vulxj0j8j8@gmail.com
8522c1c5109fc3f5b64d4c276fc3eb2143caa537
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/g++.dg/init/array54.C
f6be350ba72b1a7a19086d31361c4e1d44f0d251
[ "FSFAP", "LGPL-2.1-only", "LGPL-3.0-only", "GPL-3.0-only", "GPL-2.0-only", "GCC-exception-3.1", "LGPL-2.0-or-later", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C
false
false
174
c
// PR c++/90947 // { dg-do run { target c++11 } } #include <atomic> static std::atomic<int> a[1] { {1} }; int main () { if (a[0].load () != 1) __builtin_abort (); }
[ "rink@rink.nu" ]
rink@rink.nu
073e0494b045f3036d941a73c258328eb6f61b12
f8739be99859de6d3be2e5552f55b876fe33c065
/trunk/Kernel/Scaler/RL6410_Series_Scaler/Header/RL6410_Series_McuCommonInclude.h
6c5f511b7b7985a1b74476ff3519e33b1ad6d79d
[]
no_license
Llong1/avita_rtd2776
a0bdf1a4626ce0d6485698baecb6290f739fe303
3b5e2fbca5bf5d6d48f474728a5804d4063fb614
refs/heads/master
2020-12-06T16:35:11.901454
2019-12-06T07:46:09
2019-12-06T07:46:09
232,507,288
7
5
null
2020-01-08T07:42:30
2020-01-08T07:42:29
null
UTF-8
C
false
false
25,870
h
/********************************************************************************/ /* The Software is proprietary, confidential, and valuable to Realtek */ /* Semiconductor Corporation ("Realtek"). All rights, including but not */ /* limited to copyrights, patents, trademarks, trade secrets, mas...
[ "lonn.tw@gmail.com" ]
lonn.tw@gmail.com
e2f145c60544a07f34b32ef94da56b50fe1382aa
d6b2e5db7681e38270f4e03242d444387f717ded
/src/bbl_httpd_resources.c
be3bc9860d1079e8f481702413fdcad8fa6c7a06
[ "MIT" ]
permissive
kolbyjack/32-bubbles
a7266b078ce2490ca8fcabfc15645f3ae7a5af14
d89bdc477bc89d1bc75522686670dbac6d6b5c21
refs/heads/master
2020-12-27T20:04:01.313549
2019-04-09T16:42:28
2019-04-09T16:42:28
147,570,509
0
0
null
null
null
null
UTF-8
C
false
false
159
c
#include "bbl_httpd_resources.h" #include "bbl_utils.h" BBL_INCLUDE_RESOURCE(index, "res/index.html"); BBL_INCLUDE_RESOURCE(favicon, "res/bubbles.png");
[ "kolbyjack@gmail.com" ]
kolbyjack@gmail.com
60ede09cbb8b129e3af526680a838f11ce9205ab
3db023edb0af1dcf8a1da83434d219c3a96362ba
/windows_nt_3_5_source_code/NT-782/PRIVATE/POSIX/PROGRAMS/HELLO/PSXHELLO.C
bc5b225ebda4555d5bea07bc7857f5a0484929f4
[]
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
436
c
#include <stdio.h> extern int __argc; extern char **__argv; int main( int argc, char **argv ) { int i; printf( "Hello world. I am a Posix application. My command line arguments were:\n" ); printf( "__argc: %08x __argv: %08x (%08x)\n", __argc, __argv, argv ); printf( "argc: %u\n", argc ...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
74ecaf8e6fd300e7a821b4c117f3d41c41b1cbf5
50bd90c1d8e9c4f0b83484efd86f8e2b520b8744
/data.c
8253ea8339098c0a509bd7036ac355a4ad2365b6
[]
no_license
rashwin1989/matlab_LLE_Ashwin
b8db200d8e118de625ba2eb88cd7a3ce494ffac9
b1b70f4f7b6417cd84af05cfa82395dc6f53f2ef
refs/heads/master
2021-07-07T21:17:33.966723
2017-10-03T18:57:39
2017-10-03T18:57:39
105,691,508
0
0
null
null
null
null
UTF-8
C
false
false
2,178
c
#include "data.h" //------------------------------------------------------------------------------- // Data for species parameters //------------------------------------------------------------------------------- extern int n, // num of species *idx_species, // idx of species according to data...
[ "ashwin.chem@gmail.com" ]
ashwin.chem@gmail.com
4793d831cfff0cb5e317b6fb97a9991bb02b8700
04343fcc9b80e774e3615d19457a87b5e527e2cf
/includes/libft/ft_strlcat.c
e2d75632f6420352ca6b620ac896cdaabdfe110e
[]
no_license
Iridel/fractol
79669581c66c259afaac83beaf729ade10f3ed99
4a13bceda867e7ec0ab942acf7eeb091fcbf976c
refs/heads/master
2021-08-30T05:10:22.273757
2017-12-16T04:23:27
2017-12-16T04:23:27
114,432,912
0
0
null
null
null
null
UTF-8
C
false
false
1,264
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlcat.c :+: :+: :+: ...
[ "dhill@e1z2r7p17.42.us.org" ]
dhill@e1z2r7p17.42.us.org
e6c2a0a7cd1dfea2b8c5623fdb803c6e78b39a33
8dff49c4dc92983cbd0934725f97224fd9754d1d
/ZeroJudge/a647.c
66346d0c018f86dd7740b5a91ca84883b5ad22af
[]
no_license
cherry900606/OJ_Solutions
1c7360ca35252aec459ef01d8e6a485778d32653
b70f8baed30f446421fd39f311f1d5071a441734
refs/heads/main
2023-05-14T13:38:44.475393
2021-06-19T07:29:35
2021-06-19T07:29:35
378,026,385
1
0
null
null
null
null
UTF-8
C
false
false
547
c
#include <stdio.h> int main() { int n; scanf("%d",&n); while(n--) { int m,p; double ans; scanf("%d %d",&m,&p); ans=(double)(p-m)/m*100; if(ans>=0.0) printf("%6.2lf%% ",ans+1e-6); else if(ans-(1e-6)>-0.005) ...
[ "cherry900606@gmail.com" ]
cherry900606@gmail.com
fed840314a9a04e4060bfd8a517ba40347718706
634f7d284b7061c5bc444c35260683bdcb80c9fa
/RR Robot Inverse Dynamic Control/RR_rsim_rtw/RR_data.c
683285174ea4658771d3d1da23739fca8441d099
[]
no_license
mvp321/RR-Robot-Inverse-Dynamic-Control
fae8a942681a0b24519880cbd2b26d9d48f2b4d6
9e2f8469cf6efbbf1a533b60a4cfbba1686a2728
refs/heads/main
2022-12-24T06:11:18.015999
2020-10-12T17:42:06
2020-10-12T17:42:06
303,467,641
0
0
null
null
null
null
UTF-8
C
false
false
1,905
c
/* * RR_data.c * * Academic License - for use in teaching, academic research, and meeting * course requirements at degree granting institutions only. Not for * government, commercial, or other organizational use. * * Code generation for model "RR". * * Model version : 1.66 * Simulink C...
[ "noreply@github.com" ]
mvp321.noreply@github.com
80fe80cb0a3c8df9a5a1a9871730dfc200b53530
30d9d3b60817ee21ba96a2c18b30f5c4b3956a73
/bbw/include/gui/window.h
a2e2900bad79c7ed7332a06f6423fb5cf32773c0
[]
no_license
arcln/epitech-corewar
99880156ea07bba0475908edabc9ca45ab3d18b1
0b9220f8ea5245c60185c8c30b14e8c82d35a338
refs/heads/master
2021-06-18T19:15:22.698724
2017-06-27T03:02:29
2017-06-27T03:02:29
null
0
0
null
null
null
null
UTF-8
C
false
false
363
h
/* ** window.h for corewar in /home/onehandedpenguin/Dev/CPE_2016/CPE_2016_corewar/bbw/include/gui/ ** ** Made by Paul Laffitte ** Login <paul.laffitte@epitech.eu> ** ** Started on Sat Mar 25 18:32:06 2017 Paul Laffitte ** Last update Sun Mar 26 21:55:50 2017 Paul Laffitte */ #ifndef WINDOW_H_ # define WINDOW_H_ i...
[ "arthur.chaloin@epitech.eu" ]
arthur.chaloin@epitech.eu
e709d44207cc044bbd5dc82607973800dd99c19d
464d2d7b9669427e285b4bee0613878b5d2229dd
/trunk/library.h
e85f8927ddb6b6afa4bd7dcac6f9d1847ea68aaf
[]
no_license
BackupTheBerlios/beepmedialib-svn
a505530f09ec2adef1bfd125e369ddf87717b76b
fed0fdf3549266d66982ed81aea9c43498d75ecc
refs/heads/master
2020-06-12T18:56:30.376448
2004-10-27T15:59:44
2004-10-27T15:59:44
40,608,343
0
0
null
null
null
null
UTF-8
C
false
false
1,715
h
/* Media Library - A XMMS/Beep-Media-Player plugin * Copyright (C) 2002 Paul Fleischer <proguy@proguy.dk> * and (C) 2004 Alexander Kaiser <medialibrary@alexkaiser.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as publi...
[ "groer@e1149566-6be7-0310-98cd-fa1ed86bba82" ]
groer@e1149566-6be7-0310-98cd-fa1ed86bba82
c5a72b13ba517b246374f4ce3863c2cd2dd6af07
c2fa77235aed272ed290b5970ac10fe0d0ed88e8
/include/bolib/file/MmlFile.h
1ee65a17af48b99644a99035dc543732e1a82bea
[ "MIT" ]
permissive
boldowa/bolib2
5359dc60e997f60ca0b613550894a56e01802295
1671662b7e009882abdad94a68d86e5229bc22b0
refs/heads/master
2020-03-17T14:30:00.575372
2018-06-21T14:22:29
2018-06-21T14:22:29
133,674,242
0
0
null
null
null
null
UTF-8
C
false
false
1,169
h
/** * @file MmlFile.h */ #ifndef MMLFILE_H #define MMLFILE_H #include "bolib/btypes.h" #include "bolib/file/TextFile.h" #ifdef __cplusplus extern "C" { #endif /** * public accessor * TODO : fix it */ typedef struct _MmlFile MmlFile; typedef struct _MmlFile_protected MmlFile_protected; typedef struct _MmlFile_...
[ "boldowa.q@gmail.com" ]
boldowa.q@gmail.com
9e698a85d718a714146324edb2e7953b35f4451d
9aa9e78fa4e779c00db6f943f6740e9ab0b25148
/src/SSUOS_P4/ssuos/src/kernel/proc/proc.c
919bc143b0417c17769c395749d6513052f58698
[]
no_license
CheeseCri/SSUOS
22fb5f25c2d429eb51dcab8d0416b10ea296615b
5f88560b23c94359b6614535a184efae8d4c6eeb
refs/heads/master
2020-03-28T10:37:40.969548
2018-12-13T14:05:13
2018-12-13T14:05:13
148,128,036
0
0
null
null
null
null
UTF-8
C
false
false
11,913
c
#include <list.h> #include <proc/sched.h> #include <mem/malloc.h> #include <proc/proc.h> #include <ssulib.h> #include <interrupt.h> #include <proc/sched.h> #include <syscall.h> #include <mem/palloc.h> #include <device/console.h> #define STACK_SIZE 512 struct list plist; struct list level_que[QUE_LV_MAX]; struct ...
[ "yunghn3@gmail.com" ]
yunghn3@gmail.com
b98d286307ce87e2b45fbe093a6d0ac16e28074d
9d8fe725e79e5856b8b863abf0907a6a5f6f8a3c
/805DAEC.c
935bd4e050890ade2115e17d368c61242611da5d
[]
no_license
camthesaxman/ruby-c
08bb12c3c6662b113f558a2b43a4f232fedcbd91
afb59d795416468362ddf942d4cb1fca638f2bd6
refs/heads/master
2020-12-30T16:45:53.246386
2016-09-11T22:33:27
2016-09-11T22:33:27
91,023,059
0
1
null
null
null
null
UTF-8
C
false
false
408
c
signed int __fastcall sub_805DAEC(int a1, int a2) { int v2; // r4@1 int v3; // r5@1 char v4; // r1@1 signed int result; // r0@3 int v6; // [sp+0h] [bp-10h]@1 v2 = a1; v3 = a2; memcpy(&v6, &gUnknown_08375350, 2); v4 = sub_805CD60(v2, 5u); if ( !v4 ) v4 = *((_BYTE *)&v6 + (Random() & 1)); Field...
[ "shadow962@live.com" ]
shadow962@live.com
00e91d600d9276aac70f25eecbd8fc84cb0443e9
fa65e06f2674281d1327640bdb4248e32433a0c3
/2ºAno/1ºSemestre/SO/pratica/03_11_2020/traduz1.c
bb61cea2d6e952b28d0b1af1df8e58858b652fdf
[]
no_license
Coutinho020/Apontamentos-ISEC
18598165e5e68ec09df8ed973067f33a486af89e
0a9d54282a52ce195214cd8fef4513247e0ea4af
refs/heads/master
2023-08-24T00:58:09.928213
2021-10-24T15:33:37
2021-10-24T15:33:37
null
0
0
null
null
null
null
UTF-8
C
false
false
1,094
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> int main(int argc, char const *argv[]) { char letter; char palavra[10]; int res, estado; do{ printf("Letra: "); fflush(stdout); scanf(" %c", &letter); if(letter == 'i'){ // se a ...
[ "brunoalexandre3@hotmail.com" ]
brunoalexandre3@hotmail.com
8c17a1ad774639b0a1b2f37c7abf48bba2db34db
69145a7ffd3637658cad1200074885221311b29b
/Pods/Headers/Public/XLData/XLData.h
70f412027c264396428324db2949e70d38f8a01e
[]
no_license
cheskiewicz-carecloud/PatientDemo
095c387c5e5e90cf8c1a7c8278ec9124d34f20d6
cc70a359ed8998a2cc05afb05856c99015170e65
refs/heads/master
2021-01-19T06:50:16.794593
2016-08-17T18:22:54
2016-08-17T18:22:54
65,848,673
0
1
null
null
null
null
UTF-8
C
false
false
39
h
../../../XLData/XLData/XL/Core/XLData.h
[ "chuckc@appzooka.com" ]
chuckc@appzooka.com
cec955f8ec33ea369809367cef309e92eec3772a
87aebce15bc7f9fa99dc75d167d646880b2b780f
/Proyecto CodeBlocks/ParserMicro/micro.tab.h
e606b41f11f31ab403c5c5734a8507e40dc8c176
[]
no_license
pablo4225/SSL-TP2
adeaa5ad14b13ccf9b695e88162f3f4c6608cf10
9c5faebff4d179d3479bf6d8adf75144f3491dde
refs/heads/master
2020-04-02T19:45:07.337377
2018-11-08T04:04:22
2018-11-08T04:04:22
154,745,189
0
0
null
null
null
null
UTF-8
C
false
false
2,914
h
/* A Bison parser, made by GNU Bison 2.7. */ /* Bison interface for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2012 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 ...
[ "pabloandresgola@gmail.com" ]
pabloandresgola@gmail.com
df33fa35bc185e825a8957dbfd6ff1b1eb3fad5f
5d3c1be292f6153480f3a372befea4172c683180
/trunk/ProxyLauncher/Hardware Proxies/Teleo/teleo/samples/stepper.c
73acd464d7ae6937a2cc0ebf56e4bee73395a20f
[ "Artistic-2.0" ]
permissive
BackupTheBerlios/istuff-svn
5f47aa73dd74ecf5c55f83765a5c50daa28fa508
d0bb9963b899259695553ccd2b01b35be5fb83db
refs/heads/master
2016-09-06T04:54:24.129060
2008-05-02T22:33:26
2008-05-02T22:33:26
40,820,013
0
0
null
null
null
null
UTF-8
C
false
false
1,667
c
/* Copyright 2003 MakingThings LLC. */ /** \file stepper.c Example of two devices interacting together */ #include <stdio.h> #include <stdlib.h> #include "TeleoMioAin.h" #include "TeleoStepperLow.h" #include "TeleoEasy.h" // local function for callbacks TeleoError valueUpdate ( TMioAin* tmain, float value ...
[ "hemig@2a53cb5c-8ff1-0310-8b75-b3ec22923d26" ]
hemig@2a53cb5c-8ff1-0310-8b75-b3ec22923d26
e524854e7b51cb2981f0db58a816291e7ab20beb
daeabaa388e72c2983099e9670e3e2305970cfbb
/BomberMan3D/Intermediate/Build/Win64/BomberMan3DEditor/Development/Engine/SharedPCH.Engine.ShadowErrors.h
ec224620de120024670017d417b4a98c5f7f688e
[]
no_license
Dambob/SpeechGraphics_Test
1ff044ba2423f9c0bcea3cd43c53ac0aeedf2f89
86a347d6514fb99566334dd7dbc4b23a5e3224f5
refs/heads/main
2023-08-22T07:28:07.254896
2021-11-01T17:13:54
2021-11-01T17:13:54
422,161,874
0
0
null
2021-10-31T03:29:53
2021-10-28T10:34:08
C++
UTF-8
C
false
false
9,333
h
// PCH for D:\Program Files\Epic Games\UE_4.26\Engine\Source\Runtime\Engine\Public\EngineSharedPCH.h #define IS_PROGRAM 0 #define UE_EDITOR 1 #define ENABLE_PGO_PROFILE 0 #define USE_VORBIS_FOR_STREAMING 1 #define USE_XMA2_FOR_STREAMING 1 #define WITH_DEV_AUTOMATION_TESTS 1 #define WITH_PERF_AUTOMATION_TESTS 1 #define ...
[ "damien-mca@hotmail.com" ]
damien-mca@hotmail.com
d7fbaf00733bca9e3aa9af0c2476d03ba2554e6d
e6575a14eaec45321f686298af07d1260549c663
/simple.c
9abc305ebf3670403768e99c3cbcc90baa1101c5
[ "Unlicense" ]
permissive
winksaville/test-mpscfifo2
71cd47a7fb394e8ad260e9f7d06546c0d0a340ac
c35350576f6e2cd1d0c9d280d4de4cd9145a3b6c
refs/heads/master
2020-12-01T18:24:39.359341
2016-08-18T16:09:28
2016-08-18T16:09:28
65,943,263
0
0
null
null
null
null
UTF-8
C
false
false
5,165
c
/** * This software is released into the public domain. */ #define NDEBUG #define _DEFAULT_SOURCE #include "mpscfifo.h" #include "diff_timespec.h" #include "dpf.h" #include <sys/types.h> #include <pthread.h> #include <assert.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> /** ...
[ "wink@saville.com" ]
wink@saville.com
2a9515ef42a0d3a4f027d25d6883d4112c9ed173
e0fc59114ce3f21b672dd956d9890ad7f0448aec
/fnctions.c
eaddcd49e664a2f8b551a09ae716aca56ca85272
[]
no_license
asn96/Gestion-d-une-ecole-en-langage-C-en-utilisant-les-fichiers
704a894dc066f5ee218853f0f4e88588e257bc5a
3e97f7f46d716dff7242e9a4a99b3f395c78efd6
refs/heads/master
2020-04-04T17:08:26.805181
2018-11-01T10:25:35
2018-11-01T10:25:35
156,108,427
0
0
null
null
null
null
WINDOWS-1250
C
false
false
25,161
c
#include <stdio.h> #include <stdlib.h> #include <string.h> int menu1(); int menu2(); typedef struct etudiant{ char p[20]; char n[20]; char num[20]; }etudiant; typedef struct identifiant{ char log[20]; char mot[20]; }identifiant; typedef struct professeur{ char p[20]; char n[20]; char num[20]; }p...
[ "papandiay@gmail.com" ]
papandiay@gmail.com
576aa3c156f37c7b664649bfa1d78b88964c4ac2
f17a58bf47595c9b9615c24dc2fd5cce8357bbb9
/0x0B-malloc_free/3-alloc_grid.c
bc1c669af7eee191b66c837072821308e815267e
[]
no_license
realtalishaw/holbertonschool-low_level_programming
b7114c67e4612c66e499ce664df1289829c2332f
308fd51f923cc30e909ebf5618cba96983e6878d
refs/heads/master
2023-03-09T21:29:04.584449
2021-02-24T02:59:30
2021-02-24T02:59:30
271,347,852
0
0
null
null
null
null
UTF-8
C
false
false
676
c
#include "holberton.h" #include <stdlib.h> #include <stdio.h> /** * alloc_grid - fdsdf * @width: fdoskfl;sd * @height: fdkhjfks * * Return: fdjslkd */ int **alloc_grid(int width, int height) { int **array; int i, n, x, f; if (width <= 0 || height <= 0) return (NULL); array = malloc(height * sizeof(int *...
[ "misstalishawhite@gmail.com" ]
misstalishawhite@gmail.com
d5de2262ad79e72d4ee903d1d1a68e391029a83c
3762b248310751fcb9e951d22273b138781a3570
/project/liefeng/app/_cal/OV_cal.c
75b31ff358cb78b4a6bf57bc926c4bfbc9cf8423
[]
no_license
bkseastone/A7M_liefeng
9ea88cb1e598a940853e219af45a728cf833bb2c
45f31538d787371e09f91ba7bfeee7b5d454615f
refs/heads/master
2021-01-21T04:42:35.918568
2016-07-08T20:39:37
2016-07-08T20:39:37
55,703,395
0
1
null
2016-04-14T06:53:25
2016-04-07T14:55:19
C
UTF-8
C
false
false
72
c
#include "OV_cal.h" #include "OV7620.h" //status OV_binary(uint8 ) //{}
[ "bkseastone@gmail.com" ]
bkseastone@gmail.com
947a45fef1411071a776bd3f040fc802ba7d8a85
5545054ac7ba1b560400b6a18c78142c2db51b99
/HW3/Bear/Bear.c
e90cf3881191df72e7a841f6d956a20cafe753d9
[]
no_license
NicolssKTH/Concurrent-Programming
380d32464a60f73e911749e8ef81e28a9e9da81f
c862a99e8871e37c552012ea6c754b3875667d09
refs/heads/master
2021-05-02T11:13:48.504229
2018-02-22T14:36:13
2018-02-22T14:36:13
120,772,857
0
0
null
null
null
null
UTF-8
C
false
false
2,091
c
#ifndef _REENTRANT #define _REENTRANT #endif #include <pthread.h> #include <stdlib.h> #include <stdio.h> #include <stdbool.h> #include <time.h> #include <sys/time.h> #include <limits.h> #include <semaphore.h> #define MAXBEES 10 /* maximum number of workers */ #define POTSIZE 50 /* maximum number of honey */ sem_t potE...
[ "Nicolss@kth.se" ]
Nicolss@kth.se
02f1b2c4c19ef097a93bd433696ee9a5f100941b
063fb4250a462e1678afc8dc318bb46e84a73c8d
/Sistema operativo/c1/nsystem64-beta2/ex-msgs/msgprodcons.c
17643b480d405dce14ac64f81af343b672ca65b9
[ "MIT" ]
permissive
TioComeGfas/ICI_UBB
1987fc38ed9a8e9bf6ece03cf40b702c8dfd632c
2600c95dd2925466aa1d6a7559ffd76f1d87d981
refs/heads/master
2023-05-23T02:20:35.612019
2021-06-15T14:41:59
2021-06-15T14:41:59
256,333,318
1
0
MIT
2020-04-17T17:43:50
2020-04-16T21:25:34
JavaScript
UTF-8
C
false
false
2,295
c
#include "nSystem.h" /* Este ejemplo no termina nunca. Solo chequea la robustez de nSystem */ nSem rand_sem; int myrand() { int ret; nWaitSem(rand_sem); ret= rand(); nSignalSem(rand_sem); return ret; } int Producer( nTask consumer_task, int NoOfItems, int maxdelay ) { int i, product, sum=0; nSetTask...
[ "fredymoncada777@gmail.com" ]
fredymoncada777@gmail.com
cc611afca97c1db11a7a61c28a859df8da52818a
0e82d757b69d98f36015287c204efe5708ad507e
/libft/ft_itoa.c
a89caf594f35a5054fddda41edb08dd15059e4b9
[]
no_license
cboiron/Fractol
2f438c1dcc0154d64086b2399489051acd1029f7
949ecb3ad4ca5d9b55ab09ef05f3f7749358db8f
refs/heads/master
2020-03-15T11:50:30.210023
2018-05-04T11:11:35
2018-05-04T11:11:35
132,129,800
0
0
null
null
null
null
UTF-8
C
false
false
1,459
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_itoa.c :+: :+: :+: ...
[ "cboiron@e2r10p9.42.fr" ]
cboiron@e2r10p9.42.fr
85fadd04c43ac324d3a92f05138082244299fe67
4bf4f57a652e22dc302fff010f398fae3a27a97b
/projects/vogeld/teammate2Dominion/cardtest2.c
aee972de742bc31f9bad319ed8ab4c3f797285fd
[]
no_license
RohitRamachandran/cs362w16
e365862ca7fa7632873ff8b02daee4e551aeb40a
30d0f0f2fd8f7dd804c6a23a15a338d9adb5a3cb
refs/heads/master
2021-05-05T12:12:38.134365
2016-03-16T20:08:37
2016-03-16T20:08:37
null
0
0
null
null
null
null
UTF-8
C
false
false
7,957
c
/* --------------------------------------------------------------------------- * David Vogel * CS362 Assignment 3 * Due Feb 3, 2016 * Filename: cardtest2.c * testing village card * * Include the following lines in your makefile: * cardtest2: cardtest2.c dominion.o rngs.o * gcc -o cardtest2 -g cardtest2...
[ "skrmshndr@gmail.com" ]
skrmshndr@gmail.com
0515d94787be9ea47c94a80aa522c09147916ea5
60e43bbcc9f99f775c9a27e155d8cf999baa3e26
/pass2OfTwoPassAssembler.c
48d7cf4ddb3dc018f5bf23d3ff64bf36fc5f5b48
[]
no_license
yogeshster/SystemSoftware
4a0efbe900396408badfd05c47840d7a91cecf28
dce25fea0e8f6aa77afbc205ce6a1e9276371c6c
refs/heads/master
2021-01-01T16:55:51.965418
2014-04-02T06:15:56
2014-04-02T06:15:56
null
0
0
null
null
null
null
UTF-8
C
false
false
7,261
c
#include<stdio.h> #include<stdlib.h> #include<string.h> FILE *fp1,*fp2,*fp3; void listing() { int i,j,k,l,m,flag,flag1,temp,flags=0,flagn=0; char str[50],str1[50],str2[50],str3[50],str4[50],str5[10],t[10]; fp1=fopen("intermediate.txt","r"); fp2=fopen("oc.txt","w+"); while(!feof(fp1)) { flag=0; fscanf(fp1,...
[ "yogeshjagadeesan@gmail.com" ]
yogeshjagadeesan@gmail.com
8ab641aa03945a0caa630e361c026185d42530da
d285e1576dd192b7c75e2e6e75b9480d3bba5ac1
/19.remove-nth-node-from-end-of-list.c
aa0d6f83901398cd1099a11f2ec8b30f42525d28
[]
no_license
Peashoot/MyLeetCode
1b19d197520fcbef64055f7d58bf96349e973eab
ea33a8afecf61b8bc9858b070d88e78ab17948ab
refs/heads/master
2020-05-15T03:03:26.247512
2020-03-05T09:53:38
2020-03-05T09:53:38
182,060,669
0
0
null
null
null
null
UTF-8
C
false
false
1,504
c
/* * @lc app=leetcode id=19 lang=c * * [19] Remove Nth Node From End of List * * https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/ * * algorithms * Medium (34.13%) * Total Accepted: 376.9K * Total Submissions: 1.1M * Testcase Example: '[1,2,3,4,5]\n2' * * Given a linked list, ...
[ "1106328900@qq.com" ]
1106328900@qq.com
831b1600e9276e19a8dc8e2801a66250998a943b
78bf81cd855feadbd07a8a9ae6afb7b92c708fa1
/17p.c
15fee65a33418960f3fd47170428421a18c9ae13
[]
no_license
BRUNORAJA/c-program
cf2d09ec2510a3311a6c4261f6adb04868f21909
60b1cf926d630c9d259bb1ccd7d2f042fecdd84a
refs/heads/master
2021-05-10T12:34:36.613374
2018-03-28T10:33:37
2018-03-28T10:33:37
118,444,629
0
0
null
null
null
null
UTF-8
C
false
false
237
c
#include <stdio.h> #include<conio.h> int main() { int l,r,gcd,num,i; scanf("%d %d",&l,&r); for(i=1;i<=l && i<=r;i++) { if(l%i==0 && r%i==0) { gcd=i; } } num=(l*r)/gcd; printf("%d",num); return 0; }
[ "noreply@github.com" ]
BRUNORAJA.noreply@github.com
42d043522d8c0e66df1386a09646dc8544ee2330
1546047aa292c7971084616cf555c4038efd2c2d
/C_Programs/Problems on String/reversestring.c
c04f17dada12a0d3f93791d21c7795a7d98473e7
[]
no_license
Gaurisunil/C_Programs
649f8fea2e934a073229a9030be38df50f0293a7
6077cb892704f721634f55014d8068ceece48812
refs/heads/master
2022-12-28T10:54:39.360177
2020-10-10T15:29:22
2020-10-10T15:29:22
296,350,976
0
0
null
null
null
null
UTF-8
C
false
false
504
c
#include<stdio.h> void Reverse(char Str[]) { char temp; char *Start=NULL; char *End=NULL; if(Str==NULL) { return; } Start=Str; End=Str; while(*End!='\0') { End++; } End--; while(Start<End) { temp=*Start; *Start=*End; *End=temp; Start++; End--; } ...
[ "noreply@github.com" ]
Gaurisunil.noreply@github.com
9edad1d6c12c98d1be7c9b988ad6f28c81592fd1
da0f4c558b26e335e4e35593114b4bada791dbd9
/gltest/gltest.h
de76b48bfb91f7eedfc5ac60d744db379ae0b8ff
[]
no_license
pizzapress/glidehqplusglitch64
92782939c0d0ea1cd24c9794a9f9452d6069a8fb
f8c6ad607725314991c0e98dc653824f4c10fdc3
refs/heads/master
2016-08-09T13:22:38.838299
2016-01-28T22:49:05
2016-01-28T22:49:05
50,619,222
1
0
null
null
null
null
UTF-8
C
false
false
221
h
#include <windows.h> #include <windowsx.h> #include <mmsystem.h> #include <commctrl.h> #include <stdlib.h> #include <stdio.h> #include <GL/gl.h> #include <GL/glu.h> #include "glext.h" #include "resource.h"
[ "brddeth@74557250-ff2b-11dd-9fdb-3debd5008f28" ]
brddeth@74557250-ff2b-11dd-9fdb-3debd5008f28
341d2164a439b78056b8b2e640245732bee03465
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/net/rras/ip/sample/utils.h
eb304321c3e55b52252f918ae4c524dfb6554951
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C
false
false
489
h
/*++ Copyright (c) 1999, Microsoft Corporation Module Name: sample\utils.h Abstract: The file contains miscellaneous utilities. --*/ #ifndef _UTILS_H_ #define _UTILS_H_ // Worker Function Processing // functions DWORD QueueSampleWorker( IN WORKERFUNCTION pfnFunction, ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
899499ed79503b318bf11d63e9ec6895ae5471e6
a3031a3be8bddd2cfbeb713f5f74e6da02fe480a
/PR1/copystring.c
812247be8be5807fb04069a213f8ebe9ea4b1c48
[]
no_license
batas2/UMK
8224c06231869245a14a24a6887a76445181cca2
a06bd95711f3626b225739139dff7cc2ab93f7b6
refs/heads/master
2016-09-06T21:42:09.028372
2010-10-21T11:18:02
2010-10-21T11:18:02
340,466
0
0
null
null
null
null
UTF-8
C
false
false
237
c
#include<stdio.h> #include<stdlib.h> void kopiuj(char *s, char *t){ while(*t != '\0'){ *s = *t; s++; t++; } } int main(){ char x[] = "abcdf"; char *y; y = (char *)malloc(sizeof(char)*5); kopiuj(y, x); printf("%s\n", y); }
[ "batas2@interia.pl" ]
batas2@interia.pl
cf04ed49d432cd434bcbdb451fdf2b521385420b
4ac7f47064eefa9d063b4090403dddc4ff037c5e
/Modules/nettle/ecc-internal.h
ce1e34fb2117bc861272ab5159dd101cc20d6c0f
[ "MIT", "LGPL-2.0-or-later", "GPL-3.0-only", "LGPL-3.0-only", "GPL-2.0-only", "FSFUL" ]
permissive
RavenProject/ravenwallet-ios
b2068f680fc55d00bac994780229f54835d7856c
088a7dc893fd128905c035493b0f198ddc2c7f1c
refs/heads/master
2021-07-21T14:15:16.176175
2021-07-19T21:44:14
2021-07-19T21:44:14
153,649,338
24
27
MIT
2021-07-19T21:45:42
2018-10-18T15:48:45
C
UTF-8
C
false
false
12,983
h
/* ecc-internal.h Copyright (C) 2013, 2014 Niels Möller This file is part of GNU Nettle. GNU Nettle is free software: you can redistribute it and/or modify it under the terms of either: * the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of ...
[ "jmpBM4Q4Zb@gmail.com" ]
jmpBM4Q4Zb@gmail.com
b471ecce5108dbd287dde73d0a962f3f62988781
ceaef0ab261dca7b9df15b3e330e3e1522f0e8a8
/controllers/supervisor_controller/supervisor_controller.c
848b4cdefe8e789a8a782b7be77d493508e06674
[]
no_license
zgh551/LatControlBaseWebots
eff37023dd03957d5c86b98bf0b0c67d4ed82813
133263c872418c0b2ed10bf0680a4d34fa0dd22a
refs/heads/master
2022-11-18T02:39:52.691871
2020-07-17T05:00:05
2020-07-17T05:00:05
252,400,611
0
0
null
null
null
null
UTF-8
C
false
false
5,209
c
/* * File: supervisor_controller.c * Date: * Description: * Author: * Modifications: */ /* * You may need to add include files like <webots/distance_sensor.h> or * <webots/motor.h>, etc. */ #include <webots/robot.h> #include <webots/display.h> #include <webots/supervisor.h> #include <webots/utils/sys...
[ "zgh_email@163.com" ]
zgh_email@163.com
3b0f7283f007d96ec1a2862ed939583dd4e4eda5
2fd1039049b0ffd1d1ee1a42b45bd2b6d7bd55cc
/prog17.c
d2b0c9d715c793944f8ef324348ebdd771f0e1af
[]
no_license
bharanidharan-it19/myprograms
714f736b226f227e8cf04ec9a294ee776f354e0f
3b752b1eb736d96a8fc3a319eeefb68a4d06f613
refs/heads/master
2020-07-29T20:52:42.237462
2019-11-09T08:43:54
2019-11-09T08:43:54
209,953,448
0
0
null
null
null
null
UTF-8
C
false
false
309
c
#include<stdio.h> int main() { int n,a[n],i,sum=0; printf("enter how many numbers you want add:"); scanf("%d",&n); printf("enter the numbers you want to add:"); for(i=0;i<n;i++) { scanf("%d",&a[i]); } for(i=0;i<n;i++) { sum=sum+a[i]; } printf("the sum of the given numbers is %d",sum); return 0; }
[ "bharanidharan.it19@bitsathy,ac.in" ]
bharanidharan.it19@bitsathy,ac.in
db440048f9a175a0ae54185597f9543dd3613e9a
68579c0610b03776a6e3014249ae9cd1842a2422
/src/weapon_panel.c
40650cb5794add2a7d9d2bb59aa8f95550f0110b
[]
no_license
lnicosia/Doom-Nukem
6f96b72b635bd9d0394b1d8d280e709306253d19
8fb8310666a7a6825e353f0b6092a0b36030b0fb
refs/heads/master
2022-12-07T13:41:44.229650
2022-11-23T18:17:41
2022-11-23T18:17:41
179,064,995
13
4
null
null
null
null
UTF-8
C
false
false
2,330
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* weapon_panel.c :+: :+: :+: ...
[ "lnicosia@student.42.fr" ]
lnicosia@student.42.fr
0b5ec3318c7d244359bdb671794707d4571893b7
b02b0093b1acc4eecf74b1eefb611da6071bad53
/hw04/linux-5.4.67/drivers/staging/comedi/drivers/cb_pcimdas.mod.c
0f62a3bac7ed7c9dfc2731b71e65a940389ae861
[]
no_license
KmYongHwan/Linux-hw
41f1b2f0efd0d9cfaba291c8a8fd25b8a6ece17d
b4b82a8e73b221b02aad143469bada18adf3140a
refs/heads/master
2023-08-14T07:10:52.198430
2021-10-14T07:03:22
2021-10-14T07:03:22
413,544,805
0
0
null
null
null
null
UTF-8
C
false
false
1,626
c
#include <linux/build-salt.h> #include <linux/module.h> #include <linux/vermagic.h> #include <linux/compiler.h> BUILD_SALT; MODULE_INFO(vermagic, VERMAGIC_STRING); MODULE_INFO(name, KBUILD_MODNAME); __visible struct module __this_module __section(.gnu.linkonce.this_module) = { .name = KBUILD_MODNAME, .init = init_...
[ "kyh5678@gmail.com" ]
kyh5678@gmail.com
b63cc9a8de0e581e33eb7ca26dfca5efbd53b77f
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/multimedia/directx/dmusic/dmusic32/debug.h
09f2a72b8d28e758f2c1afc60b875c89bff415e8
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C
false
false
946
h
// // debug.h // // Copyright (c) 1997-1998 Microsoft Corporation. All rights reserved. // // Note: // #ifndef DEBUG_H #define DEBUG_H #include <windows.h> #define DM_DEBUG_CRITICAL 1 // Used to include critical messages #define DM_DEBUG_NON_CRITICAL 2 // Used to include level 1 plus important non-critical message...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
a4d7f57678674c436f1a17ef5b6dc64c5b30bc3b
a481f693e90ae3657b0581c663f6e1b6f8fbd658
/GccApplication1/project.c
c15b41fab983ddf651633fcd511b52a5428b8c8a
[]
no_license
Celine-W/Hit-asteroids
1165fa856210b1153e0907e2f4f86f36f45cd843
5a10e970de700b1c2d7710b5f264685366de240f
refs/heads/master
2020-09-28T17:45:04.024726
2019-12-09T08:59:08
2019-12-09T08:59:08
226,827,022
0
0
null
null
null
null
UTF-8
C
false
false
10,598
c
/* * project.c * * Main file * * Author: Peter Sutton. Modified by <YOUR NAME HERE> */ #include <avr/io.h> #include <avr/interrupt.h> #include <avr/pgmspace.h> #include <stdio.h> #include "ledmatrix.h" #include "scrolling_char_display.h" #include "buttons.h" #include "serialio.h" #include "ter...
[ "noreply@github.com" ]
Celine-W.noreply@github.com
9bb96b8afc86639b279152579286a5eddd8b34cd
632f6f14abb1dbdf86aca1506b8012392bef2a41
/source/hic_hal/nordic/nrf52820/flash.c
5b4ffad7cfe9524196104ce290de32b2e00ce142
[ "Apache-2.0" ]
permissive
ARMmbed/DAPLink
a34f7ce41d6bfc38d49283766a03280f52322f2a
19f797fa6396b726250c57eb9be80245a5f877dd
refs/heads/main
2023-08-23T20:37:22.744671
2023-06-29T19:36:00
2023-08-16T16:39:58
24,571,059
1,865
883
Apache-2.0
2023-08-16T16:39:59
2014-09-28T21:38:24
C
UTF-8
C
false
false
1,737
c
/** * @file flash.c * @brief Flash access functions for nrf52820 HIC * * DAPLink Interface Firmware * Copyright (c) 2021, 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 complia...
[ "mathias.brossard@arm.com" ]
mathias.brossard@arm.com
b7d825fab6844d27d2350bc5439f6154673157c8
fbe68d84e97262d6d26dd65c704a7b50af2b3943
/third_party/virtualbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/colormap.h
5f6b97fec10ea789fefb47c0e3bac991d79832cd
[ "GPL-2.0-only", "LicenseRef-scancode-unknown-license-reference", "CDDL-1.0", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "LGPL-2.1-or-later", "GPL-2.0-or-later", "MPL-1.0", "LicenseRef-scancode-generic-exception", "Apache-2.0", "OpenSSL", "MIT" ]
permissive
thalium/icebox
c4e6573f2b4f0973b6c7bb0bf068fe9e795fdcfb
6f78952d58da52ea4f0e55b2ab297f28e80c1160
refs/heads/master
2022-08-14T00:19:36.984579
2022-02-22T13:10:31
2022-02-22T13:10:31
190,019,914
585
109
MIT
2022-01-13T20:58:15
2019-06-03T14:18:12
C++
UTF-8
C
false
false
7,063
h
/* Copyright 1987, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in suppor...
[ "benoit.amiaux@gmail.com" ]
benoit.amiaux@gmail.com
7c28449f262869e3b3bb5ca23bd6395079f3eb9c
514cf223537e7c5cf224939b0f097bdf8d88a03b
/application_img_0/aws_clientcredential_keys.h
88d49dafcfde4d53837fc167694190b44d5f5758
[]
no_license
sylee2310/OTA-Firmware-Update
8c6eae2bb5a49f466c62a467f62fef5cab913790
9e44784f124763da28c17d2ee84086bde7e27162
refs/heads/master
2022-08-29T15:32:50.023921
2020-05-28T06:12:42
2020-05-28T06:12:42
null
0
0
null
null
null
null
UTF-8
C
false
false
5,741
h
/* * FreeRTOS V202002.00 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
[ "swanandcse@gmail.com" ]
swanandcse@gmail.com
a44cdce0ea54d3384aa4e74665c8e2c51d7264cc
b4045c3d2cdc618374e0d35eae154eb67e4e2325
/clapack/SRC/slapmt.c
c69227e76a4593df2a43184f30790b905018aaad
[]
no_license
idvr/sdkpub
0a4be94a4b1fb6a56386dd57f886cad12886c966
2f9650075bf286e405efa8eb76d809886361aaa5
refs/heads/master
2020-05-20T19:25:10.529009
2016-07-26T00:11:23
2016-07-26T00:11:23
68,386,104
1
0
null
2016-09-16T14:21:16
2016-09-16T14:21:16
null
UTF-8
C
false
false
3,228
c
#include "blaswrap.h" #include "f2c.h" /* Subroutine */ int slapmt_(logical *forwrd, integer *m, integer *n, real *x, integer *ldx, integer *k) { /* -- LAPACK auxiliary routine (version 3.0) -- Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., Courant Institute, Argonne Nationa...
[ "blomcode@gmail.com" ]
blomcode@gmail.com
7a77c208fc62552c71f8bc3b535f7620162da6aa
48e993329d7b894ec688d01bf29552bd90593316
/CPool_evalexpr_2018/lib/my/my_strncpy.c
6447b1adc4f747b9847fce2aefb8dbeb2ab08eff
[]
no_license
Braskalyne/Pool_epitech
a56351760cc0f69600563e01f5281d4932f816d3
5a9140640d0924df1049dde1943800131a611c40
refs/heads/master
2020-04-05T00:02:33.929381
2018-11-08T17:25:53
2018-11-08T17:25:53
156,381,005
1
0
null
null
null
null
UTF-8
C
false
false
379
c
/* ** EPITECH PROJECT, 2018 ** my_strncpy ** File description: ** Copy n characters from a string into another */ char *my_strncpy(char *dest, char const *src, int n) { int len; for (len = 0; src[len] != '\0'; len++); for (int i = 0; i < n; i++) { if (i < len) dest[i] = src[i]; ...
[ "agantelmi@localhost.localdomain" ]
agantelmi@localhost.localdomain
4431065591b107b968512e5feb187cd1f79ec75d
17bf4cb4275ce220a0016438541c23f4742e644c
/C_avance/semaine5/fonctions_string.c
c5d10733d65fe27f9ef35f4cc36a3251c3aba71f
[]
no_license
BJdeBordeaux/SU
0872196ebf5aca38461fd65dc2ac1c5de3773c29
40d541073a1259a568741938ee8685b172aaf6b5
refs/heads/master
2022-05-23T08:39:57.913391
2022-04-28T19:08:28
2022-04-28T19:08:28
250,496,423
11
7
null
2022-02-23T17:43:44
2020-03-27T09:47:39
JavaScript
UTF-8
C
false
false
1,134
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "devel.h" void *dupliquer_str(const void *src) { char **isrc = (char **)src; char *idest = strdup(*isrc); if(idest == NULL){ affiche_message("Erreur de strdup()."); return NULL; } *idest = **isrc; return (void*) idest; } void copi...
[ "qq870185814@163.com" ]
qq870185814@163.com
b2afbd43ef14709455d519c0c59d71a666ca729a
b098016c0a13f366f80e1a0b8d51026b4d422576
/QCA4020_SDK/target/quartz/demo/QCLI_uart_at_demo/src/qc_api/src/qc_api_zigbee.c
8eb6a5843ce53ccc406e49cc9138c18facdd718e
[ "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "MIT", "LicenseRef-scancode-public-domain-disclaimer", "LicenseRef-scancode-unknown-license-reference", "HPND", "GPL-2.0-onl...
permissive
r8d8/lastlock
26a939556538d7ea84dc22f3c656caaa50429f70
78c02e5fbb129b1bc4147bd55eec2882267d7e87
refs/heads/master
2020-04-08T08:53:33.033910
2019-09-07T20:44:32
2019-09-07T20:44:32
159,198,095
1
0
Apache-2.0
2019-11-05T23:49:21
2018-11-26T16:18:05
C
UTF-8
C
false
false
288,428
c
/* * Copyright (c) 2018 Qualcomm Technologies, Inc. * All Rights Reserved. */ // Copyright (c) 2018 Qualcomm Technologies, Inc. // All rights reserved. // Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) // provided...
[ "ckryvomaz@gmail.com" ]
ckryvomaz@gmail.com
71330f15975890f87542cfe9475d17d3b1e3ec6b
a65e2aac013b48ddfe5d6a7d108c2b84855d1148
/boot/zephyr/include/hal/hal_bsp.h
8b52f271b38e8f13209ddc0234214286cd7b0f6e
[ "Apache-2.0", "BSD-3-Clause" ]
permissive
mcu-tools/mcuboot
25ccdee3b1d319e09c9381cd00bc854efdc0142b
e188dbb0e1c1e2e2cecd627fbf2e13042222b1da
refs/heads/main
2023-08-30T09:17:10.520597
2023-08-29T06:43:16
2023-08-29T14:01:02
76,305,806
623
320
Apache-2.0
2023-09-13T11:46:03
2016-12-12T23:53:39
C
UTF-8
C
false
false
2,048
h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
[ "david.brown@linaro.org" ]
david.brown@linaro.org
236aeb5f9cb1f37d693a2ebe758353e5269f2a39
5c255f911786e984286b1f7a4e6091a68419d049
/code/2dd60280-7ed1-4827-adb3-926f41d2bd0b.c
e55c525d371e7a22941070020e371c87b7c44542
[]
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
253
c
#include <stdio.h> int main() { int i=4; int j=14; int k; int l; j = 53; l = 64; k = i/j; l = i/j; l = i/j; l = i%j; l = l%j; l = i+j; j = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
a1b4986a9be45c79f1f84d5284f139ae42a921d3
b45f945f06318b291fe2dbfa67de2d0018098354
/draw/qdr_group.h
49644696005dd8b25e0104434c16bac534294ec9
[]
no_license
devilstan/sqr
e97a2c07909ca343298f3036b135969d6a13a7ee
4790ded0837c629325dc186db72e0eb06019d397
refs/heads/master
2021-01-18T00:17:20.723649
2013-10-22T14:55:28
2013-10-22T14:55:28
null
0
0
null
null
null
null
UTF-8
C
false
false
219
h
#ifndef __QDR_GROUP__ #define __QDR_GROUP__ #include <time.h> #include "qdr_private.h" #include "qdr_import.h" void mark_paint_group(Qdr *qdr, cairo_t *cr, cairo_pattern_t *pattern, int _x, int _y); #endif
[ "soezimaster@gmail.com" ]
soezimaster@gmail.com
fabad7846921785236767e5d2ce646211b9a81ef
a2c220b60740da57bc32fe96c0d3ae2b6b47ec83
/brightness/main/create_arr.c
4dbcae3189c9324c91f08da4dbed4af6a2639e0c
[]
no_license
michael-boyko/ESP32_rtos
369bc04cd61f1ffca0ec1c6832dd5cf881cf4f88
619911be7ae0498000318c0d285af29585f74c8d
refs/heads/master
2023-01-12T10:36:53.312636
2020-11-09T19:12:43
2020-11-09T19:12:43
294,728,310
0
0
null
null
null
null
UTF-8
C
false
false
212
c
#include "brightness.h" uint8_t **create_arr() { uint8_t **arr = malloc(sizeof(uint8_t *) * 8); for (int i = 0; i < 8; i++) { arr[i] = malloc(sizeof(uint8_t) * 128); } return arr; }
[ "noreply@github.com" ]
michael-boyko.noreply@github.com
d9f48cff44d34a8b48d4fd9c98b30422adaa8d8b
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/drivers/acpi/scan.c
9e399a783dc90688f252410667093ceb0eb00ec8
[]
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
5,302
c
#define _COMPONENT ACPI_BUS_COMPONENT ACPI_MODULE_NAME("scan"); #define STRUCT_TO_INT(s) (*((int*)&s)) extern struct acpi_device *acpi_root; #define ACPI_BUS_CLASS "system_bus" #define ACPI_BUS_HID "LNXSYBUS" #define ACPI_BUS_DEVICE_NAME "System Bus" #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent) stat...
[ "weilaidb@localhost.localdomain" ]
weilaidb@localhost.localdomain
3f74051f38c88a92f6e981b02d4fe72a37689a4f
661f1a492d679c0533f2245fa94a4798cb83356d
/native/runtime.h
9d75b159a2af06751d035da8c9f04932c0e0e288
[ "Apache-2.0" ]
permissive
minad/crts
6a773bd08bd89be7e768379e88e1c02546158e0c
0986b9f8b9375bd12bbf11de80fc52fdba80f5d4
refs/heads/master
2023-08-22T17:20:34.395854
2020-06-06T13:46:59
2020-06-06T13:46:59
137,484,709
1
0
null
null
null
null
UTF-8
C
false
false
3,739
h
#pragma once #include "gc.h" #include "processor.h" #include "stats.h" /** * Runtime hooks * Hooks with even id are executed in reverse order. */ typedef enum { CHI_HOOK_PROC_START = 0, CHI_HOOK_PROC_STOP = 1, // reverse CHI_HOOK_WORKER_START = 2, CHI_HOOK_WORKER_STOP = 3, // reve...
[ "mail@daniel-mendler.de" ]
mail@daniel-mendler.de
f182fa4f0dce2c5b22f1a3034df1e5458daee590
fa5c27458761a032dbfc5e1e1c5aa4157601e930
/svcomp16/pthread-wmm/rfi005_pso.opt_false-unreach-call.c
69be6ca1757955eeb0ccd5cd2e21ab904b286dc5
[]
no_license
dvynjli/con-benchmarks
9781bb0aba72719e82c86235bd3cf41bcc6a8af9
12a9c8f52ee1a7c175021c116958c7d3894957cd
refs/heads/master
2021-09-25T07:27:47.655389
2018-10-19T15:35:09
2018-10-19T15:37:33
null
0
0
null
null
null
null
UTF-8
C
false
false
10,836
c
extern _Bool __VERIFIER_nondet_bool(void); extern void __VERIFIER_assume(int); extern void * __VERIFIER_nondet_pointer(void); extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int expression) { if (!expression) { ERROR: __VERIFIER_error(); }; return; } int __global_lock; void __VERIF...
[ "cesar.rodriguez@lipn.fr" ]
cesar.rodriguez@lipn.fr
7c6077bfc9a69fcde355ae0ca4898f23fb5328a4
a21af8bf358940b497b5fb4c209f4727c2cb481f
/mediatek/custom/common/kernel/touchpanel/src/mtk_tpd.c
8c9a02e95b553e3e7cf2dec38a5443fd1bb4c440
[]
no_license
sanek9/huawei-u8836d-kernel-3.4.5
3e49e19cde79b71ebbd47aec9b58f2f308b1fd13
69358050f1913d079557e8204bb032c41dc36957
refs/heads/master
2020-05-31T21:54:15.993977
2014-05-31T19:30:36
2014-05-31T19:30:36
null
0
0
null
null
null
null
UTF-8
C
false
false
11,497
c
/****************************************************************************** * mtk_tpd.c - MTK Android Linux Touch Panel Device Driver * * * * Copyright 2008-2009 MediaTek Co.,Ltd. * * ...
[ "sanya0996@gmail.com" ]
sanya0996@gmail.com
f14184fb1b03b060ca4dab2c4c736f0a08b7d140
495673aac3770c2ba108793539b12b0892ef1fc9
/Flask/Generated_Code/BitIoLdd1.h
56170692c273b0fa0add796cee6dbe93ec863e9c
[ "MIT" ]
permissive
ThisIsNotRocketScience/Eurorack-KDS
7d2c836d2b515e6b25f3ae31c911ff193fe0c731
43f5065ae88b8a483eb548760058d043574dfc27
refs/heads/master
2022-11-15T17:15:56.995555
2022-11-08T10:22:19
2022-11-08T10:22:19
47,451,815
17
10
null
null
null
null
UTF-8
C
false
false
11,676
h
/* ################################################################### ** This component module is generated by Processor Expert. Do not modify it. ** Filename : BitIoLdd1.h ** Project : Flask ** Processor : MK22FN256VLH12 ** Component : BitIO_LDD ** Version : Component 01.033, Dr...
[ "stijnkuipers@gmail.com" ]
stijnkuipers@gmail.com
0905af5336ad74f531d825f501e5575b409e79e7
414166b00b9c520aa52c7381346bbc2865d9a17f
/srcs/ft_lstdelone_bonus.c
9cfc5dda8f8141b97f061c5d46c36790ce1910c9
[]
no_license
bazuara/libft
e30d7df71a0db24686f04f5aa36f6c75ad00527d
1e6cc4dc59c781d4ddc26c712e1bf5b96e969a3a
refs/heads/master
2023-08-29T00:49:40.533782
2021-08-31T09:48:08
2021-08-31T09:48:08
256,066,211
0
1
null
null
null
null
UTF-8
C
false
false
1,045
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: ...
[ "bruno.azuara@gmail.com" ]
bruno.azuara@gmail.com
7c2312455d78b033f86b63d9016214820f1998a9
b65bed7bfbc76fb0dfd73fb0b699813321c25b79
/C_Study/응용연습문제/5_20/1_qc.c
0ef658cb31b74c039098567e2c914c5b378c2947
[]
no_license
SuHyeonJung/iot_bigdata
02d8054a6f29c03b411e5131547e6a11f4b7be41
865f33e0d070808007e6ea3d13d1232dabb4f3fe
refs/heads/master
2020-05-18T05:08:22.900973
2019-06-12T08:12:47
2019-06-12T08:12:47
184,195,557
0
0
null
null
null
null
UHC
C
false
false
592
c
#include <stdio.h> #pragma warning (disable:4996) void main() { int arr[5]; int i; int max = 0; int min = 0; int sum = 0; for (i = 0; i < 5; i++) { printf("%d개의 정수를 입력하세요: ", i + 1); scanf("%d", &arr[i]); max = arr[0]; min = arr[0]; } for (i = 1; i < 5; i++){ if (max < arr[i]) { max = arr[i];...
[ "galma94815@naver.com" ]
galma94815@naver.com
f2b84c53fe18f594ee08d50e09f87d9dea7aeb9a
5074f04055593c1fe40b484f6cc08727c4a21544
/cBot/ChatMessage.c
f5c02f5f6d3bbf776e45212882b45b7a5638b33a
[]
no_license
SOBotics/cBot
5f7ef2568536b9cf5589f8ec7ee0c55c2d143078
fa3228eebdd3219d86ea47f522e3e396cbce8567
refs/heads/master
2020-03-17T00:47:22.377120
2018-05-12T09:18:03
2018-05-12T09:18:03
133,129,548
0
0
null
null
null
null
UTF-8
C
false
false
600
c
// // ChatMessage.c // cBot // // Created by Ashish Ahuja on 07/05/18. // Copyright © 2018 SOBotics. All rights reserved. // #include "ChatMessage.h" #include <stdlib.h> #include <string.h> ChatMessage *createChatMessage(const char *text, unsigned long messageID, unsigned long replyID, ChatUser *user) { Chat...
[ "shivashish.ahuja@gmail.com" ]
shivashish.ahuja@gmail.com
bbddb0393c9c2c6f6e5248f961a32f23fbbe5193
b062a0782feeb96e02c770f743c22ac8b3c129d8
/AYBC/test/yuyv2I420/yuv.h
21880c8096705e71f173a5ffe065d8f1fd5ec45a
[]
no_license
windowxiaoming/trunk
f1db00e32f9b9a7b398de82210869f85bc2f9b01
346ab1c3c482c384b6717b8f463ae84d6576e33d
refs/heads/master
2022-02-15T19:32:27.081327
2019-09-07T07:23:19
2019-09-07T07:23:19
null
0
0
null
null
null
null
UTF-8
C
false
false
1,102
h
#ifndef _YUV_H #define _YUV_H #include <stdio.h> #include <string.h> typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; #pragma pack(1) struct bmp_header_t{ u16 magic; u32 file_size; u32 RESERVED1; u32 offset; //54 bytes u32 ...
[ "frank@ubuntu.(none)" ]
frank@ubuntu.(none)
5b958c696f31c462a374aa2276fe70cc9ff0af58
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/System_System_Collections_Generic_SortedDictionary_2_KeyColl_8.h
5730383c50b33320a03a636e552b4aad53ed16fc
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
689
h
#pragma once #include <stdint.h> // System.ValueType #include "mscorlib_System_ValueType.h" // System.Collections.Generic.RBTree/NodeEnumerator #include "System_System_Collections_Generic_RBTree_NodeEnumerator.h" // System.Collections.Generic.SortedDictionary`2/KeyCollection/Enumerator<System.Int32,MasterPreviewInfo> ...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
39d91832faa29276e77fd458987f3e7900d20685
c41bc94c47be0d9ec387abc1cdfb24dcf5cbe659
/selection.c
b93ef873080401183ae30a4940e865cd7e6f35a8
[]
no_license
42sam/select
10b66474b6dc80177342fb4406c2d4ae344f559d
534ddad3db34cd6b25601ea3e65f016ba09ce0ab
refs/heads/master
2020-02-26T17:26:32.525570
2016-10-23T15:08:10
2016-10-23T15:08:10
71,710,404
0
0
null
null
null
null
UTF-8
C
false
false
2,075
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* selection.c :+: :+: :+: ...
[ "sammy.sachetfall@yahoo.fr" ]
sammy.sachetfall@yahoo.fr
969fdb6625bdb0fdc5ddaf12f3a5b33fb1fc4559
65ba0ca75051b90b41eb463f4b371e8f2680f65b
/utils/policy.c
de59c6971410d269c6af10e48db2211ac21fc328
[ "MIT" ]
permissive
benmcmorran/aitf
a5197ce0664f1f2c557d5533c3387010ab289b79
5788a51264bef8c3e8de23c6e54afca1478abf2d
refs/heads/master
2016-09-06T10:18:12.168429
2015-04-30T20:31:20
2015-04-30T20:31:20
33,452,647
0
0
null
null
null
null
UTF-8
C
false
false
2,379
c
/* John Breen Andrew Botelho Iveri Prangishvili */ #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #include <string.h> #include <unistd.h> #include <sys/time.h> #include <sys/types.h> #include <netinet/tcp.h> #include <assert.h> #inclu...
[ "ben.mcmorran@gmail.com" ]
ben.mcmorran@gmail.com
2ccf93482cf4fbc7a84fe129a80181bd57822d94
6e8f170e93938e3d83f50f536e4e6bb79ca4b409
/ft_isalpha.c
7beaa419ae77bef72cfae45ebb1848bb151fbcdf
[]
no_license
smtolo/Libft
6e4ba67735d6c8739724ae6edf6e29619bf0363f
be8649767676dd77825fa214d84012e1a54b076e
refs/heads/master
2020-04-01T14:04:55.705743
2019-03-04T13:08:01
2019-03-04T13:08:01
153,279,607
0
0
null
null
null
null
UTF-8
C
false
false
1,031
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: ...
[ "noreply@github.com" ]
smtolo.noreply@github.com
08a939bae2cc25b89246e2a49d3e233ab7360225
fc3b106292c6d756ed174b295a165d81a0914a92
/NLI2FOLI/pmb_SICK/data/silver/p14/d0059/en.cats
8bd4b50a82b83e18adac625a18155a3be7d463d3
[ "MIT" ]
permissive
barfsma/ComSem
5d0f7498fff8609076815ed1623c16d481c0b954
e8a5b49e8eb43a03ee123861b4aed928c2090d83
refs/heads/master
2020-12-05T18:05:48.585151
2020-01-24T15:44:21
2020-01-24T15:44:21
232,155,909
0
2
MIT
2020-01-23T08:41:29
2020-01-06T18:00:48
Python
UTF-8
C
false
false
96
cats
N/N N CONJ NP/N N (N\N)/NP N/PP PP/NP NP/N N/N N/N N (S[dcl]\NP)/(S[ng]\NP) (S[ng]\NP)/NP N/N N
[ "bertelt.braaksma@gmail.com" ]
bertelt.braaksma@gmail.com
607d4e40ae6ea24442c913146fedfc5d17d28023
d22131fe0a0acfc88e609b585516a824dd5af36e
/srcs/ft_memcpy.c
4c2ee065dca8798cd272dd0e1064bc9f74b79399
[]
no_license
enchillada/libft
ba4e91083c9c12b7faee939b081405565434e645
7e8a5377f4704da2c3d25d32d1a4553324ed24fa
refs/heads/master
2022-02-01T12:22:36.483312
2018-04-05T00:43:37
2018-04-05T00:43:37
null
0
0
null
null
null
null
UTF-8
C
false
false
1,086
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memcpy.c :+: :+: :+: ...
[ "mopopo@MOPOPOs-MacBook-Air.local" ]
mopopo@MOPOPOs-MacBook-Air.local
0c5df35603d44aec0dce16a1bdb5365a72e6e58d
9b361b40d471700552efc81f3b9cc4adc5772d0a
/NCRE-C/The practice exams/Examination paper 22/examination-question-2.c
b6ad8c1fa06da3fb67337348923a424d0893599a
[ "MIT" ]
permissive
GoogTech/NCRE
18dd490f8f27aa4a583b2fe2d0bcee8112a23f9b
03804bc433ade668be6a7a046ad90d0f581d4e07
refs/heads/master
2021-10-25T03:25:40.110026
2019-03-31T08:17:16
2019-03-31T08:17:16
null
0
0
null
null
null
null
UTF-8
C
false
false
821
c
/* * @Author: Huang Yuhui * @Date: 2019-03-25 14:52:45 * @Last Modified by: Huang Yuhui * @Last Modified time: 2019-03-25 14:58:57 */ /* * 程序填空题-题目描述如下: * * 函数'fun'的功能是:求出'S'的值 : S = 2²/1x3 * 4²/3x5 * 6²/5x7 * ··· (2k)²/(2k-1)*(2k-1) */ #include <stdlib.h> #include <conio.h> #include <stdio.h> #include <...
[ "Gentleman_0109@outlook.com" ]
Gentleman_0109@outlook.com
499e7aefde1d726ee68beefb6e594d9e67a42f0b
0adb85af19b4188e108a7a6349b7a5068ce73242
/Ingres_SVN/server/pax/cache.c
44eda1f518a7c826521d208a4d313f9a1cbb20ac
[]
no_license
GunterMueller/Ingres
53b00f9eb9f7803bcb5a2844bd2fb6add66d131a
e921359e4e83c7ba9a99770d937ec700d8ac4549
refs/heads/master
2022-11-17T08:06:46.615801
2020-07-11T16:28:31
2020-07-11T16:28:31
276,514,956
0
0
null
2020-07-02T01:00:50
2020-07-02T01:00:49
null
UTF-8
C
false
false
9,677
c
/* $OpenBSD: cache.c,v 1.17 2004/03/16 03:28:34 tedu Exp $ */ /* $NetBSD: cache.c,v 1.4 1995/03/21 09:07:10 cgd Exp $ */ /*- * Copyright (c) 1992 Keith Muller. * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berk...
[ "gunter.mueller@gmail.com" ]
gunter.mueller@gmail.com
2d5a6c46ad0aaf2f3f6122d57aabc43bedd79443
c7792b5e5ae5e74d643518a5b0644020288fc6da
/mutants/fuzzgoat.mutant.12808.c
a8d27fb306fc8f4120a4e52c67c10f136d9c7870
[ "BSD-2-Clause" ]
permissive
agroce/fuzzgoattriage
0dc99daf2d061aaa0f58ceef3657b6f9ff411613
173c585cc7e87bcb2b82ae22fde56935352cd597
refs/heads/master
2020-07-29T14:49:39.691056
2019-09-20T18:07:19
2019-09-20T18:07:19
209,830,892
0
0
null
null
null
null
UTF-8
C
false
false
32,143
c
/* vim: set et ts=3 sw=3 sts=3 ft=c: * * Copyright (C) 2012, 2013, 2014 James McLaughlin et al. All rights reserved. * https://github.com/udp/json-parser * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1...
[ "agroce@gmail.com" ]
agroce@gmail.com
daeae23e03062cdcc4181440d589282369a240ee
867690bbf5f0c7928fcacaabdda41e9a81f266e6
/unit/crc16.h
89e0d94c15fa0d00fe86424b72e833d3a4523f5d
[]
no_license
RexusCWIS/control_module
b434c801e975c77c00f913cfb63206e7122f89bd
f424f179117111364b387d0c15ece59bc2ae5753
refs/heads/master
2020-04-18T11:29:45.254712
2014-04-05T19:32:57
2014-04-05T19:32:57
null
0
0
null
null
null
null
UTF-8
C
false
false
2,713
h
/* ======================================================================== */ /* CRC-16 routines J. Zbiciak, 2001 */ /* ------------------------------------------------------------------------ */ /* The contents of this file are hereby released into the public domain. */ /* ...
[ "desenfans.olivier@gmail.com" ]
desenfans.olivier@gmail.com
96e027a66990a2ff6348d067049d9d483b8a8a28
35c04ea32351dc95bc18d46e5c70dda9c1e08668
/Examples/KDS/FRDM-KL46Z/FRDM-KL46Z_Demo/Sources/main.c
8d2a8c3c74ff31656c7bdaacddb165f8596632fa
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
ErichStyger/mcuoneclipse
0f8e7a2056a26ed79d9d4a0afd64777ff0b2b2fe
04ad311b11860ae5f8285316010961a87fa06d0c
refs/heads/master
2023-08-28T22:54:08.501719
2023-08-25T15:11:44
2023-08-25T15:11:44
7,446,094
620
1,191
NOASSERTION
2020-10-16T03:13:28
2013-01-04T19:38:12
Batchfile
UTF-8
C
false
false
3,212
c
/* ################################################################### ** Filename : main.c ** Project : FRDM-KL46Z_Demo ** Processor : MKL46Z256VMC4 ** Version : Driver 01.01 ** Compiler : GNU C Compiler ** Date/Time : 2014-11-18, 07:10, # CodeGen: 0 ** Abstract : ** ...
[ "erich.styger@hslu.ch" ]
erich.styger@hslu.ch
fd7f1025dc4abefb2bfe6d710f97aa9f3108f6db
e6635cdc4a3bf8026da48aa78129154b894673b8
/lib/dir.c
bc18c86d2af4fe591183d330650b1e21df9e3edf
[]
no_license
david-wiles/dw-fs
0f101d2c0f201b1dc10401c44d0066e922d46eef
bf5543f7ec7c5775da01d8e9467eaa2f8a962570
refs/heads/main
2023-04-08T21:14:37.981232
2021-04-21T03:22:23
2021-04-21T03:22:23
347,809,396
0
0
null
null
null
null
UTF-8
C
false
false
3,941
c
// Copyright 2021 David Wiles <david@wiles.fyi> // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and // associated documentation files (the "Software"), to deal in the Software without restriction, // including without limitation the rights to use, copy, modify, merge,...
[ "davidwiles33@gmail.com" ]
davidwiles33@gmail.com
fdc6f475a3f9ee23d92ef1fccda361bcae1e131f
5d417f03f724f4e23000f28cd629c92bc9297a23
/avr32/services/usb/_asf_v1/class/audio/examples/host/user_interface/controller/controller.h
9e218206bd1ec334186a3eac1d615c1f8fcc4182
[]
no_license
siliconunited/atmel-asf
5ac78a123cb0f5026ffb9a0ba66b75abcccb788f
19e02800a6cc33d203f5d12f7dfca0c39195d879
refs/heads/master
2021-01-22T21:34:10.563981
2017-03-19T04:45:30
2017-03-19T04:45:30
85,439,630
6
3
null
2020-03-08T01:34:35
2017-03-18T23:56:24
C
UTF-8
C
false
false
3,056
h
/************************************************************************** * * \file * * \brief Controller interface * * Copyright (c) 2014-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modific...
[ "robksawyer@gmail.com" ]
robksawyer@gmail.com
894d048f2c76a261919f861381a6d288598d871b
22ca7f36830e41b016c75ade39839a9f601cda79
/cwiczenia/l4/rozwiazanie_zadania/test3.c
8bfc6c3606929a71fb8fddc08c6c306508911249
[]
no_license
huntekah/PTX
bc4fd5a0aef853b8fc561a3ff1f4696f33fd2c8a
6fd2b1a3aeaecab7ce380bc4fadc026ded53338c
refs/heads/master
2022-04-01T09:50:21.211603
2020-01-22T09:52:54
2020-01-22T09:52:54
212,548,289
0
0
null
null
null
null
UTF-8
C
false
false
99
c
#define cenzura **** BBB relu(7) cenzura #define relu(x) ((x) if x>0 else 0) calculate = relu(7)
[ "huntekah@gmail.com" ]
huntekah@gmail.com
a7d83fddabfae6aa13e952a69494c55237e765d8
dadad7c7b988c9060eb881943998d48ddf34e390
/espsfree-signal/src/notch_filt/notch_filt.c
22cf26ee14f8284d6b5b9e958a413bd3db6f2de9
[ "BSD-3-Clause", "LicenseRef-scancode-newlib-historical", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
rsprouse/espsfree
06c97d0d35b24df9401e60341365dfd13ba40cdf
173ce6c41d99dff68c6875b698b6e4a92e50e550
refs/heads/master
2021-11-30T21:37:07.394793
2021-11-05T18:19:08
2021-11-05T18:19:08
20,077,399
0
1
null
null
null
null
UTF-8
C
false
false
9,845
c
/********************************************************* * This material contains proprietary software of Entropic Speech, Inc. Any reproduction, distribution, or publication without the the prior written permission of Entropic Speech, Inc. is strictly prohibited. Any public distribution of copies of t...
[ "ronald@berkeley.edu" ]
ronald@berkeley.edu
ecd0c0169445ced7e3d5e80d78e62944f78fdd48
2ff05c94f0cfc34b90a72de713f16eccc6e7af2c
/main.c
04774d92bc0dac29603d70da0dafb0376e5be616
[]
no_license
skkif1/fdf
15c571dee5bd67270208618105fd13f2c433dfb5
8e4800aa014ab4ec44b96f5ca0d848b3ecd8a48a
refs/heads/master
2021-01-23T02:29:38.602481
2017-03-24T22:57:46
2017-03-24T22:57:46
85,999,028
0
0
null
null
null
null
UTF-8
C
false
false
1,510
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.c :+: :+: :+: ...
[ "skkif1@gmail.com" ]
skkif1@gmail.com
78c38be8cf29203fa9bec83e6f5a6c2eb3b08d2d
38a3e98ada012b7a931d88a87dc6c0da63e01b66
/tests/check_lightmqtt.c
0ec22efd26351b0ff8a132bfcd378450cb5deb0d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
skyformat99/lightmqtt
24d8d2b2f9d78fc9b4306fe3442f3f761a25ff33
80c188d5343305bf39ce84cf43b698e4b0508994
refs/heads/master
2020-04-05T23:27:00.100198
2017-06-25T21:34:24
2017-06-25T21:34:24
null
0
0
null
null
null
null
UTF-8
C
false
false
5,734
c
#include "check_lightmqtt.h" #include "lightmqtt/client.h" lmqtt_io_result_t test_buffer_move(test_buffer_t *test_buffer, void *dst, void *src, size_t len, size_t *bytes_written) { size_t cnt = test_buffer->available_len - test_buffer->pos; if (cnt > len) cnt = len; memcpy(dst, src, cnt); *...
[ "romuloceccon@gmail.com" ]
romuloceccon@gmail.com
30c3e326d6154446045cb21a5d6ba3439e721414
04c8d8da9cebc13513c1b9c7658707ecadfa0ed3
/Roll a Ball/Temp/il2cppOutput/il2cppOutput/mscorlib_System_DateTime_WhichMethodDeclarations.h
d866d18a658ba4f7acc89b84c7769b2dc3f7decc
[]
no_license
fkieyhzen/RollABall
ed9ef9e93f3cfaecd2be10013797e97e9c1e479e
f083b660966094939ed2b5d2028e31bb4e86a67e
refs/heads/master
2023-03-19T18:19:11.437779
2015-06-08T15:27:45
2015-06-08T15:27:45
null
0
0
null
null
null
null
UTF-8
C
false
false
63
h
#pragma once // System.DateTime/Which struct Which_t3642;
[ "patrick@beetheswarm" ]
patrick@beetheswarm
f4fd67ecb1e6cfab115aa1929bdc202e858e435e
bcd09752379ee0208c8bdfbd0eb0f6bad61ba5b8
/src/j1939bs.c
dee445040b5cba52ac7fcf183036e875faaf3c1f
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "Unlicense" ]
permissive
seckinbostanci/libJ1939
badb21fc8b6b86849271b8a3afeabf019b65ac81
45f21c5b3ad9014aa630c8cca84ad8c43509d43a
refs/heads/master
2020-04-14T15:38:37.845065
2018-10-30T02:23:29
2018-10-30T02:23:29
null
0
0
null
null
null
null
UTF-8
C
false
false
45,935
c
// vi:nu:et:sts=4 ts=4 sw=4 /* * File: j1939bs.c * Generated 06/21/2017 16:25:20 * */ /* This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, fo...
[ "kranki@me.com" ]
kranki@me.com
16d4cac5fb27cb07dac2837d3705b176cc4b9482
ad2817a2c1842c7e45301863f054524fa3c17679
/db-4.8.30/crypto/aes_method.c
3bd65f673e15a7d71655aabc3176579ab09a181f
[ "MIT", "BSD-3-Clause", "Sleepycat" ]
permissive
kobake/bitcoin-msvc
37235582d0ac1a60999b03307cdf80b41b1500af
a2cb2cf6814e0f3274add1b76bf6342ee013ac22
refs/heads/master
2021-01-22T05:49:08.309061
2020-05-28T19:49:58
2020-05-28T19:49:58
81,691,930
28
26
MIT
2020-04-26T16:14:58
2017-02-12T00:14:41
C++
UTF-8
C
false
false
5,633
c
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2001-2009 Oracle. All rights reserved. * * Some parts of this code originally written by Adam Stubblefield, * -- astubble@rice.edu. * * $Id$ */ #include "db_config.h" #include "db_int.h" #include "dbinc/crypto.h" #include "dbinc/hm...
[ "kobake@users.sourceforge.net" ]
kobake@users.sourceforge.net
71a18404f5de2c78d78d898719bbcfc7c53ef93f
95d07090a3d8c1ebe57854c99d04ff6f1d853487
/Programming techniques/tries/testing.h
4a354bcc6864cef8016baaa1231a7ef9f6a3abd5
[]
no_license
zhaobr/Cours-passerelle
893be2cc364663bff6493782934de3304552945f
9cee21186b9b8202f0165a06ea603ab5afea433b
refs/heads/master
2021-01-17T15:20:16.878449
2013-07-02T10:45:50
2013-07-02T10:45:50
null
0
0
null
null
null
null
UTF-8
C
false
false
1,467
h
/* Programming techniques: Symbol tables. * Marien Bourguignon & Raphael Javaux - December 2012. * * This file defines a set of functions to test the different symbol tables. */ #ifndef _TESTING_H #define _TESTING_H #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include "st.h" /** Sets the number ...
[ "raphaeljavaux@gmail.com" ]
raphaeljavaux@gmail.com
28883674c2d4e3813e1a20126ac5a81b7f01e816
b8a3e223586b131bc7b4fadb6609a9b072b3063d
/v2-1.c
41ecdb38dc3cc6faefcdfdab0785066012010a65
[]
no_license
BackMountainDevil/BeautyConsoleMenu
97b6ed723bf154ff7db8c62fbdb49d0f09fc642d
6427a11729fc30c121232c8435b477d3ba25c363
refs/heads/main
2023-06-15T08:02:07.528300
2021-07-16T06:36:59
2021-07-16T06:36:59
386,217,017
0
0
null
null
null
null
UTF-8
C
false
false
1,523
c
/*@File : v2-1.c @Desc : 一个可以使用 w/s 进行上下选择、回车确认的菜单 @@Author : Kearney @Contact : 191615342@qq.com @version : 0.0.0 @Time : 2021/07/15 15:40:57 @License : MIT @Encoding: UTF-8 */ #include <stdio.h> #include <stdlib.h> int main() { char command; int index = 1; // 默认选项 system("stty -...
[ "191615342@qq.com" ]
191615342@qq.com
6e62d7bd769d54aa2d466afc92f5fcea08d8a988
bcddca991afe606180dbb5ce6c033d8fb611154c
/components/efuse/src/esp_efuse_utility.c
90c0f69543aa040d988fd137dd2506f2e2489165
[ "Apache-2.0" ]
permissive
EmbeddedSystemClass/esp-idf
8ac5a312be41936b1e2dc5c68b7b68c9b4c1e488
92db6a3dabc1106b72865b8bd91d9bdd54fbdf6c
refs/heads/master
2022-12-31T19:57:49.052365
2020-10-22T19:19:01
2020-10-22T19:19:01
259,859,439
0
0
Apache-2.0
2020-04-29T07:47:48
2020-04-29T07:47:47
null
UTF-8
C
false
false
14,006
c
// Copyright 2017-2018 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 require...
[ "koson.trachu@gmail.com" ]
koson.trachu@gmail.com
ed659e5bdb3cc9e34413bb3c7129f14b69f7b4c2
194ea7ce22cb3a86a795bd23f41c86c8d85ba40a
/xv6-lab1/wait_test2.c
c65f10833abd6b7e43cbd12ec3ca84e33b42198c
[ "MIT" ]
permissive
nzhan005/cs153-xv6
e779bb143df498832e6f63583a0ddf74cb727ac4
dcddc3d14a6e2fe92a98d44df652073aca270b22
refs/heads/master
2021-08-24T09:57:24.307435
2017-10-27T18:16:08
2017-10-27T18:16:08
null
0
0
null
null
null
null
UTF-8
C
false
false
1,091
c
#include "param.h" #include "types.h" #include "stat.h" #include "user.h" #include "fs.h" #include "fcntl.h" #include "syscall.h" #include "traps.h" #include "memlayout.h" int main(void){ int start = getpid(); int i, pid = fork(); int status; if(pid > 0){ for(i = 0; i < 15 && pid > 0; i++){ pid = fork();...
[ "nzhan005@ucr.edu" ]
nzhan005@ucr.edu
73327bb222d5d609c9f7a9c6288eb356cbba9939
8d7514271b08caaa8c757d0747853d54642e9e63
/vendor/intergrafx/LW/Solar/data/png_WP3_C_back_240x400.h
e19071ea0ebcf7d18eb67eea7e2e6eb76b3dc3c4
[]
no_license
npnet/MyCode
0bd3e32d5890c411b16e01cdb8acf5624c7c0a02
9fa7aa78d62f1cd3c2a39a36875cb41cf00522fe
refs/heads/master
2023-07-23T13:19:29.575050
2018-07-05T13:01:09
2018-07-05T13:01:09
140,229,839
1
2
null
2023-07-21T10:21:01
2018-07-09T04:07:28
C
UTF-8
C
false
false
619,096
h
// Copyright (c) 2004 InterGrafx, Inc. All Rights Reserved. #ifdef __cplusplus extern "C" { #endif #if 0 /* under construction !*/ #endif unsigned char const png_WP3_C_bg[] = { 0x42, 0x4D, 0x38, 0x7B, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, ...
[ "zhaoran.jia@nbbsw.com" ]
zhaoran.jia@nbbsw.com
4ca4729d790732823f0c964faeb51b8303abdbd6
865304b9929eee2beb40076a8e0f27c297b1380e
/Finished/steenhagen_gregory.assignment-1.03/rlg327.c
964d6d2410a4204ed209d25f84a341c2dc61ec12
[]
no_license
csteamengine/ComSci327
58feeffc2520c37e5fae24e64aa061ad9143192a
3366a0483621b73db03a965c1d004abd42925376
refs/heads/master
2021-03-22T00:27:36.031600
2016-02-26T17:15:53
2016-02-26T17:15:53
49,594,388
0
0
null
null
null
null
UTF-8
C
false
false
2,618
c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <endian.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <math.h> #include "dungeonGen.h" #include "character.h" #include "binheap.h" int main(int argc, char *argv[]){ int SaveBool = 0; /* False == 0 */ int LoadBool = 0; /*...
[ "gcs@pyrite-n1.cs.iastate.edu" ]
gcs@pyrite-n1.cs.iastate.edu
900ffa55722b789727581a4c5f284294463c3102
82d4b9aca64b90aaa0e6f96aa82fc4537b944d3f
/src/game.c
69d5b7b372a2a6520b1fb68b7b08eed54c6e2fdc
[]
no_license
michaelthomson0797/rogue
3f8b8a9b0f26557f1d1a2e07e43af22e3d9d7358
9d2f1a80ff9e699e63ed7fce53d08458e7f8e6a4
refs/heads/master
2021-06-13T23:44:58.253803
2019-09-14T21:02:44
2019-09-14T21:02:44
142,370,636
1
0
null
null
null
null
UTF-8
C
false
false
1,280
c
#include "global.h" void run() { // Generate the map map = mkMap(); // initialize astar nodeSource = malloc(sizeof(ASPathNodeSource)); nodeSource->nodeSize = sizeof(Tile); nodeSource->nodeNeighbors = &nodeNeighbors; nodeSource->pathCostHeuristic = &pathCostHeuristic; // create the hero addActor(PLA...
[ "michaelthomson0797@gmail.com" ]
michaelthomson0797@gmail.com
c809edd7f293121440a7f2c936776ac23639c796
8c06a9da619d0ae177803d068ced567ce17b17c7
/Stratis_IOT_Client/lib/api/btc/btc_api.h
0d444d04eda554677c31f9a4c39d52cbb7e313b8
[]
no_license
noescape00/Stratis_IoT
0710ece739625872c11a0b3f04e1c9eefc7b70d0
6e9560901c6a5a08029ecf84a18daf05a1bb8597
refs/heads/main
2023-04-25T15:21:26.441168
2021-05-20T15:06:57
2021-05-20T15:06:57
368,491,162
0
0
null
null
null
null
UTF-8
C
false
false
8,642
h
/******************************************************************************* * This file is part of the Incubed project. * Sources: https://github.com/blockchainsllc/in3 * * Copyright (C) 2018-2020 slock.it GmbH, Blockchains LLC * * * COMMERCIAL LICENSE USAGE * * Licensees holding a valid commercial licens...
[ "NoEscape0@ya.ru" ]
NoEscape0@ya.ru
4ef85064de9ae5633c43c872af06471b47d16b7a
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/ade3aeb0-a494-4357-b692-842bfb75adf0.c
d330eb07cc30a44058051e72ac085f22238b705a
[]
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
575
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=1244; int k; int l; j = 53; l = 64; k = i/j; l = i/j; l = k/j; l = l%j; l = l%j; k = k-k*i; //variables /* START VULNERABILITY */ int a; int b[35]; int c[74]; a = 0; while (b[( a - 1 ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
46f07935ec6c73b06e8c21087a86b64ba9a566de
1b7b4f198ffc42fadad5b9ce6d316cea625b390c
/OS/firmware/run02.h
628c21e9ece0cf248b2e4d6bee572cafe7b233ad
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jmstein7/minimOS
a50764b886881663fc52d4e59a3a5fa8c8481926
8be694f4dfb9ebddd6cd5518f76802b165f65dc4
refs/heads/master
2023-08-25T10:01:09.124927
2021-10-23T16:15:51
2021-10-23T16:15:51
null
0
0
null
null
null
null
UTF-8
C
false
false
298
h
; firmware variables for minimOS on run65816 BBC simulator ; 8-bit kernels! ; v0.9.6b5 ; (c) 2017-2021 Carlos J. Santisteban ; last modified 20180404-1355 -sysram: ; no way to set experimental LOWRAM option ; *** standard FW vars from template *** #include "template.h" ; kernel sysvars to follow
[ "zuiko21@gmail.com" ]
zuiko21@gmail.com
9538e4668973351ea584f05a9f26f6e01f43d094
482e62f19c4f6d127890da91108b2925a7594538
/pintos/src/devices/intq.h
07ea243e4153cba994fe7d531f64cddf2a9d246f
[ "LicenseRef-scancode-unknown-license-reference", "MIT-Modern-Variant", "MIT" ]
permissive
a1b3rtchang/PintOS
95ec0c7eadda417b0fb4e6d763751f1d55ff1a1b
59fc023a60ffe6760a67a23c7bff99c2b72ccce5
refs/heads/master
2023-07-13T09:18:28.203009
2021-08-23T22:12:28
2021-08-23T22:12:28
398,863,564
4
0
null
null
null
null
UTF-8
C
false
false
1,390
h
#ifndef DEVICES_INTQ_H #define DEVICES_INTQ_H #include "threads/interrupt.h" #include "threads/synch.h" /* An "interrupt queue", a circular buffer shared between kernel threads and external interrupt handlers. Interrupt queue functions can be called from kernel threads or from external interrupt handlers. ...
[ "kevin_svetlitski@berkeley.edu" ]
kevin_svetlitski@berkeley.edu
2d8d7d89b192ee496c8a201019fb7f28ca4137c9
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/deku/forest/fire_tunnel/rooms/firetunneln5.c
266977390038dd2b22382690156c1ff44983541b
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cherno-SuS/SunderingShadows
5f755fbebb79dc0b9d1c2a0541408be4afeb8b67
c3b4370beb2c4351ecc60826850c94892a42b685
refs/heads/main
2023-04-21T09:52:14.580024
2021-03-23T12:09:55
2021-03-23T12:09:55
349,490,686
0
0
NOASSERTION
2021-03-23T12:09:56
2021-03-19T16:40:12
null
UTF-8
C
false
false
333
c
#include <std.h> #include "/d/deku/inherits/forest.h" inherit FIRE_TUNI; void create() { ::create(); set_long(TO->query_long()+"%^RED%^ The tunnel of flames "+ "continues north and south here.%^RESET%^"); set_exits(([ "north" : FTUN_ROOMS"firetunneln6", "south" : FTUN_ROOMS"firetunneln4"...
[ "law@shadowgate.org" ]
law@shadowgate.org
5f3b4bd7379de14cc2b1a7b0ad62795039ef098a
287230b6695941701830dd513273d516c7235ba9
/prebuilts/gcc/linux-x86/arm/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf/lib/gcc/arm-linux-gnueabihf/6.3.1/plugin/include/gimple-predict.h
80605e2e46321e64d4d81e7bbcb909c63275e7f4
[]
no_license
haohlliang/rv1126
8279c08ada9e29d8973c4c5532ca4515bd021454
d8455921b05c19b47a2d7c8b682cd03e61789ee9
refs/heads/master
2023-08-10T05:56:01.779701
2021-06-27T14:30:42
2021-06-27T14:30:42
null
0
0
null
null
null
null
UTF-8
C
false
false
129
h
version https://git-lfs.github.com/spec/v1 oid sha256:de507d6f01cb752e90857bd6ccf0d06579e2b3b00ecfba73f49f356c05b1209f size 2390
[ "geierconstantinabc@gmail.com" ]
geierconstantinabc@gmail.com
2753d91b64bc506c36e29fb3912d579421404f2d
45539991c5b2f7891e2457e0c72b052725d5e14a
/hardware.c
9de5e0f3ee0717584ef84fab7eb1544d7724b641
[ "MIT" ]
permissive
JulesStringer/PIC32Device
7e40682b0771260e607a9f2997905d88ce169564
fcdbf9db4157902962b839f6e9e8a40ab2310272
refs/heads/master
2020-05-25T16:15:39.841137
2017-05-16T19:06:36
2017-05-16T19:06:36
84,946,188
0
0
null
null
null
null
UTF-8
C
false
false
8,452
c
/* ************************************************************************** */ /** PIC32MM hardware handling MIT License Copyright (c) 2017 Jules Stringer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to dea...
[ "noreply@github.com" ]
JulesStringer.noreply@github.com
0a44241bdbf6150b7f8a6c36460a8eb41a5555ea
7c7733c1b2c328a75285f17f5c2f5ce43ac5d664
/src/thirdparty/libevent/test/regress_http.c
1af425e314f3caee322b807d9fc11b102028f030
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "ISC", "Apache-2.0", "BSD-2-Clause", "MIT", "BSD-2-Clause-Views" ]
permissive
fluffos/fluffos
9dab21927e7e4207bcc902465925726af8252a2a
3279863f7c3eed500d28145853dd320aa2815132
refs/heads/master
2023-09-05T09:43:46.851999
2023-09-04T20:19:42
2023-09-04T20:19:42
8,451,252
333
206
NOASSERTION
2023-09-04T20:19:43
2013-02-27T07:53:17
C++
UTF-8
C
false
false
166,813
c
/* * Copyright (c) 2003-2007 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson * * 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 mu...
[ "sunyucong@gmail.com" ]
sunyucong@gmail.com
6227d1e39d8d1fdd7e010f4bb9207a7b2b417558
b19a4f89ee45e33409a807c64a1bafe4327bcb11
/uniontest4.c
4c48501a46c69915ea55cb26481eeb2fd50ea1b6
[]
no_license
tangyiwu/c_programming_language
ac691a0a76e4ac476207b4171ac4f0e870b83d78
d14b68c249b8ae17950f4ee9821c1c3974a55c99
refs/heads/master
2020-07-03T19:13:54.306710
2016-08-25T03:03:54
2016-08-25T03:03:54
66,518,844
1
0
null
null
null
null
UTF-8
C
false
false
351
c
#include <stdio.h> #include <string.h> union Data { int i; float f; char str[20]; }; int main(int argc, char *argv[]) { union Data data; data.i = 10; printf( "data.i : %d\n", data.i); data.f = 220.5; printf( "data.f : %f\n", data.f); strcpy( data.str, "C Programming"); printf( "data.str :...
[ "448143401@qq.com" ]
448143401@qq.com