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
82af9c565943bde198467c3c0a6ee8d38a81f6b4
eeda4689a499307f59f4c2d96e08532ed382f3b2
/1 - INICIANTE/1043.c
34f0b6f5615ee6ea36ef197ddc9d7bb79a722304
[]
no_license
gsrbr/URI_Resolutions
f1e874ca2ca001a1aeb9ec56efd15f1deaaa9cdd
492b0d4760d10bf7b35d2e2aa26465333e26617f
refs/heads/master
2023-04-22T19:46:15.200248
2021-05-04T00:02:43
2021-05-04T00:02:43
283,847,357
0
0
null
null
null
null
UTF-8
C
false
false
302
c
#include <stdio.h> #include <stdlib.h> int main() { float a,b,c,m; scanf("%f%f%f",&a,&b,&c); if (abs(b-c)<a && a<(b+c) && abs(a-c)<b && b<(a+c) && abs(a-b)<c && c<(a+b)){ m=a+b+c; printf("Perimetro = %.1f\n",m); }else{ m=((a+b)*c)/2; printf("Area = %.1f\n",m); } return 0; }
[ "noreply@github.com" ]
gsrbr.noreply@github.com
d1a5456a1277d076f4cda94d10a9a1c8c6488da9
e6ded2ef4a4cb4e68d881f35db67431c79e08a6d
/Lab3/LowCopy_demo.c
cfad9300b86e690a1e9aa66af46ea4adbcafc152
[]
no_license
kutsys/2013136089
184935565039ab923f5a41b2bd8a09b170a26468
50f22f931ceb75e9918e9f9e9c8b44857b25bc88
refs/heads/master
2021-01-22T12:45:45.643988
2016-12-15T16:31:49
2016-12-15T16:31:49
68,573,596
0
0
null
null
null
null
UTF-8
C
false
false
981
c
#include <unistd.h> #include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> int main(int argc, char *argv[]) { char block[1024]; int in, out; char c; int nread; char i_name[52], o_name[52]; int dot = 0; if(argc != 3) { //인자의 수가 조건에 맞지 않을 경우 fprintf(stder...
[ "noreply@github.com" ]
kutsys.noreply@github.com
a3e032c1daa0a3b7606bc0d4ce635521e57184e5
74f084a0a5d2cc70fa49708a4f070aa271dba1b3
/src/server/server/game/src/affect_flag.h
fe0dd89960fff1b32b2a00803d7dd2c5e38fcf09
[]
no_license
rafalohaki/Metin2-Work
293f9c2318fca74bd433942a7156a3f8ba18241d
c0adbc14cd15ea12a78e61db570b3963d755ab75
refs/heads/main
2023-05-30T17:23:56.347527
2021-06-14T18:44:54
2021-06-14T18:44:54
382,686,870
0
0
null
2021-07-03T18:38:23
2021-07-03T18:38:22
null
UTF-8
C
false
false
1,476
h
#ifndef __INC_METIN_II_AFFECT_FLAG_H__ #define __INC_METIN_II_AFFECT_FLAG_H__ #ifndef IS_SET #define IS_SET(flag, bit) ((flag) & (bit)) #endif #ifndef SET_BIT #define SET_BIT(var, bit) ((var) |= (bit)) #endif #ifndef REMOVE_BIT #define REMOVE_BIT(var, bit) ((var) &= ~(bit)) ...
[ "46651742+ASIKOO@users.noreply.github.com" ]
46651742+ASIKOO@users.noreply.github.com
ad9258f6516cc9087159d25aeef733b1cc33e739
927fce9c48d2e73268810188096db19b1e158e30
/Tiny_dark(windows+AMD)/Darknet_AMD/layers/common/col2im.c
ce356a2c5f2461a9b459bd748e2aaf2b7472c3cc
[]
no_license
Drdady/opencl-darknet
fea06aa0ae205548f3de37399f426a0ece7cf8d7
386d18b264b210f35f88f5a321d2b76caf0a95b0
refs/heads/master
2022-03-22T19:23:22.881261
2019-12-18T09:41:44
2019-12-18T09:41:44
null
0
0
null
null
null
null
UTF-8
C
false
false
2,950
c
#include <stdio.h> #include <math.h> #include "col2im.h" void col2im_add_pixel(float *im, int height, int width, int channels, int row, int col, int channel, int pad, float val) { row -= pad; col -= pad; if (row < 0 || col < 0 || row >= height || col >= width) return; im...
[ "ZicaiFeng@outlook.com" ]
ZicaiFeng@outlook.com
54155dff2d9a4776b1dcbec8f92f165891add3bc
98134ea4c82e72320f0132274c3a7a10eac1f40c
/Rev2/random/rotateArr.c
9c4985add70659d3dc576ebc9f8e49d0c2eafd64
[]
no_license
vyas45/CTCI
d0a663eda2a85917930e83e08136e98bee9c9f0c
cd830b6660093c80fd27235c4e07a6b261ac949b
refs/heads/master
2021-01-24T18:37:21.728633
2017-09-30T21:21:47
2017-09-30T21:21:47
84,452,338
0
0
null
null
null
null
UTF-8
C
false
false
574
c
/* * Given an array rotate it by d units */ #include <stdio.h> void printer(int arr[], int size) { int i = 0; for(i=0; i<size; i++) printf("%d ", arr[i]); } void leftbyone(int arr[], int size) { int temp = arr[0]; int i = 0; for(i=0; i<size-1; i++) { arr[i] = arr[i+1]; } arr[i] = temp; } void...
[ "vyas45@gmail.com" ]
vyas45@gmail.com
0a4a99483776f380d593fd9a75e80d0cadcb3b30
47d3f345277e660032b14f8df64b0e0430ec6bd1
/uring/cgo/liburing.h
a38af57943d685a17f423de28d59c12c9aa08180
[]
no_license
pragus/gouring
f718456c4b78393a51f274f573b34bf6fe7e638f
0df9e6d7cfdfd50b228edbef6cc6ec1fd0a1ab12
refs/heads/master
2020-09-08T22:15:12.559254
2019-11-12T16:21:50
2019-11-12T16:21:50
221,257,175
1
0
null
null
null
null
UTF-8
C
false
false
36
h
../c/liburing/src/include/liburing.h
[ "cryptoloop@gmail.com" ]
cryptoloop@gmail.com
2638a566a71ffea3bdc5a070cc2d047914ed7eef
445522f2cf2dd1d07ad33e55d091b4a01798540a
/security/src/g10/packet.h
8daf1a96ae71867f644a4bead3cdc75d591ab632
[]
no_license
BackupTheBerlios/secser
5974818a9d2929ba24dc22385486439fe919cd9d
48a5415d3011ffa29414071928cf43917c205d1b
refs/heads/master
2021-01-17T05:58:01.703379
2003-07-18T19:51:38
2003-07-18T19:51:38
40,365,851
0
0
null
null
null
null
UTF-8
C
false
false
18,270
h
/* packet.h - packet definitions * Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. * * This file is part of GnuPG. * * GnuPG is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; eit...
[ "dephee" ]
dephee
7f253c811d6bf6513ac84e25b89832238afd7304
1fdab333ebc73fafc1cf6fe916215dd036795c92
/Coordinator/Microchip/Include/WirelessProtocols/Console.h
8db1072a8cc1b3aef96e00f746bf9a1891d0fdf8
[]
no_license
enricoricci51/proj
60da27713e9cf60209002d4322129a411a4b37f7
6972ac1eea472951ff420677c61be97191347122
refs/heads/master
2020-12-24T14:26:43.243347
2016-06-20T05:46:51
2016-06-20T05:46:51
61,484,061
0
0
null
null
null
null
UTF-8
C
false
false
5,607
h
/******************************************************************** * FileName: Console.h * Dependencies: none * Processor: PIC18, PIC24F, PIC24H, dsPIC30, dsPIC33 * tested with 18F4620, dsPIC33FJ256GP710 * Hardware: PICDEM Z, Explorer 16 * Complier: Microchip C18 v3.04 or higher * Microchip C...
[ "enricoricci51@gmail.com" ]
enricoricci51@gmail.com
2659343c88c3e705cff9a449cba26379c09f6492
293b0531859fc4f7aa2bf3d8110cb47dfeb77222
/addr.c
e7843cde0b973942924fe8d7fcd1d3a3bac1afba
[]
no_license
rennis250/acme
7dcf483d5dd17acf9608c3986574ad329eed3473
c4dcec5a6c1d431d72a4efb9da35037d201b4889
refs/heads/master
2020-06-07T13:57:56.023963
2015-06-11T13:52:56
2015-06-11T13:52:56
37,263,813
1
1
null
null
null
null
UTF-8
C
false
false
4,907
c
#include <u.h> #include <libc.h> #include <draw.h> #include <thread.h> #include <cursor.h> #include <mouse.h> #include <keyboard.h> #include <frame.h> #include <fcall.h> #include <plumb.h> #include "dat.h" #include "fns.h" enum { None = 0, Fore = '+', Back = '-' }; enum { Char, Line }; int isaddrc(int r) { if(...
[ "rennis250@gmail.com" ]
rennis250@gmail.com
57aad69870c5bccdae28509c1bfed3655ef4213d
22fc166c00cdc9fcb425f6ae1d44da4ab64d2a6c
/vm_defs.h
e100e65f23aa9a178ae8862fcee86c6c12be103b
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-bsd-3-clause-jtag" ]
permissive
gina-stoffel/keystone-runtime
36627708ebc46152914ff1d5e1bb3ba0dea6f31e
9fbe2ac33e394a4d7b34f01297d4986769d150c0
refs/heads/master
2023-04-23T06:18:06.536741
2021-04-20T17:36:37
2021-04-20T17:36:37
362,725,905
0
0
NOASSERTION
2021-04-29T07:32:33
2021-04-29T07:20:04
null
UTF-8
C
false
false
2,357
h
#pragma once #define BIT(n) (1ul << (n)) #define MASK(n) (BIT(n) - 1ul) #define IS_ALIGNED(n, b) (!((n)&MASK(b))) #if __riscv_xlen == 64 #define RISCV_PT_INDEX_BITS 9 #define RISCV_PT_LEVELS 3 #elif __riscv_xlen == 32 #define RISCV_PT_INDEX_BITS 10 #define RISCV_PT_LEVELS 2 #endif #define RISCV_PAGE_BITS 12 #define ...
[ "noreply@github.com" ]
gina-stoffel.noreply@github.com
c44c225fb8c8a0632aab8b24aa2177cfb65e0274
c90d679e0940f794ca3a67ab3cd271aaaa241f53
/giflib/dgif_lib.c
4da0417fa0b2a8c1125e2c42e9519ac4f41fa45d
[]
no_license
gribinliu/gifcontrol
c25a08c9531cabf36731707f7fd6e268e6766100
1fbe3e1407291b0e2414887dbd38d6f8c9aad52a
refs/heads/master
2023-03-14T15:00:24.789000
2021-03-12T08:24:26
2021-03-12T08:24:26
346,990,090
0
0
null
null
null
null
UTF-8
C
false
false
43,057
c
/****************************************************************************** dgif_lib.c - GIF decoding The functions here and in egif_lib.c are partitioned carefully so that if you only require one of read and write capability, only one of these two modules will be linked. Preserve this property! SPDX-License-Id...
[ "gribinliu@tencent.com" ]
gribinliu@tencent.com
c271e7182947c0eb0b3f001a2f106d05fed6aad7
aa1529f689a962f5af337cb4476e0b8908396e2a
/sys/dev/pci/if_bnxtreg.h
dbcdad6f96697cc00bf8767a23f78007b51e6239
[]
no_license
netzbasis/openbsd-src
4b85ec60a3de43a57f4816ae04b363710c4b1c20
d934f830de7af7ac65c21e2af85a2e04cf7d2e7f
refs/heads/master
2021-05-22T07:59:33.483036
2021-01-09T22:58:59
2021-01-09T22:58:59
22,029,913
4
2
null
2021-01-09T17:17:55
2014-07-20T09:19:31
null
UTF-8
C
false
false
1,189,503
h
/* $OpenBSD: if_bnxtreg.h,v 1.3 2019/04/24 10:09:49 jmatthew Exp $ */ /*- * BSD LICENSE * * Copyright (c) 2016 Broadcom, All Rights Reserved. * The term Broadcom refers to Broadcom Limited and/or its subsidiaries * * Redistribution and use in source and binary forms, with or without * modification, are...
[ "programmer@netzbasis.de" ]
programmer@netzbasis.de
f45f26a5ed56127a673473d918e17a3c31570458
2a96204ae092d6c1db325837425eacfcace2f24f
/src/backend/executor/execProcnode.c
c4012705a3af5b25683ac8b486dc4c27f4f9fd06
[ "PostgreSQL", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
joe2hpimn/agensgraph
df2774d50b3ffb757384efa53f941ae7d3e91634
5ffa51acc501d0e3e179e7f467a0efb301c6811b
refs/heads/master
2021-01-11T13:55:18.935444
2017-05-21T13:45:09
2017-06-06T00:33:52
94,894,490
0
1
null
2017-06-20T13:30:41
2017-06-20T13:30:41
null
UTF-8
C
false
false
21,079
c
/*------------------------------------------------------------------------- * * execProcnode.c * contains dispatch functions which call the appropriate "initialize", * "get a tuple", and "cleanup" routines for the given node type. * If the node has children, then it will presumably call ExecInitNode, * ExecPr...
[ "jsyang@bitnine.net" ]
jsyang@bitnine.net
3b3f3316037e1481d49b17a7c4ca56d1cdfefbae
eecb54360b815a04565e75d51dca2453aa252571
/Ex1_2019-1_Preg2/pila.c
11a1ba411d2b403294467fae0ee44c25fcf8923e
[]
no_license
Cesar-Rafael/Algoritmia
fb975f077c09d1f9bf65875345a62d3bfbc52473
ac35f2cabe04075359b27e49aaf526b13af18915
refs/heads/master
2022-11-13T16:20:57.682587
2020-06-25T04:59:46
2020-06-25T04:59:46
274,831,617
0
0
null
2020-06-25T04:58:18
2020-06-25T04:50:51
C
UTF-8
C
false
false
2,105
c
#include <stdio.h> #include <stdlib.h> struct PNodo{ double peso_real; double peso_teorico; struct PNodo* next; }; typedef struct PNodo PNodo; typedef struct PNodo* Pila; //Prototipos void CrearPila(Pila* pila); int EsPilaVacia(Pila*); void Push(Pila* pila, double p_t, double p_r); int Pop(Pila* p...
[ "noreply@github.com" ]
Cesar-Rafael.noreply@github.com
3b9d2422f335334868a5154d0c893c48eb95d186
468b10c7e2a257246289c739cc01e3e29c8cb874
/ffmpeg/3.1.11/include/libavutil/hmac.h
10b5ee34d52d347cb0c31a05bfe92aa64808bf4c
[]
no_license
tomcatter/HWDecode
b9b6382c256613a9bcdc8a9f6cd17705ab6b38ea
ac8f531c339e7054cbc62a80259870ec3e450126
refs/heads/master
2020-09-20T20:44:10.629947
2020-06-29T02:15:41
2020-06-29T02:15:41
224,586,523
0
1
null
null
null
null
UTF-8
C
false
false
2,892
h
/* * Copyright (C) 2012 Martin Storsjo * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any la...
[ "goufuchun@100tal.com" ]
goufuchun@100tal.com
9f8653f1eca7e3c428eaf79a2baf8a1ee64918d6
64b5a5c7aa0abafe15c3cf72bc5909c354980575
/queue.c
5e5b3967da1646eb3acd12b6dcb3248f240e02b5
[]
no_license
wsywsya119/APOP-SQ-DLL
b738791a645cc60b2b12e1ee106d22ad0cffa93f
785fa65ea549c57c513a4795e07514e2b770161c
refs/heads/master
2021-01-10T01:54:42.795270
2015-12-29T16:03:38
2015-12-29T16:03:38
48,755,259
0
0
null
null
null
null
UTF-8
C
false
false
416
c
#include"stack.h" list* initial(int a) { list* tail=cre(a); return(tail); } list* enqueue(list* a,int b) { list* temp=cre(b); temp->next=a; a->last=temp; return(temp); } list* dequeue(list* a,int *data) { list* temp=a; while(temp->next!=NULL) { temp=temp->next; } *data=temp->data; if(temp->last!=NULL){...
[ "wsywsya119@hotmail.com" ]
wsywsya119@hotmail.com
11d74344a8bea7db2010d9270efa6483581198ad
c92c4ef9f50aab14d2dc418f37e3d4e2d0e1e2db
/libft/ft_bzero.c
7031ffe6e1d98e4d54cee79b95a1787909b21a5e
[]
no_license
s-adamantine/fillit
03ee3605beb15efe4eb03c2d401e249e39bb5840
14cc25e30bc1b3442376ddf6f9014410edcc40ed
refs/heads/master
2021-08-22T08:24:32.107535
2017-11-29T18:37:36
2017-11-29T18:37:36
108,087,982
1
1
null
null
null
null
UTF-8
C
false
false
995
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_bzero.c :+: :+: :+: ...
[ "sadamant@student.42.us.org" ]
sadamant@student.42.us.org
6085d485ad3a9bf166941c02d5bf107c6ae45fce
cf3af553dd4f5c6cb973f6332c66d76fcb05ed9d
/0x04-more_functions_nested_loops/4-print_most_numbers.c
aba207f809ec74df9fa7c71f7450ff1c09d2a00b
[]
no_license
amartinezre05/holbertonschool-low_level_programming
c85a29ffcc196339da91963f00be124793125836
78506bf3892b4798e1c589890294107cacba9950
refs/heads/master
2020-06-06T11:18:11.189153
2020-05-31T18:11:19
2020-05-31T18:11:19
192,725,446
0
1
null
null
null
null
UTF-8
C
false
false
254
c
#include "holberton.h" /** * print_most_numbers - Print the numbers to the list. * * Return: To the value of void. */ void print_most_numbers(void) { int i; for (i = 0; i <= 9; i++) { if (i != 2 && i != 4) { _putchar(i + '0'); } } _putchar('\n'); }
[ "almartinezre05@gmail.com" ]
almartinezre05@gmail.com
e682e20f873b416fdc64eb3cc29e7f0acc9c383a
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/7148b2c5-6eed-4501-9cdd-9367b1c456e0.c
2684f7a678f1dfa7c6671cde4277e0944ec6a640
[]
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
557
c
#include <string.h> #include <stdio.h> int main() { int i=40; int j=12; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = k%j; l = l%j; k = k-k*i; //variables /* START VULNERABILITY */ int a; char b[68]; char c[77]; a = 0; while (b[a] != 0) { ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
a58f5892ac26978c5b97947cc9d81e67e36f22d3
60c27bfc7f90fecf87901a802734add801b8d85f
/fastQ/fastq.c
c4a565e12ae7a7c8441c4657dd99e9340411fea9
[]
no_license
taibaiyifeng/stoneC
323e2b17d87bafaba2a58d51ebd7031556f6c71f
5e1ed09b397649c179022c73eb9594d3c5dedfb6
refs/heads/master
2020-07-31T22:39:39.154238
2017-11-21T05:58:51
2017-11-21T05:58:51
null
0
0
null
null
null
null
UTF-8
C
false
false
2,100
c
#include <stdio.h> #include <fcntl.h> #include<unistd.h> #include "dat.h" #include "http.h" #include "log.h" char *usages = "Usage: fastq -v\n" " fastq -h\n" " fastq [-p/--port] <port> \n" " fastq read <id>\n"; void usage(void) { fprintf (stderr, "%s\n", ...
[ "zhaolei@i1602.com" ]
zhaolei@i1602.com
14e44d3e2c243e44fcc173ca1181c435f95be73b
0f94fec1f5cd6202bea6016cf3e376327da498f2
/206_Areshin, Nogaev,Litvina/MiniOS_2/src/memory.c
205033278422582701f7d3d5f20ecd0e32ddd6a3
[]
no_license
staaaaaaas/summer-pract-2nd
aa4efde43c3a011cc8f81aae593b4aff022ef3c7
01ef841e9b1adf003aa61bd054f0215ab5edeae0
refs/heads/master
2022-11-06T21:35:20.285668
2020-06-23T11:56:47
2020-06-23T11:56:47
274,392,704
0
0
null
null
null
null
UTF-8
C
false
false
1,483
c
#include "memory.h" #include "monitor.h" //Конец определен в скрипте компоновщика extern u32int end; u32int placement_address = (u32int)&end; u32int vmalloc_int(u32int sz, int align, u32int *phys) { //Это в конечном итоге вызовет malloc () в куче ядра. Сейчас мы назначаем память по адресу //placement_address...
[ "noreply@github.com" ]
staaaaaaas.noreply@github.com
91e921fc285ca1f4f50c2ff0153f2d800078cc69
05702376207f2fa781832ccf70d572796987a28c
/test.c
94687ef23c7b46def5ff19f2fe60157933066598
[]
no_license
lx128/Lide90
3c328eb038e0d8c192425052f6acfb4daabc9de5
93965803996885533eed8d79d0b1c4d5d825bb2c
refs/heads/master
2020-07-27T15:35:13.005314
2019-09-17T21:19:10
2019-09-17T21:19:10
209,142,756
0
0
null
null
null
null
UTF-8
C
false
false
149
c
#include<stdio.h> #include<stdlib.h> #include <unistd.h> #include <string.h> void main(void) { int myArray[] = { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 }; }
[ "laurentroux7@gmail.com" ]
laurentroux7@gmail.com
b3a14a02920c11e536cb4d04fed07457c0851f7c
c9325bd865d0df4108b3d76ee8a6fe164e9dbb18
/srcs/ch_key_press.c
fc4922fda5e83706c20cc7f47a0d486851ffcdc0
[]
no_license
dracoeric/Pouchesouape
647a65b2e5332f8e70466c400a91160e017c7eed
90b1a0216e7c6f48ae0a06b5ae0aa319fb83e6e6
refs/heads/master
2020-04-15T11:47:58.321316
2019-01-18T17:13:57
2019-01-18T17:13:57
164,645,161
0
0
null
null
null
null
UTF-8
C
false
false
1,761
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ch_key_press.c :+: :+: :+: ...
[ "erli@student.42.fr" ]
erli@student.42.fr
db307c467594f36bfa2abf734186088e3922c099
707ffa38f1a83efecc86db8070c10589eacb2dbc
/hw1answer/main.c
fe309c7ecbce6129c58b88c2f3df0b91de76a601
[]
no_license
jata0324/JATA
f634fe30315a40f0fe2a9f3997dc867a2b80ca75
261d0b27418f1e5e96e36c3ea5d3f9e88502342b
refs/heads/master
2021-01-17T12:16:38.703675
2016-09-26T05:53:27
2016-09-26T05:53:27
68,793,038
0
0
null
null
null
null
UTF-8
C
false
false
1,665
c
#include<stdio.h> #include<stdlib.h> #include"addrType.h" struct Addr *head=NULL, *tail=NULL; void add(); void print(struct Addr *where); void printAll(); void removeAll(); void modify(struct Addr* where); struct Addr* search(char *name); void main(){ int flag=1, menu; char sname[10]; FILE *fp; struct Addr *cur;...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
4626577425fa17c9d8a58a896d48005b3d6b0394
e06109c7c9fd9e023b37b667d6dadabd4b597ecc
/g722_2/fdt.c
618d7c8c0f33252b0b722762dcad96b433fc276b
[]
no_license
yfang1644/DSP55X
952b68e86c32fdc860ecaacaf21351c77391a5bb
db5d0f4c84436710f88a15db9a1deb4007b749fc
refs/heads/master
2021-01-21T01:03:29.879592
2016-03-19T09:33:47
2016-03-19T09:33:47
38,375,781
4
1
null
null
null
null
GB18030
C
false
false
19,082
c
/*************************************************************************** * Filename : floppy.c ****************************************************************************/ #define IN_FDT #include "typedef.h" #include "fat.h" extern Disk_Info DiskInfo; /*************************************************...
[ "yfang1644@gmail.com" ]
yfang1644@gmail.com
13f1d0d090afe98d396689528bfe108e8da58b10
480c479b19086b58962cff2ffd604410f9a50033
/src/utils/log.c
43700e033fa3f57c97e07b04200c6a212d991847
[ "MIT" ]
permissive
rudy2steiner/service-mesh-agent
416616796e4348f30232bef60bab718efc5f4ca7
02615cb97ed51e581cd7917d81241aeb9a4fc56d
refs/heads/master
2022-07-18T11:39:25.712708
2020-05-25T03:35:56
2020-05-25T03:35:56
null
0
0
null
null
null
null
UTF-8
C
false
false
3,281
c
/* * Copyright (c) 2017 rxi * * 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, publish, distri...
[ "yche@cse.ust.hk" ]
yche@cse.ust.hk
98153ba6f53d4f265f002deb2f1f05f98afbde6e
c326842680a2202f0fbb11ddb44645117ab41b44
/libft/ft_strchr.c
71e5e284d204ba4db95ce09ed6ef8d3f0d173cab
[]
no_license
Zicq/heaven
0fb80724758f63032d5bc7b750935e2467ef3b69
89b0204c15ec574afc1568be75bc9398dd318046
refs/heads/master
2021-08-15T22:32:42.136739
2017-11-18T12:10:15
2017-11-18T12:10:15
null
0
0
null
null
null
null
UTF-8
C
false
false
1,075
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strchr.c :+: :+: :+: ...
[ "vlykhodi@e2r12p6.unit.ua" ]
vlykhodi@e2r12p6.unit.ua
95fb8552b79400b36e92494ec734aceb7ffef0a9
61ff23ae86e6a4bc74b0893e7f3b9600416f9dd7
/mipt/s1/functions/A.c
17f454b164f4beb282e7615e50554891752e7088
[]
no_license
sergia-ch/inf
ee99c560300310cfadac01ff95a2d42869efcf31
3c73d6efc9e1c107d720680f6e4865edbb6fb185
refs/heads/master
2023-01-30T18:08:52.866094
2020-12-07T19:13:24
2020-12-07T19:13:24
15,929,207
0
0
null
null
null
null
UTF-8
C
false
false
245
c
#include <stdio.h> #include "math.h" #include "Af.c" int main() { int a; unsigned int b; scanf("%d%u", &a, &b); // printf("mine: %d, math.h: %d\n", pow_(a, b), pow(a, b)); printf("mine: %d\n", power(a, b)); return 0; }
[ "etoestja@yandex.ru" ]
etoestja@yandex.ru
39808f4bf2f949500bdc172106beb2540446643d
bde250a5bd97435abf0ffa505ba3da1f129720d8
/security/services/smartcrd/tools/tclcrypt/try.c
34ae15787edc5528b7fed1487af684128c78e62c
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_ds
f45afd1a1243e42a8ccb489048f4a73946dad99f
0d97393773ee5ecdc29aae15023492e383f7ee7f
refs/heads/master
2023-04-04T00:34:51.876505
2021-04-14T04:49:28
2021-04-14T04:49:28
357,774,650
1
0
null
null
null
null
UTF-8
C
false
false
3,143
c
//+------------------------------------------------------------------------- // // Microsoft Windows // // Copyright (C) Microsoft Corporation, 1998 - 1999 // // File: try.c // //-------------------------------------------------------------------------- #ifndef __STDC__ #define __STDC__ 1 #endif #include <str...
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
147b3142f47dcb38a158ef1614b4fdef0114ce14
4efa6e59b2e929a57f3b3ddaeeaf0af001c98d12
/minui/courier_extended_15x24.h
8e41e31a6e7527aebb66589305fc840381ae34bc
[ "Apache-2.0" ]
permissive
xiaolu/android_bootable_recovery
9e88ff5a524ca9635a140652e8ee22bf90903bcc
721ebe2667f6f3cb5c02aced0b06571fc923f969
refs/heads/cm-11.0
2021-01-15T21:02:28.979640
2015-05-02T13:25:41
2015-05-14T11:44:38
12,543,098
33
42
null
2014-10-01T01:52:35
2013-09-02T15:23:15
C++
UTF-8
C
false
false
39,768
h
struct { unsigned width; unsigned height; unsigned cwidth; unsigned cheight; unsigned char rundata[]; } font = { .width = 3360, .height = 24, .cwidth = 15, .cheight = 24, .rundata = { 0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f, 0x7f,0x7f,0x7f,0x7f,0x43,0x81,0x03,0x81,...
[ "cdesai@cyanogenmod.org" ]
cdesai@cyanogenmod.org
449035cb99f4d24894445805cc7f219c59e9abba
aaebbdd594e373a86e111a35c548fd8109d86cfa
/src/benchmarks/stencil/stencil.c
e4afe60ef10eae5cc5391beafa5df9f6cc8ea425
[]
no_license
rigelproject/rigel-targetcode
e4fb59a848cad01d774ca254b3eac09019b2ee1b
c5b97af3947c149a32a329d85462a81cac6961cb
refs/heads/master
2020-05-30T03:16:32.891363
2012-03-15T10:09:24
2012-03-15T10:09:24
3,622,827
0
0
null
null
null
null
UTF-8
C
false
false
19,281
c
#include "../common/common.h" #include "rigel.h" #include <stdio.h> #include <stdlib.h> #include <spinlock.h> #include "rigel-tasks.h" #define MAX_SUPPORTED_THREADS 8192 #define Index3D(_nx,_ny,_i,_j,_k) ((_i)+(_nx)*((_j)+(_ny)*(_k))) #define MAX(x,y) (((x) > (y)) ? (x) : (y)) #define MIN(x,y) (((x) > (y)) ? (y) : (...
[ "johnso87@crhc.illinois.edu" ]
johnso87@crhc.illinois.edu
871819e1c2dd63dc533a2f8a7b634da1be2794cb
9fe3d387dee244c24045de62aa5ca88107952aeb
/src/logfile.c
29f342a4b4605bb144cf741eb4ddc2a905866a97
[ "MIT" ]
permissive
oscar-davids/geokeytool
3dffa19e135c8808a99b5a6421b9b68393540a8b
53c5ed1e9b5207223e15438ae299c0a51e4bf07d
refs/heads/master
2021-01-07T18:24:41.726193
2020-03-02T17:52:49
2020-03-02T17:52:49
241,781,991
21
4
MIT
2020-03-02T16:20:50
2020-02-20T03:14:26
C
UTF-8
C
false
false
2,225
c
/** * Author......: See docs/credits.txt * License.....: MIT */ #include "common.h" #include "types.h" #include "memory.h" #include "event.h" #include "locking.h" #include "shared.h" #include "logfile.h" void logfile_generate_topid (hashcat_ctx_t *hashcat_ctx) { logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_...
[ "noreply@github.com" ]
oscar-davids.noreply@github.com
af661157654e0b9348fd03109824dcd77c778874
7a01a0a847f60aa2c881e468feac45a6f3490130
/lib/bind/resolv/res_mkupdate.h
48edf63df714a484a467cf7ccb81cbab399a3272
[ "ISC" ]
permissive
personal2222/Netsec-project
6c06f1e769a69c8a715962458326ed08533312ae
269860c6a7aaf8d32ab042df556de573026c955e
refs/heads/master
2020-04-21T14:28:14.237693
2019-04-29T03:35:50
2019-04-29T03:35:50
169,636,126
0
1
NOASSERTION
2019-03-13T22:18:48
2019-02-07T20:17:39
C
UTF-8
C
false
false
945
h
/* * Copyright (c) 1998,1999 by Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS"...
[ "Typhoidmarypatrick@gmail.com" ]
Typhoidmarypatrick@gmail.com
4264ac483794b2dd4c4d91133f02dca45509d82d
a63199cf8dd17a6f6d14a971f77b48c7db088e04
/nemu/src/cpu/exec/data-mov/movsx.h
71a47a08a3e3f1d801c39fc6effd0194278c5284
[]
no_license
lcyyzy/nemu_fdu_2015
09f79b6d49f58cceade8f2b3a79b322605be6aaf
19ae2207030b157d6e50469c3b99886398a2e1a1
refs/heads/master
2021-01-18T11:53:58.589876
2017-06-23T06:08:39
2017-06-23T06:08:39
57,296,363
0
0
null
null
null
null
UTF-8
C
false
false
159
h
#ifndef __MOVSX_H__ #define __MOVSX_H__ /*make_helper(movsx_v); make_helper(movsx_rm2r_v);*/ make_helper(movsx_rm2r_b); make_helper(movsx_rm2r_v); #endif
[ "14307130318@fudan.edu.cn" ]
14307130318@fudan.edu.cn
b0e2c121654c3464057a84474f23e97a0809aae6
c6a9658b221887b34a6a3154b5a2a05f0ab1842f
/identicallist.c
ee9d076c0bf50be67b7470358e4e425c829f7b65
[]
no_license
cksharpa/Data-Structure-and-Algorithms
668d5db4f525570f96ee0246cccec7d46ae5e21a
135b88bdce069cbb8ea3558ed5e19c6f623047fc
refs/heads/master
2020-06-03T06:27:53.677957
2014-06-12T10:08:16
2014-06-12T10:08:16
null
0
0
null
null
null
null
UTF-8
C
false
false
1,338
c
#include<stdio.h> #include<stdlib.h> #include<stdbool.h> struct node { int data; struct node *next; }; void push(struct node **head_ref, int new_data) { struct node* new_node = (struct node*)malloc(sizeof(struct node)); new_node->data = new_data; new_node->next = *head_ref; *head_ref = new_n...
[ "cksharpa@gmail.com" ]
cksharpa@gmail.com
b19d23aafd505a0ba9a116f276d312721abd1d1e
1b32d5d1453e664e5a8d4389c20464b913efbd90
/Post Lab/Post Lab 1/Printer Sharing/stack.c
2eb55a041f8cb21a5ceb8b1788714bb40154bbee
[]
no_license
little-endian-0x01/DSA-Skillrack-Problems
3c2c043678bf04bf653289cc47c169c3353aa0d1
a382db9d0ac3b3fb2be8aae06004fdb47177355e
refs/heads/master
2021-07-10T18:51:04.628761
2017-10-10T18:19:20
2017-10-10T18:19:20
null
0
0
null
null
null
null
UTF-8
C
false
false
2,096
c
#include<stdio.h> #include<stdio.h> #include<stdlib.h> #include<string.h> #include<ctype.h> #define size 10 char infix[size],postfix[size],stack[size]; int top=-1; int precedence(char ch); char pop(); char topelement(); void push(char ch); int braces(char *); int main() { char ele,elem,st[2]; in...
[ "kapoor.shivam88@gmail.com" ]
kapoor.shivam88@gmail.com
7452bb606118337014d886045a979baf4f293be5
bb9eac2a989d5018668701a1345c0eb6ce9dda32
/fmt_fmu/rtos/components/dfs/filesystems/uffs/src/emu/uffs_fileem_ecc_hw.c
67db5fa356d2a3d616d56913d9c7e400a1184c7f
[ "GPL-2.0-only", "GPL-1.0-or-later", "eCos-exception-2.0", "LGPL-2.0-or-later", "LGPL-2.1-only", "LicenseRef-scancode-other-copyleft", "Apache-2.0" ]
permissive
yangjion/FMT_Firmware
0a1b1c460d53bdf385730c79b0b9ed8d3fe7d6f3
2152c9c4680bad98bd1c2da9f3b9739c2fd24bb2
refs/heads/master
2022-12-26T22:07:10.251958
2020-09-30T09:05:32
2020-09-30T09:05:32
292,263,051
0
1
Apache-2.0
2020-09-02T11:23:41
2020-09-02T11:23:40
null
UTF-8
C
false
false
6,618
c
/* This file is part of UFFS, the Ultra-low-cost Flash File System. Copyright (C) 2005-2010 Ricky Zheng <ricky_gz_zheng@yahoo.co.nz> UFFS is free software; you can redistribute it and/or modify it under the GNU Library General Public License as published by the Free Software Foundation; either version 2 of ...
[ "zoujiachi666@163.com" ]
zoujiachi666@163.com
d43b5089535af6955156f261905b71da227f4096
158a73857b6e0e816b14f71c5cfc8e73ade82621
/User/usb_prop.h
b2aca1e456f5f9699cffeb2b35236a79bb6d7772
[]
no_license
ry7740kptv/example20171019
9da403eca2610e27378f37f388823bba892ae013
2d482424a6e5156050ab4b88ecb38abc57350835
refs/heads/master
2021-05-15T16:48:22.951500
2017-10-19T13:20:07
2017-10-19T13:20:07
107,548,016
0
0
null
null
null
null
UTF-8
C
false
false
2,989
h
/** ****************************************************************************** * @file usb_prop.h * @author MCD Application Team * @version V3.4.0 * @date 29-June-2012 * @brief All processing related to Mass Storage Demo (Endpoint 0) ***********************************************************...
[ "ry900814@hotmail.com" ]
ry900814@hotmail.com
4d2ec9a26c854afcb339f5ea435b8f4b12290d3b
74966b364bf4dda18163f8e9c4b02a9889679aae
/sdk/nrf5_sdk_16.0.0_thread/external/zboss/include/zboss_api_zgp.h
f39f5380ff8dc6e8d4e01248313a20271d8cb9d6
[ "MIT" ]
permissive
ShishirPatil/nrf52x-base
55256482890addfe33801fc1ede272e3b286cf31
14887c9982ddb8d9c4812a011b41126117a9cb0f
refs/heads/master
2022-04-19T22:19:43.523743
2020-04-15T23:25:05
2020-04-15T23:25:05
255,825,007
0
0
MIT
2020-04-15T06:25:58
2020-04-15T06:25:58
null
UTF-8
C
false
false
64,937
h
/* ZBOSS Zigbee 3.0 * * Copyright (c) 2012-2018 DSR Corporation, Denver CO, USA. * http://www.dsr-zboss.com * http://www.dsr-corporation.com * All rights reserved. * * * Use in source and binary forms, redistribution in binary form only, with * or without modification, are permitted provided that the ...
[ "nealjack@umich.edu" ]
nealjack@umich.edu
d75ea5b085bf7bfcdaedf7e55c0e52cbdd9612f6
252243e2c6b954a9500596297a6b61dfbf313f80
/src/lvm.c
396f4d99686ce785b24e25357d3f4cd18e891b43
[]
no_license
mcgwh/lua-vm
8cac70a655f6147aa1e04b0b7b59f5fff40357b9
99868a3254630d8de1a4ec59d338f05935ca80ef
refs/heads/master
2022-04-03T05:02:13.192035
2019-12-27T06:50:14
2019-12-27T06:50:14
null
0
0
null
null
null
null
UTF-8
C
false
false
44,508
c
/* ** $Id: lvm.c,v 2.268.1.1 2017/04/19 17:39:34 roberto Exp $ ** Lua virtual machine ** See Copyright Notice in lua.h */ #define lvm_c #define LUA_CORE #include "lprefix.h" #include <float.h> #include <limits.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "lua.h" #include...
[ "landoyjx@163.com" ]
landoyjx@163.com
fdf4f175372f94d03e8d9e9ba0298c99972185db
0b68afdcab2b214792f8c8736106c17d4afbe0e9
/GLIB/ADPCM/main.c
24dacd6e1d43264f3344299101e016d97e4b81fb
[]
no_license
yisea123/F4CameraDisplay
eb5e949b7d4decd4b5bd412cd75b2b7b0396f779
f971e33e3e0d0a325a987d5dcc63e2bc4d23219f
refs/heads/master
2020-09-22T02:55:35.277141
2015-08-18T14:09:24
2015-08-18T14:09:24
null
0
0
null
null
null
null
UTF-8
C
false
false
3,269
c
/* realize the adpcm code and decode, bandwidth needed is 32kbps, is half of the ulaw coded, 64kbps */ #include <stdio.h> #include <unistd.h> #include <sys/io.h> #include <fcntl.h> #include <sys/types.h> #include <sys/ioctl.h> #include <sys/stat.h> #include <stdlib.h> #include <linux/soundcard.h> #include "adpcm.h"...
[ "jasongwq@gmail.com" ]
jasongwq@gmail.com
71ba8443f3778dddaf5ba44d053500dc24912815
ae3277ad7a340ca0ae3a2ca606efdc1dcd3e940a
/controller10/caterina_bootloader/lufa-LUFA-111009/Demos/Host/LowLevel/StillImageHost/StillImageHost.h
9f53f0c63d5cd2da73e055dee3d8c54f8866edb1
[]
no_license
volzotan/timebox
67e185b23170dc296cca1f39f6fc236cda7a5c40
6912fd41e4fdc1cf5f689612a2fcb8c8b9b3fbed
refs/heads/master
2021-05-23T21:41:00.445724
2020-06-14T17:10:14
2020-06-14T17:10:14
61,395,013
6
1
null
null
null
null
UTF-8
C
false
false
3,065
h
/* LUFA Library Copyright (C) Dean Camera, 2011. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, distribute, and sell this software and its documentation for any purp...
[ "christopher@volzo.de" ]
christopher@volzo.de
72eeccd130226e3aeae0535ca2f144ae422f9501
8d2db7e94854b4f8d69411dadfef4848ff457bca
/openingd/dual_fund_roles.h
f2e3b7a3093fa58332f83aa287c1191de32f4ad7
[ "MIT" ]
permissive
waldo2590/lightning-1
26c79bb50a483d2d4e09cb6a13a61b535743ead8
bd811fbd1a6f0d3369d0ad62787c2b1c6b9072d6
refs/heads/master
2022-12-12T03:36:33.371127
2020-09-09T12:37:28
2020-09-10T00:57:24
294,281,135
0
1
NOASSERTION
2020-09-10T02:26:59
2020-09-10T02:26:58
null
UTF-8
C
false
false
222
h
#ifndef LIGHTNING_OPENINGD_DUAL_FUND_ROLES_H #define LIGHTNING_OPENINGD_DUAL_FUND_ROLES_H #define NUM_DF_RULES (OPENER + 1) enum dual_fund_roles { ACCEPTER, OPENER, }; #endif /* LIGHTNING_OPENINGD_DUAL_FUND_ROLES_H */
[ "rusty@rustcorp.com.au" ]
rusty@rustcorp.com.au
d42e2e7f16fec4b3805e400ca0de2973b9f09e3f
cf2577cceada4e57c1198c80096347c930c21b29
/lib/panmaster/selftest/src/panmaster_test.c
273ff9d4fd332e6739161827294a325cfa8d885a
[ "Apache-2.0" ]
permissive
cucter/uwb-core
c781d794dc078e10f11499fb5d76eb7ffd227882
66f468659ec3353cf7fd6f2bd14f3a6cef397f4e
refs/heads/master
2023-06-11T10:56:03.274103
2020-08-14T12:22:29
2021-02-25T04:19:17
null
0
0
null
null
null
null
UTF-8
C
false
false
1,472
c
/* * 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 ...
[ "niklas@casaril.com" ]
niklas@casaril.com
7fb0bdb35cfa14fea049b2d2b172e1567dbe75c6
202994de83b5649fbc2b9c40d51dcdba1063f763
/src/mess/drivers/cnsector.c
a62a581b89c2ecf067b8f9af18da0b47b93c78c6
[]
no_license
manuelassoni/mame
86494a02ff2729db91837dd7f9819c3d9dfb478b
b328aebce8a170a114e5dc55a9694d16713c7829
refs/heads/master
2021-01-16T23:47:02.469323
2014-12-30T19:09:54
2014-12-30T19:09:54
null
0
0
null
null
null
null
UTF-8
C
false
false
7,345
c
// license:BSD-3-Clause // copyright-holders:hap /*************************************************************************** Parker Brothers Code Name: Sector * MP0905BNL ZA0379 (die labeled 0970F-05B) This is a tabletop submarine pursuit game. A grid board and small toy boats are used to remember your loc...
[ "happppp@users.noreply.github.com" ]
happppp@users.noreply.github.com
57bdf4f88beb27b3a49cfddb5e2a3ac42cfc903f
5685057ac6bd4bc8b2f70aa3215a63dee1036e79
/CanOpen.H
307e93ffbdeffc9586f5bf9f690dd38c1a6cc60e
[]
no_license
DonHiggins/I_001_F281xTB3CMB_014
4ec71ee9b9df80975ad9a52822064571f7a153c6
769af96fa76a3efcedb3ed69ebddad521fd95989
refs/heads/master
2020-03-23T20:36:31.688873
2018-08-10T17:15:28
2018-08-10T17:15:28
142,050,926
0
0
null
null
null
null
UTF-8
C
false
false
7,585
h
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // // CanOpen.H // // // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #ifndef CANOPENx_H #define CANOPENx_H #include "stddef.h" // defnes NULL #include "stdbool.h" // needed for bool dat...
[ "Dhiggins@a-m-c.com" ]
Dhiggins@a-m-c.com
55a01e2e19804917b8fa775f072c3be46ab726a5
cd760d6f8e318941e37c0ffb8566993896606e6e
/.phoronix-test-suite/installed-tests/compilebench/compilebench-0.6/t/native-0/drivers/ata/pata_triflex.c
e36b6d6d56a342c07b90ed6bc1926ebcf6fa2349
[]
no_license
aorzerep/neb
3fab34e1ad05cd0c1f2274f4d143664c1ed4368d
6dda5d3c432f2636973c9a98370056e57fe8e79f
refs/heads/master
2020-09-08T10:06:34.548290
2019-11-12T01:00:41
2019-11-12T01:00:41
221,099,011
0
0
null
null
null
null
UTF-8
C
false
false
7,660
c
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...
[ "root@neb.intranet.highprophil.com" ]
root@neb.intranet.highprophil.com
3ba6376b03ca6fa6324b5857aa8e8947e09f2528
0f939266830341c6f98957bf6007ca9c5f06ea02
/libft/srcs/ft_memalloc.c
7e598f6291a094dba583373bdcdedcaa4fc02750
[]
no_license
acoupleu/Filler
c3b9ea53004e059791bef050143a5fdbd0b62490
9feac5cb4e48840adef7c99c6dcf01e5739f6978
refs/heads/master
2020-07-28T15:47:54.366949
2016-12-07T17:44:28
2016-12-07T17:44:28
73,407,671
0
0
null
null
null
null
UTF-8
C
false
false
1,065
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memalloc.c :+: :+: :+: ...
[ "acoupleu@e1r2p4.42.fr" ]
acoupleu@e1r2p4.42.fr
77e17613fc67e3cd3dc14df33ed0ee6c531ade45
fe692881320e10c55962cebd165d478c1434c359
/item/60/6175.c
3de0cf7614e6f39177cb3e72dc999041dce74cbc
[]
no_license
anho9339/chienquoc
130602c90c43053bbc99dfbfbc877de0b2d81dd7
cb5157d5eabcb4bb2ff71c292cfbdd5dc5fbb221
refs/heads/master
2021-07-04T07:51:49.408023
2021-02-01T15:15:58
2021-02-01T15:15:58
222,929,950
1
0
null
null
null
null
UTF-8
C
false
false
1,260
c
// 自动生成:/make/equip/60b #include <ansi.h> #include <equip.h> #include <level.h> #include <item.h> #include <effect.h> #include <skill.h> inherit ARMOR; int get_family() { return 6; } // 函数:构造处理 void create() { set_name("Bá Vương Chiến Bào"); set_picid_1(6042); set_picid_2(6042); set_l...
[ "hothienan1993@gmail.com" ]
hothienan1993@gmail.com
0b18e7f615614b707a125b9fe978346d97f3a8a4
3d0b66f39b6b869f84ce0094b660707b7859702d
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Array_InternalEnumerator_1_gen_106MethodDeclarations.h
72bd508d7d8756e9be7f2c283c5de15b0285aa50
[]
no_license
choirdesign/hack-slash
b12b2e86de09b2eec62685d40eec3856df619077
3754f5af407a783bfaf9d9eedbb61148cc50672c
refs/heads/master
2021-01-10T13:40:37.011080
2015-11-24T09:14:57
2015-11-24T09:14:57
45,164,312
0
0
null
null
null
null
UTF-8
C
false
false
3,310
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.Array struct Array_t; // System.Object struct Object_t; #include "codegen/il2cpp-codegen.h" #include "mscorlib_System_Array_Interna...
[ "wataruyamakawa@gmail.com" ]
wataruyamakawa@gmail.com
a3a39c74ae833b2b89b76900ddd57006e7b26050
5ccaeb278ef69bf41d803f9bf339101c39bf2136
/apps/examples/peripheral/tmr/timer3_interrupt/firmware/src/system_config/pic32mx_usb_sk2/system_config.h
8a17093709c62f949308f49f8c2f7286cebe31d9
[]
no_license
Mytrex/Harmony
6de69d5ebbb8cb7769a9ee7bd0330264c1d6ed3a
32dceb018139e59a12c26044b9f0252d1c0d67c9
refs/heads/master
2021-03-16T09:42:26.915713
2016-11-02T08:25:20
2016-11-02T08:25:20
71,403,438
0
1
null
null
null
null
UTF-8
C
false
false
9,837
h
/******************************************************************************* MPLAB Harmony System Configuration Header File Name: system_config.h Summary: Build-time configuration header for the system defined by this MPLAB Harmony project. Description: An MPLAB Project may have multiple ...
[ "jared@mytrexinc.com" ]
jared@mytrexinc.com
89788efd4694c23ad1e7a63752cc18c10d99486a
91506e6689c544d2afe738b683142c5bdd832a2e
/Raslite/Raslite.h
b954ce17ddff99ffaf65e53fa44d8ca1b56e5b95
[]
no_license
flarewu/Raslite
4f2d615ba5506b2918eb20002631354875620e2d
ee4ab5b4b2c3bdbeb125a8d872aac071a30a73f0
refs/heads/master
2021-01-24T01:59:22.325113
2018-02-25T13:47:50
2018-02-25T13:47:50
122,830,699
0
0
null
null
null
null
UTF-8
C
false
false
192
h
#ifndef RASTLITE_H #define RASTLITE_H #include "RasliteMath.h" #include "RasliteCommon.h" #include "RasliteData.h" #include "RasliteShader.h" #include "RaslitePipeline.h" #endif //RASTLITE_H
[ "sixfreedom@163.com" ]
sixfreedom@163.com
bf55b944b4522de6b7f36541bfc280189e61e240
735a28b4e939ea6f3a0ce1392466791f0177ce5f
/w3/1-prompt/3-getcwd.c
4e00fb498ce0be319ba018d3759b0037fbddcbc4
[]
no_license
calvinkam/csci3150-16Spring
5b00bfb14306e9d674c197108b7f9e05aec6c727
d3fba6db3014b376f00773ca0e62f23db1645e4d
refs/heads/master
2016-08-11T18:47:13.528453
2016-02-01T04:14:33
2016-02-01T04:14:33
50,812,181
0
0
null
null
null
null
UTF-8
C
false
false
301
c
#include <stdio.h> #include <limits.h> // Needed by PATH_MAX #include <unistd.h> // Needed by getcwd() int main(int argc,char *argv[]) { char cwd[PATH_MAX+1]; if(getcwd(cwd,PATH_MAX+1) != NULL) { printf("Current Working Dir: %s\n",cwd); } else { printf("Error Occured!\n"); } return 0; }
[ "calvinkam123@gmail.com" ]
calvinkam123@gmail.com
71ca1751aab9a776a1d02e43a8a3f1788e434d89
2290e50fa9ac7aa0c92d75906648c9729ce8b097
/sources/ext/phalcon/collection.zep.c
f8ac8c10605d374ae20915522fcc937184345ba4
[ "BSD-3-Clause" ]
permissive
PollyCatZ/Phalcon_4.1.2-with_minifiers
b90cacc6fb2b625fe879647407d8c794cb5ddd3f
d559b2fab0d9fd39c3175921f5af7f395c67048f
refs/heads/main
2023-08-19T09:59:51.218099
2021-10-25T23:40:07
2021-10-25T23:40:07
null
0
0
null
null
null
null
UTF-8
C
false
true
24,524
c
#ifdef HAVE_CONFIG_H #include "../ext_config.h" #endif #include <php.h> #include "../php_ext.h" #include "../ext.h" #include <Zend/zend_operators.h> #include <Zend/zend_exceptions.h> #include <Zend/zend_interfaces.h> #include "kernel/main.h" #include "ext/spl/spl_iterators.h" #include "kernel/object.h" #include "ke...
[ "92663444+PollyCatZ@users.noreply.github.com" ]
92663444+PollyCatZ@users.noreply.github.com
ab80d9951bb160a85fb9c696807741bd4d03304b
51998b086f9916e2c4b4feab059c51e882fee454
/HugePie/kernel/pc/pc.c
c5b4c4de268f9c46d6729bc0a9746fa631ede903
[ "BSD-3-Clause" ]
permissive
carlzhang4/HugePie
7bba83ca10e71e2ebba6a7ede341176738be6402
4e49fcaf3d3cd60299dce8ccaa12ba5d46044091
refs/heads/master
2020-04-01T00:57:17.782008
2019-04-14T15:35:50
2019-04-14T15:35:50
152,720,208
1
2
null
null
null
null
UTF-8
C
false
false
19,720
c
#include <zjunix/pc.h> #include <zjunix/pid.h> #include <zjunix/slab.h> #include <driver/vga.h> #include <zjunix/syscall.h> #include <arch.h> #include <intr.h> #include <zjunix/utils.h> #include <zjunix/log.h> #include <driver/ps2.h> //各优先级队列和退出进程队列,退出进程队列就是task_lists[PRI_QUEUE_NUM] task_node *task_lists[PRI_QUEUE_NUM...
[ "tanqinhan@tanqinhandeMacBook-Pro.local" ]
tanqinhan@tanqinhandeMacBook-Pro.local
9ab3dec3197347c71bc371cd1ffe6dc12a71e7e0
7bea350de48cf62b5513e7205321a8b635a2955d
/Data Structures/Practice/c_graph_airline.c
2bc1a6ee19ad0edf803af9ceb4799c6cf25ba7d4
[]
no_license
jmgmiko/myprojects
66dbd34bf17d4aa2b4e8a91e084b5b9f93928adf
bbf884de07cd77d9ec299a7a6d21c9af32c22420
refs/heads/master
2020-06-29T11:12:34.088877
2017-01-21T04:51:23
2017-01-21T04:51:23
74,335,126
0
0
null
null
null
null
UTF-8
C
false
false
1,012
c
/*This program has one of the applications of the graph theory-transport networks. The type of transport that is used in this program is a plane. So, the establishment involved is an airline company.*/ #define SIZE 50 #define SENTINEL INT_MAX typedef struct { int flightNum; int hours; } **Airline, *AirlineCo...
[ "janmikhail6898@hotmail.com" ]
janmikhail6898@hotmail.com
a3d64f94089caff40134250ebfa9b848b2173dd9
196ff38dfab6a92746a9bfd68a1aae3913218d54
/02-fork-exec/prog6.c
5c6f4ac8a00a2bad3d64c6619424536c77489049
[ "MIT" ]
permissive
isel-leic-so/SO-1920v-LI42D
c24130b95d71bdfff2ba56732a932fdb26014c94
78533500a89a3af35c59494f78f01903cd23e84e
refs/heads/master
2021-02-06T00:09:43.530853
2020-06-08T11:23:55
2020-06-08T11:23:55
243,852,578
9
0
null
null
null
null
UTF-8
C
false
false
684
c
#include <unistd.h> #include <sys/wait.h> #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <sys/stat.h> #include <fcntl.h> int main() { int pipefd[2]; pipe(pipefd); pid_t pid = fork(); if (pid == 0) { // child close(pipefd[0]); printf("Child running...\n")...
[ "jtrindade@cc.isel.ipl.pt" ]
jtrindade@cc.isel.ipl.pt
c27297439eb1cef65eaf4e48194458a2dfa89328
2ab8ad3d924632214bb3e0616d7044abe323c8e9
/ex2/src/ex2.c
a2f0bdd8e21ed87b393fadbb045e5f1abf468c47
[]
no_license
maciejjo/openmp-tasks
673236079e5f8e3144765460047a5dff464ca3b1
f1d30e560eb259cbead89477d9add695a88d847d
refs/heads/master
2021-01-10T07:42:21.546422
2015-11-22T11:08:14
2015-11-22T11:08:14
36,864,468
0
0
null
null
null
null
UTF-8
C
false
false
1,595
c
/* * * ex2 * * A) Set affinity to single CPU for each OMP thread * B) Prepare time measurment method using RDTSC x86 instruction * */ #define _GNU_SOURCE #include <stdio.h> #include <stdlib.h> #include <sched.h> #include <sys/types.h> #include <unistd.h> #include <omp.h> #include <pthread.h> /* * * From...
[ "maciejjo@maciejjo.pl" ]
maciejjo@maciejjo.pl
1c3fe90a8c1b17da8d2d4ec33ac6cd498bb24590
ef1a968e527c98b58865b7f60a4cbf724345101e
/sink_led_manager.h
b53f8a41523cc12964c14b9c785323c2be19b7de
[]
no_license
pp34/SinkSpp
80af07020cae5ad62853a0590671e94fc238fcb4
b4cf2e03eb947d2b305e17cd37b4f6b1343e5ee2
refs/heads/master
2020-03-16T01:52:44.149665
2018-05-07T12:02:40
2018-05-07T12:02:40
132,450,844
1
0
null
null
null
null
UTF-8
C
false
false
1,034
h
/**************************************************************************** Copyright (C) Cambridge Silicon Radio Ltd. 2004-2014 FILE NAME sink_led_manager.h DESCRIPTION */ #ifndef SINK_LED_MANAGER_H #define SINK_LED_MANAGER_H #include "sink_private.h" #include "sink_states.h" #include "sink_events.h...
[ "709204803@qq.com" ]
709204803@qq.com
4c14a658463d32b3fb67ebcf837b57881c0b9038
9e5a9991b69449f1c6361a0d662ab1fae7bbe63b
/varRange3.c
49ee846a65c4349c9ac6f94d66390aeba1075e07
[]
no_license
pky0704/studyC
71b7bd38dc7ef05313f8fbd64f08a4793d9b8f59
4c7ac93374c3b7436daff0b6f600b386141587f6
refs/heads/main
2023-06-27T00:24:27.679037
2021-07-26T12:28:55
2021-07-26T12:28:55
385,900,579
0
0
null
null
null
null
UHC
C
false
false
590
c
/* 전역변수 */ #include <stdio.h> int i;//전역변수 선언. 값지정 X => 초기화 0 void printWhat(); int main(){ printf("i(1)=%d\n",i);// 0 int i=10; printf("i(2)=%d\n",i);//10 printWhat();// 0 return 0; } void printWhat(){ printf("i(3)=%d\n",i); } //case1 - 변수의 저장 유형 static 사용(지역 -> 전역) // int exampleStatic(int i)...
[ "ghghgh0704@naver.com" ]
ghghgh0704@naver.com
37c6b1618b3538fde47ed64feb41c2e92e627077
21fc165bb84d151738d397b0423f6c7c104ff162
/ft_ls/libft/srcs/ft_striter.c
e73df22144b87cf87ffcf7bcaab84869557a7f8c
[]
no_license
GeorgeCroft/Projects
5895136a7edcd154095b84811278cbefcfe18f11
a5042f71c64d8d9febab8365177154268da08810
refs/heads/master
2020-03-24T02:13:59.273529
2018-07-26T00:33:23
2018-07-26T00:33:23
142,278,705
0
0
null
null
null
null
UTF-8
C
false
false
1,047
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striter.c :+: :+: :+: ...
[ "georgecristianmura@gmail.com" ]
georgecristianmura@gmail.com
c5921b4316ce5915fe0d9babe0b4fed8c4bf316d
2caef640cc47851dbe4728f68f893b1a19883843
/foam/core/src/ext/hashmap.c
b6279e8df1b57afc771004361fad7d97aa2c30b9
[]
no_license
soulfoam/foamengine
3838b66096f8cbb19c733fced7d71547540f85bc
456bad5606bb13a06cc2e6f1090ada2ac67b77ca
refs/heads/main
2023-06-19T07:12:39.407321
2023-06-17T01:19:45
2023-06-17T01:19:45
189,989,426
3
0
null
null
null
null
UTF-8
C
false
false
5,450
c
#include <foam/core/ext/sugar.h> #include <foam/core/ext/io.h> #include <foam/core/ext/hashmap.h> //capacity must be a power of 2 #define DEFAULT_HASHMAP_CAPACITY 32 static bool is_null_item(fe_hashmap_item_t *item) { return item->key == NULL; } static void item_set_values(fe_hashmap_item_t *item, const char *k...
[ "soulfoam@gmail.com" ]
soulfoam@gmail.com
e4e2c95f880cdd62cce82c9a5d67de38ec029ea2
9d09bec8199f990f91df1cc4dbcb784142103826
/sims-master/i7000/i7090_drum.c
a80a972ea4741a3e84a954ddac7dea8d9d2ea7d8
[]
no_license
rsanchovilla/SimH_cpanel
e79b2fb3abb2e1cb15ccf6d4c3333c95608bb4a8
9829b7d0fe6062b479635aa9ea441f3ee454e500
refs/heads/master
2023-08-09T05:02:56.977249
2023-05-20T13:10:27
2023-05-20T13:10:27
106,935,392
57
7
null
2023-06-03T18:10:12
2017-10-14T14:39:47
C
UTF-8
C
false
false
9,156
c
/* i7090_drum.c: IBM 7090 Drum Copyright (c) 2005-2016, Richard Cornwell 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 th...
[ "noreply@github.com" ]
rsanchovilla.noreply@github.com
8c4012a637e41d5416c53e9fe3f4c7e7b9da4c5a
478849b62ba9c1d2376bfd4de025ddf8738c16cc
/CalcConv/3_Implementation/src/logarithm.c
fb5571b434a4c9c3e4020f12b683c6b79cd4483f
[]
no_license
99002473/GENESIS
9f44648ecf003355f8686aedb6414a2cb5c069a3
27b51bc102ff5f666b726aa9250b66545baa8af1
refs/heads/master
2023-01-03T01:44:06.084901
2020-10-17T10:29:03
2020-10-17T10:29:03
296,511,384
0
3
null
2020-10-17T10:29:04
2020-09-18T04:15:33
C
UTF-8
C
false
false
121
c
#include "logarithm.h" #include <stdio.h> #include <math.h> int logval(int a) { int r; r=log(a); return r; }
[ "69150993+stepin104354@users.noreply.github.com" ]
69150993+stepin104354@users.noreply.github.com
a9f19d3cc83dca806e337cf5808b1602b3082915
0fd1b2c64dbd6582651869b253dfcc4cbd7a0ade
/clist_show_2.c
1c98591faf150c41378a6a40da2449c99e69caf5
[]
no_license
zhoujianchun/gtk-pro
f7e330618be6c408288046dd5e7ab5151b6b7176
8714ad80679ce30314f77ac6666db820f1514117
refs/heads/master
2020-06-04T20:37:39.684108
2009-12-23T08:03:25
2009-12-23T08:03:25
null
0
0
null
null
null
null
UTF-8
C
false
false
909
c
#include <gtk/gtk.h> int main(int argc, char** argv) { GtkWidget *window; GtkWidget *clist; GtkWidget *image; gtk_init(&argc, &argv); window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); gtk_widget_set_size_request(window, 150, 200);...
[ "jianchun.zhou@gmail.com" ]
jianchun.zhou@gmail.com
eb958927c593dc017621dc6ee8ec1e3fa36258fb
31e61661ee9a74f7b6565cff03ef895166d45387
/ws_ROS2/install/pivot_msg/include/pivot_msg/msg/detail/pivot__functions.h
7c2479720fe81b9ec13866977c3809c6619d9327
[]
no_license
jiaqian1234/telemanipulation
6e5125f553c0847c2c05695c8213badfeb5d5e59
572b9b7be4db2165f5a9660599854e5d8fe1e013
refs/heads/main
2023-03-31T08:29:31.576156
2021-03-24T19:23:59
2021-03-24T19:23:59
351,013,168
7
0
null
null
null
null
UTF-8
C
false
false
3,739
h
// generated from rosidl_generator_c/resource/idl__functions.h.em // with input from pivot_msg:msg/Pivot.idl // generated code does not contain a copyright notice #ifndef PIVOT_MSG__MSG__DETAIL__PIVOT__FUNCTIONS_H_ #define PIVOT_MSG__MSG__DETAIL__PIVOT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <s...
[ "uzxxl@student.kit.edu" ]
uzxxl@student.kit.edu
31c6c4b680afae3ba71cdf1962b894e6e474fff4
c99a3c4a516a7964b8ce2245e763cf392660adb5
/TPMFactoryUpd/9665FW update package_1.5/Tools/UEFI/Application/RunIFXTPMUpdate.c
b29f495f52f4d5327387a477b1bb430b1cb527cc
[]
no_license
Andrew-tesler/infineon-firmware-updater
a5c35160320fdf4f950f186088f88c9f620969fd
52784476344b6b9cd6992356b46454ba7ac49082
refs/heads/master
2020-04-08T19:00:45.962195
2018-11-29T09:48:15
2018-11-29T09:48:15
159,635,091
0
1
null
2018-11-29T08:46:49
2018-11-29T08:46:48
null
UTF-8
C
false
false
35,314
c
/**************************************************************************************** * Copyright 2014 - 2016 Infineon Technologies AG ( www.infineon.com ) * * * * All rights reserved. * * * * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS O...
[ "tesler.andrew@gmail.com" ]
tesler.andrew@gmail.com
2d35e276f837d1220b56d1782c146f848b0e190f
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/test/multimedia/dmusic/AATest/Helpers.h
969c4e33b6002a917055ba7f636b1a1a862a163b
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C
false
false
141
h
#pragma once HRESULT ChopPath(const char *p_szFullString, LPSTR p_szPathOut, LPSTR p_szFileOut); LPCSTR PathFindFileName(LPCSTR pPath);
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
898fe9beeb3d4b5046636464f89883c795264016
1580f024f6717a96b5d70edc52aa94f4953b4fcb
/acqu_user/root/macros.online/NewFPDGen.C
2f7716135fcfecb7847d6afb9baa501f247c957b
[]
no_license
A2-Collaboration/acqu
7531a981cfe98603a14dfef4304312177f2a4072
b7571696ec72e2b08d64d7640f9ed5a39eddb9f6
refs/heads/master
2023-05-01T07:30:06.743357
2019-04-03T16:18:35
2019-04-03T16:18:35
9,445,853
1
15
null
2022-09-09T08:44:08
2013-04-15T10:05:39
C++
UTF-8
C
false
false
4,713
c
void NewFPDGen(Int_t tdcStart=800, Int_t scalerStart=2000, Int_t n=328, Char_t* calFile=NULL, Double_t eBeam=0.0) { // Generate New FPD ladder file. Input parameters and default values: // tdcstart start index of TDCs // scalerStart start index of Scalers // n number of ladder elements //...
[ "philmartel0@gmail.com" ]
philmartel0@gmail.com
e9e041064dc55f3c601a74e5528f33ea77d7efbe
ba2dcc7abfbfc1249337bfdddc45564177327502
/Thesis/gateway/Inc/time_value.h
515fc69cc02d39b7de4161459bd76b861863f1e6
[]
no_license
tnt310/ptn209b3
21701440146784e312bd0f47a7987123570ae40c
1b33f3c9b75b7e3b82f93510c791c8180d08e1ac
refs/heads/master
2023-07-08T00:03:35.827534
2021-08-14T05:16:19
2021-08-14T05:16:19
null
0
0
null
null
null
null
UTF-8
C
false
false
871
h
/* * time_value.h * * Created on: Apr 14, 2021 * Author: ACER */ #ifndef TIME_VALUE_H_ #define TIME_VALUE_H_ /* Built-in C library includes ---------------*/ #include <stdint.h> #include <stdio.h> #include <string.h> /* Platform includes --------------------------*/ #include "stm32f4xx_hal...
[ "trantram2299@gmail.com" ]
trantram2299@gmail.com
c532b38115a2a9a2f41bf3dea7e7ead6a5648f07
977127d6ae53ae79a2fbcc7c034d84c516595d0e
/avt/VisWindow/Tools/VisitSphereTool.C
8878e44c03464c25c834b678ff0f09d924a6e090
[]
no_license
burlen/visit_vtk_7_src
51679fab1faf337e2e3f09f11c0da9515b049e94
9e3ce699b44803850208f003a46c0577dca1858a
refs/heads/master
2020-04-12T09:36:01.943093
2016-05-11T00:53:27
2016-05-11T00:53:27
51,111,375
1
3
null
null
null
null
UTF-8
C
false
false
28,419
c
/***************************************************************************** * * Copyright (c) 2000 - 2015, Lawrence Livermore National Security, LLC * Produced at the Lawrence Livermore National Laboratory * LLNL-CODE-442911 * All rights reserved. * * This file is part of VisIt. For details, see https://visit.llnl...
[ "bonnell@18c085ea-50e0-402c-830e-de6fd14e8384" ]
bonnell@18c085ea-50e0-402c-830e-de6fd14e8384
146e45e63d6d28a12aea227ccb6c139440522d24
2e1200fcec94ea57ffb925ee7f35d21bc4a6443e
/trunk-nxt/src/rdpartyrobotcdr-3.2.1/drivers/philips-pcf8574.h
9597d53c65cd579cafcc5a2c86ff7b31503dd8b5
[]
no_license
cho934/pm-robotix
acc1eaa80069cce297ee52e08961bfdc04110f5a
e88fcfc3d636b428d88797ed612c2461bce58f1b
refs/heads/master
2021-01-20T04:32:23.610337
2015-06-05T20:28:08
2015-06-05T20:28:08
39,189,107
0
0
null
null
null
null
UTF-8
C
false
false
2,513
h
/*!@addtogroup other * @{ * @defgroup pcf8574 Philips PCF8574 * Philips PCF8574 * @{ */ /* * $Id: philips-pcf8574.h 127 2012-12-05 19:32:39Z xander $ */ #ifndef __PCF8574_H__ #define __PCF8574_H__ /** \file philips-pcf8574.h * \brief Philips PCF8574 IO MUX driver * * philips-pcf8574.h provid...
[ "christophe.chaudelet@gmail.com" ]
christophe.chaudelet@gmail.com
50db9f70b5be7d4eb226f4d5c268c03f02d436ba
19be3ceaeb2898f2e7fdb2eb71e6d43321604d1d
/problem_3.c
ad35811e0d3d670fde5601d12661f7acfd00628a
[ "MIT" ]
permissive
mikeyPower/project-euler
da207fea8bf5ae964ba43ebb4d0e0f206783d59b
b6fb1a115b104fb998640f1acfd0e06383799c16
refs/heads/master
2022-04-12T13:20:23.117167
2020-03-27T10:18:27
2020-03-27T10:18:27
223,187,335
0
0
null
null
null
null
UTF-8
C
false
false
982
c
#include<stdio.h> #include <math.h> /* It is best to start working from the smallest prime number, which is 2, so let's check: 12 ÷ 2 = 6 Yes, it divided exactly by 2. We have taken the first step! But 6 is not a prime number, so we need to go further. Let's try 2 again: 6 ÷ 2 = 3 Yes, that worked also. And 3 is ...
[ "powerm3@tcd.ie" ]
powerm3@tcd.ie
fd39508c98325831a09954a17ad28717ff5c606f
624b87b9e94a5b5a02a793d06e86ed978e5742d9
/Flexbot-1.5.0_Baylor/FlexBot/src/main/jni/API/com_vmc_ipc_view_gl_GLBGVideoSprite.h
be02ace6d34bf5105716242cde6e753c775963f2
[]
no_license
DeeRid/BaylorBattleDroneFinal
b57007fcdb6c83d77da1afbef0671e60d0940ee6
c9d1d6e5c29fdf06d62cb21c3dad16a17306156d
refs/heads/master
2021-01-20T12:55:52.879357
2017-05-06T02:46:15
2017-05-06T02:46:15
90,429,647
1
1
null
null
null
null
UTF-8
C
false
true
2,012
h
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class com_vmc_ipc_view_gl_GLBGVideoSprite */ #ifndef _Included_com_vmc_ipc_view_gl_GLBGVideoSprite #define _Included_com_vmc_ipc_view_gl_GLBGVideoSprite #ifdef __cplusplus extern "C" { #endif #undef com_vmc_ipc_view_gl_GLBGVideoSprite...
[ "David_Ridley@baylor.edu" ]
David_Ridley@baylor.edu
d3c940e18cd0f4702ead9ff8348ab2355978ca8c
2ea2f8ef7c904e2f97655d10ab4e2fac24f7872d
/code.c
05eed95f999f2791215c01773045e97b62bdca8b
[]
no_license
AmrMoh0325/S_SWCM_01
1389643dd2ac48dc84f1e0b0b1b7ac8aa6c04624
0aba148af7365518c69bc8885bcb4057f41c2a8e
refs/heads/main
2023-06-06T19:02:51.257966
2021-06-28T12:19:24
2021-06-28T12:19:24
380,876,394
1
0
null
null
null
null
UTF-8
C
false
false
184
c
#include <stdio.h> int main() { printf("Hello"); return 0; } //feature 1 code int multiply (int x, int y) { return x*y; } //feature2 int xor_num(int n, int m) { return n^m; }
[ "82750474+AmrMoh0325@users.noreply.github.com" ]
82750474+AmrMoh0325@users.noreply.github.com
5b4cbad5e9dd4c2da22640a8ce39b6de5c563536
bc106dd2684218ee543fe4fec75d92988a8371a9
/89LPC922/calibrate/fb_calibrate.c
5b7eb9542e8db3426ab74fa7782c3fc6f28daa38
[]
no_license
Paolo-Maffei/Freebus-lpc
429554a11fc714a8f1c4c772b3c5b3cd23b10338
db2fbd7295126e77d6986fb1de15fd05b237251a
refs/heads/master
2020-07-26T21:57:05.740211
2012-07-15T16:53:48
2012-07-15T16:53:48
33,267,372
1
0
null
null
null
null
UTF-8
C
false
false
1,397
c
/* * __________ ________________ __ _______ * / ____/ __ \/ ____/ ____/ __ )/ / / / ___/ * / /_ / /_/ / __/ / __/ / __ / / / /\__ \ * / __/ / _, _/ /___/ /___/ /_/ / /_/ /___/ / * /_/ /_/ |_/_____/_____/_____/\____//____/ * * Copyright (c) 2...
[ "service@krieger-elektro.de" ]
service@krieger-elektro.de
cc233e9312c0e07facdabc9c7cc62de7076c40f8
36d17fbd15dedcfca14a62609656fd951ee1d907
/include/environment.h
72191bd882442b7e5a168297be4c15807e054c9a
[ "BSD-2-Clause-Views" ]
permissive
rkya/SBUnix
ba037fa7adb8d5a4a327d2d12da5ed0e4365ee51
de5b3a3c9340708f892a64b0bd4cddc38d0ef0df
refs/heads/master
2021-04-09T15:08:46.071295
2018-05-07T23:38:02
2018-05-07T23:38:02
125,685,140
3
0
null
null
null
null
UTF-8
C
false
false
176
h
#ifndef _ENVIRONMENT_H #define _ENVIRONMENT_H #define MAX_ENV_VARIABLES 64 #define MAX_ENV_VARIABLES_SIZE 128 void e_init_environment(); void e_print_all_variables(); #endif
[ "rkarhadkar@cs.stonybrook.edu" ]
rkarhadkar@cs.stonybrook.edu
619e7d12ac1f0957daa1af0e0efeacde2541d9f9
e282df63ea4ed82c69541bcc65d619a0464d1826
/src/mmod-pdo.c
089aa412ba01e3d34d6646aa81e0bafaf57e22d2
[ "BSD-3-Clause" ]
permissive
hroptatyr/clob
8cb367bc9ad6cc6ea15c8aa596d4bc2fa6fcb7cf
812137a3edca4e00f05ac8b3ff2212c5deb545a5
refs/heads/master
2022-09-30T06:59:32.109616
2022-08-28T02:36:23
2022-08-28T02:36:23
95,415,456
25
14
null
null
null
null
UTF-8
C
false
false
4,569
c
/*** mmod-pdo.c -- price discovery orders * * Copyright (C) 2016-2022 Sebastian Freundt * * Author: Sebastian Freundt <freundt@ga-group.nl> * * This file is part of clob. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions...
[ "freundt@ga-group.nl" ]
freundt@ga-group.nl
cf6c1dfa3a7db5be51a4d91af2e43bf43d00acf0
9685317e2cfe75c74079dd9b76787f383e707f74
/580/Kefa_and_Park/kefa_and_park_step2.c
52db190d6c1a00517c493072e685a4133d782436
[]
no_license
yigezhe/codeforces
79c6e9fb7acfe3a0cbbb4e7c4b7950518687af5e
02cb1eecbbc297c463eccccf54f92e3b88510f5c
refs/heads/master
2021-01-10T01:16:34.080672
2015-12-06T01:51:32
2015-12-06T01:51:32
47,479,721
0
0
null
null
null
null
UTF-8
C
false
false
2,321
c
//书中的数据没有按我希望的顺序给! #include<stdio.h> #include<stdlib.h> int main() { int n,m; scanf("%d%d",&n,&m); //printf("n=%d,m=%d\n",n,m); int *a=malloc(n*sizeof(int)); if(a==NULL) { printf("a can't get memory!\n"); } int i; for(i=0; i<n; i++) { scanf("%d",&a[i]); } /* f...
[ "1830973318@qq.com" ]
1830973318@qq.com
580833598a5801bb2cec2d5b93e583f848fc1244
09e58edccdae392bf9c54bd59c96446e74b5f0a0
/snes/bankselect/pad.h
e5a907f2d29b38a4def15696dbbf26286ed4b124
[]
no_license
optixx/quickdev16
80460b1a01601b5fd31a721a8fafcfd5d7cd0a66
a1e3ef36b4b6aa7afcf77897c4b897c621c799c2
refs/heads/master
2020-05-30T07:13:42.870526
2016-08-20T16:13:08
2016-08-20T16:13:08
199,003
65
11
null
null
null
null
UTF-8
C
false
false
383
h
typedef struct padStatus{ byte right:1; byte left:1; byte down:1; byte up:1; byte start:1; // Enter byte select:1; // Space byte Y:1; // X byte B:1; // C //-------------------------------- byte Dummy:4; byte R:1; // Z byte L:1; // A byte X:1; // S byte A:1; // D } padStatus; extern voi...
[ "david@optixx.org" ]
david@optixx.org
f7398d96f883cdf4322ea53bd5f7a7c8a7da8051
ff0cea25685a4db737f569d3ebbd9a175c4efbb2
/serial/encrypt.c
43f24c3d75c45f817ec217e42ff3d998c446bc33
[]
no_license
Deepashika/6CS005_CUDA
a763407470ade34921c2ea50a6fda60166dfe95c
5f508549380e6063a4df145842f6aaace28641a8
refs/heads/master
2020-09-14T11:31:51.863619
2017-01-13T15:10:56
2017-01-13T15:11:37
66,697,926
0
0
null
null
null
null
UTF-8
C
false
false
1,543
c
// adding files to repository /* * Encrypt all the strings in a given file. */ /* including c libraries */ #define _GNU_SOURCE #include <crypt.h> #include <malloc.h> #include <stdio.h> #include <string.h> #include <unistd.h> #define SALT "$6$HP$" #define PASSWD_FILE "../data/popular_passwords.txt" #define ERROR...
[ "deepashika.padmathilaka@gmail.com" ]
deepashika.padmathilaka@gmail.com
e71e80f4d53b9d9f36789be883df92b28b0603ee
e2e996662fde8ac0e1509995468b725d47d8ea10
/program_repo/Codeflaws/version/v538/test_data/defect_root/source/tcas.c
c7a7e6f27257b9d24874cdf415606727fefd1710
[]
no_license
HOM-CISE/HOM-MBFL
b5c27ba9268b2bf7cd4faccece2ff479147ebf81
38806a5971736ab98e1d6f4b22952cf4d9b328b2
refs/heads/master
2023-05-05T20:24:44.228132
2021-06-01T13:58:28
2021-06-01T13:58:28
285,776,568
1
0
null
null
null
null
UTF-8
C
false
false
281
c
#include<stdio.h> int main(int argc, char *argv[]) { int m,n,i; scanf("%d %d",&n,&m); for(i=1;i<=n;i++) { m=m-i; if(m>=0&&i==n) i=0; if(m<0) { printf("%d",m+i); break; } } return 0; }
[ "LK464841764@163.com" ]
LK464841764@163.com
fde269e6c384562f5c2d1ffa64ed30649213a068
161f2bda0a29e59cc5eeae306e54d326f4765fa7
/S32K144/Mcal/Mcu_TS_T40D2M10I1R0/src/Mcu_CMU.c
e6ed41822e9093f41bb00071995fdb5a7dee59d5
[]
no_license
hao507/S32K144
cfecb97ee9357d4c8175d4a6b50e71b20eabaac0
bd59a2638b4f6851f3c934200817c8644765d219
refs/heads/master
2022-08-01T01:10:55.337924
2020-05-19T03:17:49
2020-05-19T03:17:49
266,337,378
0
1
null
2020-05-23T12:59:55
2020-05-23T12:59:54
null
UTF-8
C
false
false
40,164
c
/** * @file Mcu_CMU.c * @version 1.0.1 * * @brief AUTOSAR Mcu - Clock Monitoring Unit functions implementation. * @details Specific functions for CMU configuration and control. * Part of the Magic Carpet hw IP. * * @addtogroup MCU * @{ */ /*========================================...
[ "786494921@qq.com" ]
786494921@qq.com
974fa5b321f27e64721f88fd7b80a538e5be2d91
5abe089d154ae01779dcbde0fa6d4f84f2ceb059
/tinyDAV/src/audio/alsa/tdav_consumer_alsa.c
273862d98d5d10825c2a69fa69029166a14cff24
[]
no_license
quantum6/doubango-quantum6
2baeaa59de5bd3d2c24ae5587ee7edb76f4630df
35ca01a51a5be161a503f460e7ce758053de5927
refs/heads/master
2021-01-05T11:45:37.006095
2020-03-14T11:49:30
2020-03-14T11:49:30
241,012,743
3
1
null
null
null
null
UTF-8
C
false
false
8,934
c
/* Copyright (C) 2014 Mamadou DIOP. * * This file is part of Open Source Doubango Framework. * * DOUBANGO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) ...
[ "bossiel@yahoo.fr" ]
bossiel@yahoo.fr
6b56b70ac56c5697387d519c585551591ffa3539
2b0ff7f7529350a00a34de9050d3404be6d588a0
/013_TC++/範例/CH13/GRAPH04.C
5ae69aa810af05039ce5acbd044e02ac43254497
[]
no_license
isliulin/jashliao_VC
6b234b427469fb191884df2def0b47c4948b3187
5310f52b1276379b267acab4b609a9467f43d8cb
refs/heads/master
2023-05-13T09:28:49.756293
2021-06-08T13:40:23
2021-06-08T13:40:23
null
0
0
null
null
null
null
UTF-8
C
false
false
475
c
/* program graph04.c */ #include <graphics.h> #include <stdlib.h> #include <time.h> main() { int graphdriver=DETECT,graphmode=DETECT; int i; unsigned int x=60,y=100,x1,y1; initgraph(&graphdriver,&graphmode,""); if ( graphresult() != grOk ) { printf("can not graphics.\n"); exit( 1 ); } randomize(); for ( i...
[ "jash.liao@gmail.com" ]
jash.liao@gmail.com
4359e6c3173f1d6536578907c9a73936f2286104
743a9eb89953f926375ee52de949fab575a313ce
/app/include/nrf24l01.h
11ab3a3af85f7b0f1660c43f9613e64a6f7d1056
[]
no_license
yaolongli520/nrf24l01_4418
7db9df027cb76b93e297288c233948d35b1e8042
88e0410bfe5301d1f2c07f015bd22badb69b4104
refs/heads/master
2022-12-11T14:49:52.192460
2020-09-09T16:16:13
2020-09-09T16:16:13
292,617,906
0
0
null
null
null
null
UTF-8
C
false
false
1,662
h
#ifndef __NRF24L01_H_ #define __NRF24L01_H_ #define DEVICE_NAME "/dev/nrf24l01" #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) #define TRAN_LEN_MAX 32 /*发送单次最大字节*/ #define EACH_LEN_MAX 28 /*每个包最多容纳数据个数*/ #define PACK_HEAD_LEN 32 /*包头的长度*/ #define PACK_TOTAL_LEN 32 /*数据包总长*/ #define EACH_LEN_REQ 7 /*...
[ "992770449@qq.com" ]
992770449@qq.com
a07c49d3e601d3b69369975fc70dacce3edb9291
ab04fae0aae97e12ef446b2d9f02dcb18c7ef7d9
/sock.c
b0fcac8207bf8bc311535b16efc753d93a1c76cc
[ "MIT" ]
permissive
CordlessWool/time_sync_master_slave
98cd0c7e41c95264c2ac15c4a50a722a062b07bf
d8c7f6d28a33887e2d76a1764863c344a7e72501
refs/heads/master
2020-06-27T13:14:15.638500
2018-04-02T00:09:53
2018-04-02T00:09:53
97,058,967
1
0
null
null
null
null
UTF-8
C
false
false
2,987
c
// // Created by wolle on 12.07.17. // #include "sock.h" #include <stdio.h> #include <sys/socket.h> #include <netinet/in.h> #include <zconf.h> #include <arpa/inet.h> #include <string.h> #include "error.h" #define BUFLEN 50 int setReciveTimeout(int sock, int sec, int usec){ struct timeval timeout; timeout.tv_...
[ "W.Rathgeb@dropanote.de" ]
W.Rathgeb@dropanote.de
9b6ec9837267fdc8e91edb8b5e843839d26a3c55
14fd126ff68624b66daf64fc251a633244593ab1
/cosmosis-standard-library/likelihood/planck2015/plc-2.0/src/actspt/clik_actspt.c
d1e5452f19c565a3e37968a787a1db9bcf7dbfca
[ "BSD-2-Clause" ]
permissive
ktanidis/Modified_CosmoSIS_for_galaxy_number_count_angular_power_spectra
6749d1dec87b3f070f9d255b602d32260341f478
ce195564631b148bef0214a27a57470640c69a08
refs/heads/master
2023-05-15T09:11:32.086202
2021-06-11T15:43:08
2021-06-11T15:43:08
278,347,824
1
1
BSD-2-Clause
2021-06-11T15:43:09
2020-07-09T11:38:12
Fortran
UTF-8
C
false
false
3,157
c
#include "clik.h" #include "clik_helper.h" #include <errno.h> #include <string.h> void actspt_extra_free_(); void actspt_extra_lkl_(double*, double*); void actspt_extra_only_one_(int*); void actspt_extra_parameter_init_(char*,int*,int*,int*,int*,int*,int*,int*,int*,int*,int*,int*); typedef struct { char tmpdir[800...
[ "noreply@github.com" ]
ktanidis.noreply@github.com
db6dc3ae79cbd27938091fc664a53286c1b3f44a
4f1bfd70365f88dbc44c39aa4f61ab892543007e
/ch5example5.c
2f66d9b74ee44b66fdc67a0267ad5d3f64da817d
[]
no_license
INDvasanth/vasanth
e81dca5bea9a1dc5a09e6906e46df16ac9037c86
a7d9c66d61f8985516f81c927b57affd1c4e4526
refs/heads/master
2021-05-28T05:29:30.917943
2014-11-01T18:37:03
2014-11-01T18:37:03
null
0
0
null
null
null
null
UTF-8
C
false
false
825
c
/* chapter-5 Using Nested for Loops * Vasanth [29 Aug 2014] */ #include <stdio.h> int main(void) { int n; int number; int triangularNumber; int counter; for(counter=1; counter<=5; ++counter) { printf("what triangular number do you want? "); scanf("%i", &number); triangularNumber=0; for(n=1; n<=n...
[ "vasanthcuddalore@gmail.com" ]
vasanthcuddalore@gmail.com
ee2d17b047d948ef8c324a1e0435166646485260
adb75486071d53050cdfaba7379756c5fd551d8a
/lib/src/recovery.c
235ed06316ed063830c5cab2520472af92b02652
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
Pallavikadam10/quant
e7503f4c1eacf8ac9b467925a278644933eb100a
e18f46670ac1100fe9c09c6af4549adb51b642ef
refs/heads/master
2021-05-08T23:46:17.341837
2018-01-30T09:40:57
2018-01-30T09:40:57
null
0
0
null
null
null
null
UTF-8
C
false
false
13,040
c
// SPDX-License-Identifier: BSD-2-Clause // // Copyright (c) 2016-2018, NetApp, 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: // // 1. Redistributions of source code must retain the abo...
[ "lars@eggert.org" ]
lars@eggert.org
3556f5fa1b9f0178cd61c3c6ff35253c6d9c3a2d
91ce2ce5cf2e6920469ebe501c598391d0a883ba
/84.c
b2ba2080b86492ee77b48ee9c39f455eb1ff315b
[]
no_license
MANOJTMK/beginner9
26e9a4b7403012bab35fe4e4c134cbc6666413be
8698982bc3501f1c50992c3047ad0319833e7c43
refs/heads/master
2020-04-22T00:06:54.937211
2019-03-10T05:29:18
2019-03-10T05:29:18
169,968,218
0
0
null
null
null
null
UTF-8
C
false
false
131
c
#include <stdio.h> int main(void) { char ch; printf("enter the character"); scanf("%c",&ch); printf("\n%d",ch); return 0; }
[ "noreply@github.com" ]
MANOJTMK.noreply@github.com
6b13a31bd3931df9ae3e43d1332611a679aa89b3
ed76c1fcaa5dd6e871a56d2ba796a31df6ef5675
/src/menu_pessoa.h
eb7af1b7e404df6c3b78b9dbbad2ea7f9a3955e8
[]
no_license
da0hn/agenda-de-contatos-cpp
8d2dd2bf8fa983c13febabd84a2c9d91ed097243
db815f5200413c741e88c055737304fe204f26f4
refs/heads/master
2023-06-22T15:22:04.688939
2021-04-10T00:22:50
2021-04-10T00:22:50
355,894,586
0
0
null
null
null
null
UTF-8
C
false
false
816
h
#ifndef AGENDA_MENU_PESSOA_H #define AGENDA_MENU_PESSOA_H #include <stdio.h> #include <string.h> #include <stddef.h> typedef struct Pessoa Pessoa; typedef struct Email Email; typedef struct Telefone Telefone; void crudPessoa(); void salvarPessoa(); void __carregarTelefonePessoa(); void __carregarEmailPessoas(); ...
[ "gabrielhondacba@gmail.com" ]
gabrielhondacba@gmail.com
d313cecb0c95fca15ce69c4b631853d7f18c8c33
c6ff37dfe110d5bc4841a262d918922c43fb916d
/STM32CubeExpansion_SBSFU_V2.3.0/Middlewares/ST/STM32_WPAN/ble/core/Src/core/ble_hal_aci.c
ad744bcde814d67afdcda8ae5f96ae0fd3b09b4d
[]
no_license
mfkiwl/Sercure-Boot
d51a2820713ff0d0e193210bb4b8e7727495fcf3
2d4549666ceb756317c45435ad9e260cb0b8ecf5
refs/heads/master
2022-12-31T11:06:38.574991
2020-09-27T09:18:30
2020-09-27T09:18:30
null
0
0
null
null
null
null
UTF-8
C
false
false
12,601
c
/****************************************************************************** * @file ble_hal_aci.c * @author MCD Application Team * @date 05 March 2019 * @brief Source file for ble api STM32WB (hal_aci) * Auto-generated file: do not edit! ******************************************************...
[ "moufei@cmiot.chinamobile.com" ]
moufei@cmiot.chinamobile.com
9da8118c276bcadbb8210ea16383cd65ee543519
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/82c8439a-a943-476a-8860-54d798a77ff7.c
f97295198f89bf1da457d0c7e5c7da1029361643
[]
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
548
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=12; int k; int l; k = 63; l = 64; k = i/j; l = i/j; l = l%j; l = j-j; k = k-k*i; //variables /* START VULNERABILITY */ int a; char b[12]; char c[47]; a = 0; do { //random ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
1828bad15abba67b8d7c63c9d19c1054298dab24
3817f002f826a922adc25dca70620cfafe2b7488
/ArmPlatformPkg/PrePi/MainMPCore.c
9a2d87bf26fe506fdd4b239c5228fba4cf36283e
[ "BSD-2-Clause" ]
permissive
henar111/EDKII
ec0c53204e03fd6ab7ad4a29412e1b8f3ee3b1a7
7c52c29084251f2d483ae1423ddc4cbdd50fff38
refs/heads/master
2022-01-03T09:28:21.995846
2014-02-09T07:46:57
2014-02-09T07:46:57
null
0
0
null
null
null
null
UTF-8
C
false
false
3,202
c
/** @file * * Copyright (c) 2011-2012, ARM Limited. All rights reserved. * * This program and the accompanying materials * are licensed and made available under the terms and conditions of the BSD License * which accompanies this distribution. The full text of the license may be found at * http://opensource.org/l...
[ "lalala0706@gmail.com" ]
lalala0706@gmail.com
84605b6642a42de81af412287b509ea183d1ce76
41644b7a7cac396e889d13d9f723120f7bdac638
/Tree/ExpressionTree/ExpressionTree/ExpressionTreeMain.c
eed1c9ee30ae237b5e968ee73592602246608541
[]
no_license
kr2020lbh/Data-structure
4782b7312ba2308eee9de3243ca8ac5426de7ca7
e23e2851095fb41dbdefea96e2b3f802b0744ff7
refs/heads/master
2023-04-26T08:11:28.006361
2021-05-22T10:57:55
2021-05-22T10:57:55
362,459,609
0
0
null
null
null
null
WINDOWS-1252
C
false
false
381
c
#include <stdio.h> #include "ExpressionTree.h" int main(void) { char exp[] = "32-7+2*"; BTreeNode* eTree = MakeExpTree(exp); printf("PreFix \n"); ShowPrefixTypeExp(eTree); printf("\n"); printf("InFix \n"); ShowInfixTypeExp(eTree); printf("\n"); printf("PostFix \n"); ShowPostfixTypeExp(eTree); printf("\n"); p...
[ "eric99kr@gmail.com" ]
eric99kr@gmail.com
f5a1a337e141d93d58349c0e9241a9720d206400
1ad4dd5261a185f3cf92d7fd3226de28679747c5
/kernel/drivers/iommu/fsl_pamu.h
c3434f29c9671378281c8c87f4ca960251a6ffe6
[ "Linux-syscall-note", "GPL-2.0-only", "MIT" ]
permissive
oslab-swrc/libmpk
b30c8fa2eea834a8ab441fdd9f7789296781ec17
a0b20ab8819d60d22d2a90f0d54eccae40ae6b05
refs/heads/master
2022-05-01T01:36:07.491532
2022-03-18T05:44:14
2022-03-18T05:44:14
223,290,854
0
0
MIT
2019-11-22T00:30:13
2019-11-22T00:30:12
null
UTF-8
C
false
false
13,592
h
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warr...
[ "spark720@gatech.edu" ]
spark720@gatech.edu
2e3aa99ab31ffbda79779f304245d7fea1d23f8e
807a6d15692480b9420e041972a589131447b923
/app/src/main/cpp/mesa/main/genmipmap.h
12a876566883fc65863f869a1475c1162dc9e73b
[]
no_license
1vanyk1/Awimul
b946a864d65b726e7195c6ada064b02892b1ad62
841098923e50468599f7221c9af2d21ae21f7b36
refs/heads/master
2023-07-17T16:44:47.525340
2021-08-26T17:23:50
2021-08-26T17:23:50
317,278,357
1
0
null
null
null
null
UTF-8
C
false
false
827
h
#ifndef GENMIPMAP_H #define GENMIPMAP_H #include "glheader.h" bool _mesa_is_valid_generate_texture_mipmap_target(struct gl_context *ctx, GLenum target); bool _mesa_is_valid_generate_texture_mipmap_internalformat(struct gl_context *ctx, ...
[ "57059188+1vanyk1@users.noreply.github.com" ]
57059188+1vanyk1@users.noreply.github.com
d361a8780c9f63189051c9509478752f7d502d17
ad5f0d9aa8f0b696cd24676edc7580af2597ae42
/SEAF/NetworkManager-master/libnm-core/nm-setting-team.c
9fd070c1fe2593fb6945705256154b608eadaf96
[]
no_license
PascalMat/5G-AKA-simulation-in-C
b5b4a1800e3d19455a189be60178b292dd21e161
27d4ac8bd3972f46175efdba97fc0295049155de
refs/heads/master
2020-05-27T08:54:23.186690
2019-07-22T18:51:42
2019-07-22T18:51:42
188,555,799
7
4
null
null
null
null
UTF-8
C
false
false
60,183
c
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) a...
[ "p.mathias@tu-bs.de" ]
p.mathias@tu-bs.de
3a9eb07f92aac4ad351ed73443cfda9d0ea4766c
75707853d66ac005f52cd5894f22250f29a6818e
/si/ESP_CAMERA_LCD.si4project/Backup/app_main(2210).c
8926ceeb56f1418089ecd3b7068f87b67e3156da
[]
no_license
jiajiadev/ESP32-CAM-LCD-Display
dca09a99a21733e6d7a3b81e79fd98886e1f0718
17edc8b172f823dc734678fc8efbd74cdeb6c9fe
refs/heads/main
2023-01-22T10:47:28.479860
2020-11-19T20:09:32
2020-11-19T20:09:32
null
0
0
null
null
null
null
UTF-8
C
false
false
6,169
c
/* ESPRESSIF MIT License * * Copyright (c) 2018 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD> * * Permission is hereby granted for use on all ESPRESSIF SYSTEMS products, in which case, * it is free of charge, to any person obtaining a copy of this software and associated * documentation files (the "Software"), to deal...
[ "513696765@qq.com" ]
513696765@qq.com