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
8526a1065d954a188eb7940bb33688857257dc48
f9e7b876c5cc4bd8cae56ae06226892de93a4adc
/uofw_courses_code/C_Programs/programs/if_switch/lumens.c
6b1443f5eec5b61894e281fa7b6199c986082c67
[]
no_license
malachig/archive
6e6533ca55e63a48260fddc130d8c88e73e9e638
5e858ef0c13bd205d8b4b664f839184f8b7deeb4
refs/heads/master
2023-02-19T17:26:51.784890
2023-02-17T15:02:22
2023-02-17T15:02:22
16,629,086
1
1
null
null
null
null
UTF-8
C
false
false
913
c
/* lumens.c */ /* Author: Malachi Griffith * Date: Oct. 25 2002 * Purpose: To convert watts to lumens. Use switch command. */ #include <stdio.h> main() { int watts; int lumens; int test; printf("\nEnter the watts of your bulb, enter 99 to quit > "); scanf("%d", &watts); while (watts != 9...
[ "malachig@gmail.com" ]
malachig@gmail.com
f89232530f25d86c2474c41399c1b5d766e4e811
22b1f4f0c8afc0c2531bc6f56fcca5cf2b10949a
/Lista 1/01.c
9d1b456c45529d544a3446680e9ba8fe4a6adb1f
[]
no_license
LeticiaFarias/Estrutura-de-dados
7b76677852244e9b6dcb75bbd1bec87bf86c10b3
6aaa38005f3109ee37a1dc01a18f8e23d482da67
refs/heads/master
2022-06-19T04:15:12.197391
2019-05-16T22:00:54
2019-05-16T22:00:54
175,217,244
0
0
null
null
null
null
IBM852
C
false
false
1,009
c
#include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <locale.h> typedef struct { char nome[50]; char endereco[50]; char telefone[8]; float altura; char data_nasc[8]; float peso; } Prontuario; typedef struct { char nome[50]; char endereco[50]; char telefone[8]; float altura; char data_nasc[8...
[ "40062831+LeticiaFarias@users.noreply.github.com" ]
40062831+LeticiaFarias@users.noreply.github.com
65c761977e47eab8f91864067548421eec7ad2d8
c997f142a464cc98c52f058ede52c610c0a33e22
/算法大全/八皇后.c
fd93d02cb995d2b3abbf96d2c2030a032d125b89
[]
no_license
dusong7/DSS_learn
2d33175d3cbf8ce266960b577ccb93b8b837484d
35f07162363343fb384dd7afec9a9af19bc1d1f8
refs/heads/master
2021-01-11T01:09:58.840204
2017-07-12T13:12:12
2017-07-12T13:12:12
71,048,697
1
0
null
null
null
null
UTF-8
C
false
false
1,802
c
/* 八皇后 说明西洋棋中的皇后可以直线前进,吃掉遇到的所有棋子,如果棋盘上有八个皇后,则这八 个皇后如何相安无事的放置在棋盘上,1970年与1971年, E.W.Dijkstra与N.Wirth曾经用这个问 题来讲解程式设计之技巧。 解法关于棋盘的问题,都可以用递回求解,然而如何减少递回的次数?在八个皇后的问题中, 不必要所有的格子都检查过,例如若某列检查过,该该列的其它格子就不用再检查了,这个方 法称为分支修剪。 */ #include <stdio.h> #include <stdlib.h> #define N 8 int column[N+1]; // 同栏是否有皇后,1表示有 int rup[2*N+1]...
[ "dusong7@hotmail.com" ]
dusong7@hotmail.com
12fbc2beb3be871d591ccb53195ef42af7f35146
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant100343_c-parser.c
104c1e05597b4a01edc6921a69f52ea1b4f7ae7f
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
232,882
c
/* Parser for C and Objective-C. Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc. Parser actions based on the old Bison parser; structure somewhat influenced by and fragments based on the C++ parser. Thi...
[ "agroce@gmail.com" ]
agroce@gmail.com
c9dff1a031dc34a4cf453bfeab4a59eaacef60ec
0c786295ca285b9b01a9725ba00a1788acef51e8
/error_2.c
c38e28ffb9816f3a5ea71f38e5c06dc057109e6c
[]
no_license
morgandruesne/navy_2017
1d88abe3d8834392c509ff496533d8160358bbc6
0f75b7254e719b172a94e3c08311ef1ddad81b03
refs/heads/master
2020-03-06T19:17:30.892229
2018-03-27T17:45:10
2018-03-27T17:45:10
127,024,145
0
0
null
null
null
null
UTF-8
C
false
false
921
c
/* ** EPITECH PROJECT, 2017 ** getline ** File description: ** Description */ #include "tetris.h" int is_remove(char *str, int save) { int nb_return_line = 0; for (int i = 0; str[i] != '\0'; i += 1) { if (str[i] == '\n' && str[i + 1] == ' ') save += 1; if (str[i] == '\n') nb_return_line += 1; } return ...
[ "morgandruesne.dm@gmail.com" ]
morgandruesne.dm@gmail.com
4e9e6f1774d224b06b5199b63b02fcf5913dfd4b
c984ef3e14130c3f4cda748316bf9eae01d33f0f
/xed/obj/wkit/examples/xed-min.c
dcd3b86f482bbefd993a1b50eab542374c442f06
[ "Apache-2.0" ]
permissive
jliu64/uacs-lynx-compression
298d413bbec5d073d7f18db036c4ec3af52ac6af
ab3d5072f6ac49dd59a5399ab08be055a86c04ef
refs/heads/master
2023-04-12T16:15:09.581619
2021-04-30T22:15:56
2021-04-30T22:15:56
364,094,069
0
0
null
null
null
null
UTF-8
C
false
false
2,445
c
/*BEGIN_LEGAL Copyright (c) 2020 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "saumya.debray@gmail.com" ]
saumya.debray@gmail.com
10aa91b8224750a4420e7a27e0c6debe72072f04
ddda55fcfc84ac5cd78cfc5c336a3df0b9096157
/components/ble/mynewt-nimble/ext/tinycrypt/include/tinycrypt/ctr_prng.h
ccccf7973d2fada1cd5bb49e856fe8b187bd086a
[ "LicenseRef-scancode-gary-s-brown", "BSD-3-Clause", "Apache-2.0", "BSD-2-Clause" ]
permissive
liu-delong/lu_xing_xiang_one_os
701b74fceb82dbb2806518bfb07eb85415fab43a
0c659cb811792f2e190d5a004a531bab4a9427ad
refs/heads/master
2023-06-17T03:02:13.426431
2021-06-28T08:12:41
2021-06-28T08:12:41
379,661,507
2
2
Apache-2.0
2021-06-28T10:08:10
2021-06-23T16:11:54
C
UTF-8
C
false
false
6,625
h
/* ctr_prng.h - TinyCrypt interface to a CTR-PRNG implementation */ /* * Copyright (c) 2016, Chris Morrison * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions o...
[ "cmcc_oneos@cmiot.chinamobile.com" ]
cmcc_oneos@cmiot.chinamobile.com
d2d42a5e0224781db78906386ecb8be938e6e0bc
230e2847f8740fc4e1859c6c16237f113d32d95d
/ext/IPprefix.c
e28ee6e8ff33a7ef1dfa0528bb8b68470cc6d36e
[]
no_license
nward/IPprefix
2c0982986c93f6f15d1a8f38b1ed4192b0978475
ba4eb0189a264a2c2ff94ad8e3e711c4998c2382
refs/heads/master
2021-01-01T19:46:17.416935
2011-02-12T07:27:26
2011-02-12T07:27:26
1,357,965
0
0
null
null
null
null
UTF-8
C
false
false
18,630
c
/* 1531, Fri 29 Aug 08 (NZST) IPprefix.c: IPprefix class, useful stuff for IP addresses and prefixes Copyright (C) 2007-2009, Nevil Brownlee, U Auckland | CAIDA | WAND */ #include <stdint.h> #include <arpa/inet.h> #include <ctype.h> #include "ruby.h" #define IP4_ADDR_LEN 4 #define IP6_ADDR_LEN ...
[ "nward@braintrust.co.nz" ]
nward@braintrust.co.nz
d2d69a1a0b77c65a9fbd15eff1746afd27ffc19e
5970a1b21c23c16a9b609d30e0b832f2b36038a2
/I2C_Driver_For_LSM.c
47032ffcbdea4d741b5d706954b590eb56fb873b
[]
no_license
SagarShah77/Self-Driving-Car-Prototype-Model
d1d2f315ec8c44a4e8910df65305056f3d27c1af
077dc422f44c4c0d68d9e877133d32dea0e800ef
refs/heads/master
2021-04-29T18:43:21.811599
2018-02-21T12:26:47
2018-02-21T12:26:47
121,698,793
1
0
null
null
null
null
UTF-8
C
false
false
9,370
c
#include <stdio.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> #include <linux/fs.h> #include <sys/types.h> #include <sys/ioctl.h> #include <errno.h> #include <assert.h> #include <string.h> #include <getopt.h> #include <errno.h> #include <sys/stat.h> #include "24cXX.h" #define CRA_REG_M (0x00) #define CR...
[ "shah7sagar7@gmail.com" ]
shah7sagar7@gmail.com
658360829bf20b843093939c6a37dd635b599b97
50872d4269cfb84bcfb0d310005bd7c2cd7c6553
/RTE/RTE_Components.h
10ea422874daabf7bbe4fb71510abfa1c85553c1
[]
no_license
MLopusiewicz/scrisk
7073a44a5e90d8f3f1808d5ccfe539d63af382b1
1552f74196eeb4f664766e8eb6a443ca8b713831
refs/heads/master
2020-07-19T18:18:41.112358
2016-11-15T22:25:26
2016-11-15T22:25:26
73,756,772
0
0
null
null
null
null
UTF-8
C
false
false
329
h
/* * Auto generated Run-Time-Environment Component Configuration File * *** Do not modify ! *** * * Project: 'SCR_cudza' * Target: 'Target 1' */ #ifndef RTE_COMPONENTS_H #define RTE_COMPONENTS_H /* * Define the Device Header File: */ #define CMSIS_device_header "stm32f10x.h" #endif /* RTE_COMPONE...
[ "94lopus@gmail.com" ]
94lopus@gmail.com
cc107ae000bc27a617f745aef51976ce10777c65
cafe8c7142484349342968d848525035eb7cf059
/Ports/ARM7/GCC4.x/commdefs.h
bc5d076ae7601aba3b835bb5331265fd405e94c9
[]
no_license
plumbum/scmRTOS_LPC21xx_GCC
8e3f22c12b0eba8e4e823fa9a936bddc4cc26674
cdc6fbaf1099eed8c320496a42080bf9b7ba24a6
refs/heads/master
2021-01-13T12:58:00.365934
2010-03-25T01:06:57
2010-03-25T01:06:57
578,391
1
0
null
null
null
null
UTF-8
C
false
false
2,627
h
//****************************************************************************** //* //* FULLNAME: Single-Chip Microcontroller Real-Time Operating System //* //* NICKNAME: scmRTOS //* //* PROCESSOR: ARM7 //* //* TOOLKIT: arm-elf-gcc (GNU) //* //* PURPOSE: Common Type Definitions //*...
[ "ivan@tuxotronic.org" ]
ivan@tuxotronic.org
b08da7ddf2e1a77cb7940c810443dd9aa026bdc1
aad6b08ee56c2760b207d562f16be0a5bb8e3e2a
/tags/Doduo/WebKit/win/WebPreferenceKeysPrivate.h
e204bfab34a83a39a84fde0a31f059d998166394
[ "BSD-3-Clause" ]
permissive
Chengjian-Tang/owb-mirror
5ffd127685d06f2c8e00832c63cd235bec63f753
b48392a07a2f760bfc273d8d8b80e8d3f43b6b55
refs/heads/master
2021-05-27T02:09:03.654458
2010-06-23T11:10:12
2010-06-23T11:10:12
null
0
0
null
null
null
null
UTF-8
C
false
false
7,146
h
/* * Copyright (C) 2005, 2006, 2007, 2008 Apple 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 above copyright * notice, t...
[ "mbensi@a3cd4a6d-042f-0410-9b26-d8d12826d3fb" ]
mbensi@a3cd4a6d-042f-0410-9b26-d8d12826d3fb
a53c4ecdc79c16a81d681136461efe8c0a6b300f
9f50469bc78c5cb99c2b44e8e13cd4def5b73766
/piscine/piscine_cpp_d14m/ex00/FruitNode.h
d3bc4580e4a9822f0d2adfaa69ac1556d6c97a31
[]
no_license
Bishopx/Epitech-tek2
a724e2043c487b1338ed2328d9219ac169d33a75
c28199f008b0f570eff08fed6bde190728686432
refs/heads/master
2020-03-18T09:23:26.301519
2017-01-28T00:00:49
2017-01-28T00:00:49
null
0
0
null
null
null
null
UTF-8
C
false
false
153
h
#ifndef _FRUITNODE_H_ #define _FRUITNODE_H_ #include "Fruit.h" typedef struct FruitNode { Fruit *_fruit; FruitNode *next; } FruitNode; #endif
[ "ch.ploujoux@gmail.com" ]
ch.ploujoux@gmail.com
3e8ea8090ac805c55b9eef5f64e12efe75cb3494
4d47c9a0a022d03be112381d05a5e01332c85577
/Sources/cncurses/include/ncurses_cfg.h
3c308f33a9f977282d2503d1784954193ed08ef1
[ "MIT", "X11-distribute-modifications-variant" ]
permissive
brightdigit/NCurses
dc503987118ddc2c44749e717d20625b638bd51a
313be08426b5b8d37ff0038614f6caab5932747a
refs/heads/master
2022-04-13T19:09:15.016319
2020-04-11T13:14:15
2020-04-11T13:14:15
254,766,440
0
0
null
null
null
null
UTF-8
C
false
false
7,546
h
/* include/ncurses_cfg.h. Generated automatically by configure. */ /**************************************************************************** * Copyright 2020 Thomas E. Dickey * * Copyright 1998-2016,2017 Free Software Foundation, Inc. * * ...
[ "leogdion@brightdigit.com" ]
leogdion@brightdigit.com
c81b6cbef693d8b3f76d3c829ae549be669d2765
beb5f2005f4c9a6f5029a1a221708abc4cb5b065
/pb_makefiles/newer.c
b1f44990dfa42593d4da4d0c9a38bf4cfb18c8f0
[]
no_license
apple-open-source/developer-tools
5ad0e730a9e3f4c036623b8f577cc2cf556b7c08
f9cf9e1c2760749eff9342381f253a7bdaf0f692
refs/heads/master
2022-12-15T10:25:55.017487
2020-09-17T00:00:00
2020-09-17T00:00:00
275,229,807
4
5
null
null
null
null
UTF-8
C
false
false
4,841
c
/* * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * ...
[ "opensource@apple.com" ]
opensource@apple.com
68f0f91f762b581b34778d8b7948aafad9f8331a
228886a92743f46d5285ac53c15b6f70247955cf
/benchmarks/OptimizationBenchmark/OptimizationBenchmark.c
07ff2270e6664d9458e2e0ee2c06703a572ccc8d
[]
no_license
AustinWise/CSC431
b4a0daf2208ebd1fa27e02c478163d4e8a8fefea
7075b61e44128e4f4f1bbc3d8c4e9c0cf0a9b482
refs/heads/master
2020-06-08T15:10:59.369354
2011-03-19T11:14:44
2011-03-19T11:14:44
1,224,868
2
0
null
null
null
null
UTF-8
C
false
false
6,817
c
#include<stdio.h> #include<malloc.h> int EV_global1; int EV_global2; int EV_global3; int constantFolding() { int EV_a; EV_a = ((((((((((8*9)/4)+2)-(5*8))+9)-12)+6)-9)-18)+(((23*3)/23)*90)); return EV_a; } int constantPropagation() { int EV_a; int EV_b; int EV_c; int EV_d; int EV_e; int EV_f; int EV_g; int EV_h; int EV_...
[ "AustinWise@gmail.com" ]
AustinWise@gmail.com
8a112c4c90c91d19ae5ebf64c78c636820605d57
81d04fe8132c34c23952f93caadac14e6c480e12
/module5/task4.c
9dbd73ad0d9a299e3145d3ce82d0ee4ee9c45bcd
[]
no_license
tysonthein/cs2250Sp18
b23201d61a115129d4dc58db8ad30a120f14051e
c5eca9ba222da24edeba34f53916c7b29bef536f
refs/heads/master
2021-05-05T04:49:07.090713
2018-04-19T22:57:45
2018-04-19T22:57:45
118,635,660
0
0
null
null
null
null
UTF-8
C
false
false
908
c
/* * ===================================================================================== * * Filename: task4.c * * Description: even numbers * * Version: 1.0 * Created: 02/08/2018 09:15:42 AM * Revision: none * Compiler: gcc * * Author: Tyson Thein (), tys...
[ "tysonthein@mail.weber.edu" ]
tysonthein@mail.weber.edu
d912a9f173501fb846ad27585c3af342299c43cc
b4408b0f5a77250dbda7db6958ae05cc84e4c293
/CRT code/C_4-15_matolia/Batch-3/P11.c
f2c7b5d74c871bcfca11c01edb567e1f69e4ccab
[]
no_license
sakshamtaneja21/JU-notes
3b61a222c5264cbfe470d06d3158188438c7c2ff
74eb5f12979b5ffde8b7e85f661217a641acda98
refs/heads/master
2022-12-21T16:03:18.780927
2020-09-24T06:24:56
2020-09-24T06:24:56
287,213,254
1
1
null
2020-08-13T08:01:25
2020-08-13T07:38:25
HTML
UTF-8
C
false
false
451
c
#include<stdio.h> int main() { int a = 10, *p, **q; p = &a; q = &p; printf("%d\n", a); // 10 printf("%u\n", &a); // Address of a printf("%u\n", p); // Address of a printf("%u\n", &p); //Address of p printf("%u\n", q); //Address of p printf("%u\n", &q); //Address of q printf("%u\n", *p); // *p = *(&a) = a ...
[ "sakshamtaneja7861@gmail.com" ]
sakshamtaneja7861@gmail.com
2fd125c9345572f50e05844d3786e72211e065d4
f5008df5aab5615d39a9847fa09f9581f7b19a5f
/linux-5.4.38/drivers/net/wireless/mediatek/mt76/mt76x2/usb_main.c
eb73cb856c81306051d766f311b108bcf018788e
[ "Apache-2.0", "GPL-1.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
wenhuizhang/llvm-linux-5.4.38
2f3f44287dbb1445cd7d4670df8bfc9873441558
bd6678fbd3635428a6d594dbb24a87b9308a52ef
refs/heads/main
2023-01-07T09:57:19.452542
2020-11-01T04:20:46
2020-11-01T04:20:46
303,426,734
0
0
Apache-2.0
2020-11-01T04:20:47
2020-10-12T15:00:48
C
UTF-8
C
false
false
2,976
c
// SPDX-License-Identifier: ISC /* * Copyright (C) 2018 Lorenzo Bianconi <lorenzo.bianconi83@gmail.com> */ #include "mt76x2u.h" static int mt76x2u_start(struct ieee80211_hw *hw) { struct mt76x02_dev *dev = hw->priv; int ret; ret = mt76x2u_mac_start(dev); if (ret) return ret; ieee80211_queue_delayed_work(mt...
[ "wenhui@gwmail.gwu.edu" ]
wenhui@gwmail.gwu.edu
5fa0aac83e369f4b541e0dc4a6164839767923e1
6bfbdbd7f1f17e8a69ae78bf003ec63b3260fcb0
/jokes.c
ef0243492de0ec215655a805d0246caa13bbf1a7
[]
no_license
crclark96/myalloc
059d5ac3e6e9da55c9204bae18b6d39404518f4f
ed9b94c65f19171977debe9869b09ade2e6438c5
refs/heads/master
2020-03-19T05:12:33.538654
2019-02-28T21:13:05
2019-02-28T21:13:05
135,909,573
0
0
null
null
null
null
UTF-8
C
false
false
2,564
c
#include "jokes.h" #include "malloc.h" void *oc(size_t size) { int i,j; char meme[HEIGHT][WIDTH] = { "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▄▄▄░░░░░", "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███▀█░░░░", "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███░██░░░", "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███░░██░░░", "░░░░░░░░░░░░░░░░░░░░░░░░░░░░▄██░░░░██░░"...
[ "crclark96@gmail.com" ]
crclark96@gmail.com
c66ad613f5ecac17a4e3928e28924571d7ccfc98
717d3d1f44e6bb32e2b9af7fdc65412fca88c064
/Problems/Sorting/heap_sort.c
96fb5637fef9249722c341f27a6aefa94688f9a8
[]
no_license
Nimor111/Algorithms
0f18907bf64f90f43887912bd2d41729e3eed99c
a56367e6a5a398ddac439924c21c6b3792154322
refs/heads/master
2020-04-02T01:39:29.101659
2018-04-21T07:44:01
2018-04-21T07:44:01
83,238,339
1
0
null
null
null
null
UTF-8
C
false
false
1,132
c
#include <stdio.h> void swap(int * a, int * b) { int temp = *a; *a = *b; *b = temp; } /* heapify subtree with node i as root, n - size of heap */ void heapify(int * arr, int n, int i) { int largest = i; int left = 2 * i + 1; int right = 2 * i + 2; if ( left < n && arr[left] > arr[largest...
[ "georgi.bojinov@hotmail.com" ]
georgi.bojinov@hotmail.com
9480e8ca2ca4cb89f6f6431920b71147f3270c07
b8d24a6fd09214de2c8a282e33c932e38c4fee54
/board_animation/delay.c
5a959abc8331383cbde57a637d57b7f291d8017d
[]
no_license
RusteenZzZ/DevTec_GameOfLife
74d2fa00a9bac6d3556213d7efe1c5db728cc42b
d40f866fe9c784c1f31ecce700d4153cfd2aa897
refs/heads/master
2023-05-26T06:36:41.749669
2021-06-12T00:06:01
2021-06-12T00:06:01
375,765,558
0
0
null
2021-06-11T22:05:29
2021-06-10T16:38:31
HTML
UTF-8
C
false
false
185
c
#include "delay.h" void delay(int number_of_seconds) { int milli_seconds = 1000 * number_of_seconds; clock_t start_time = clock(); while (clock() < start_time + milli_seconds); }
[ "aggreex@gmail.com" ]
aggreex@gmail.com
b32a69c17a49c9fd132c95271e32f8c32bb973e8
2fd39e7e33625a42e1ef03a818914dc1813ef5c3
/settings.h
16d685aa1e4cabb4b71b70b2ccaed6144420fc5e
[]
no_license
naftali10/Small-Shell
f180d70f1cb93a3cc785003bd5a15d239854cd07
5ccae129e6837898fe7e6c6bc741a95e3c6fd72d
refs/heads/main
2023-05-04T06:39:22.691771
2021-05-20T18:00:43
2021-05-20T18:00:43
369,277,668
0
0
null
null
null
null
UTF-8
C
false
false
768
h
#ifndef SETTINGS_H_INCLUDED #define SETTINGS_H_INCLUDED #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <signal.h> #include <string.h> #include <time.h> #include <stdbool.h> #include <sys/wait.h> #include <errno.h> #define MAX_COMMAND_SZ 80 #define MAX_PATH_SZ 100 #define MA...
[ "noreply@github.com" ]
naftali10.noreply@github.com
8f22a78c23b87feb35618c55581199317c62c378
fb99cfd47ef2d4007b9f6b3770b3d62e6820dc2b
/gen/tests/vmaxswsx_vvvl.c
e2f57b3a79abe09cd6cdcd89c924e29eb042da56
[]
no_license
sx-aurora-dev/llvm-ve-intrinsic-test
a5875a9b448895c390a70c89d06d6c4a193b4577
674d2587c167c0970eb61b45b9fa7d34e9d10252
refs/heads/master
2021-06-17T05:08:08.543704
2021-04-27T12:50:29
2021-04-27T12:50:29
194,057,805
0
0
null
null
null
null
UTF-8
C
false
false
413
c
#include "velintrin.h" void vmaxswsx_vvvl(int* pvx, int* pvy, int* pvz, int n) { for (int i = 0; i < n; i += 256) { int l = n - i < 256 ? n - i : 256; __vr vy = _vel_vldlsx_vssl(4, pvy, l); __vr vz = _vel_vldlsx_vssl(4, pvz, l); __vr vx = _vel_vmaxswsx_vvvl(vy, vz, l); _vel_v...
[ "k-ishizaka@ay.jp.nec.com" ]
k-ishizaka@ay.jp.nec.com
2691acf781253061cdf4919ce0588aba9989b8e6
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/tools/testing/selftests/powerpc/pmu/ebb/extr_instruction_count_test.c_instruction_count.c
ae1ecc4ae0e076ec9e967e1becfb64111dd66dc3
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
2,949
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
17e1f8a4a15daa6b59ee3d17422ec7937ae33fcf
b4f00587ca70a2180cf550478ca19e8473cdb495
/hello.c
e2e6055ab2e5c19a86dde1d73c5f58dfb0266de6
[]
no_license
S102001032/test5
a8673033f36b083cd6302ace83bc9a7be9293dce
a8af603519d9abd6d6ffe507fd54866014f3f2c7
refs/heads/master
2021-01-09T20:09:27.179837
2016-07-20T04:04:29
2016-07-20T04:04:29
63,117,526
0
0
null
null
null
null
UTF-8
C
false
false
60
c
#include<stdio.h> int main(){ printf("hellow world!!\n"); }
[ "allasd900128@gmail.com" ]
allasd900128@gmail.com
d4b9482fa96820f300f33d92e6745c43c000c791
bfed862f105f06263bb60c36d1ec9a95136b9969
/opengl32/opengl32.h
d62ad89d20495ee8b169e8a82b90d2a6dd6da6be
[]
no_license
lehelthemage/sb_hack
73237e9ad0bc41f7209de215eb685f47b473ee5d
31206d83f7954fd2c3dc8c60d74293cda9995063
refs/heads/master
2021-05-26T19:56:43.818386
2014-02-08T03:52:25
2014-02-08T03:52:25
null
0
0
null
null
null
null
UTF-8
C
false
false
43,672
h
/* * Game-Deception Blank Wrapper v2 * Copyright (c) Crusader 2002 */ #ifndef H_OPENGL32 #define H_OPENGL32 #define ORIGINAL_DLL "opengl32.dll" /* Original function typedefs */ #include <windows.h> #include <stdio.h> #include <stdarg.h> #include <time.h> #include <gl/gl.h> #include <gl/glu.h> //#include <gl/glaux.h>...
[ "lehelkovach@gmail.com" ]
lehelkovach@gmail.com
6e207bdd18a0774e93dbba1e5fc1ccad7bb4fbfd
302945a362836fb2e3c453f1aa981500a792f6e1
/Validator/GenICam/library/CPP/include/GenApi/impl/MathParser/StaticMathCharTypeTable.h
e7c459b1876bea63dfa9dffc5e9a0155afca4e47
[ "Apache-2.0" ]
permissive
genicam/GenICamXmlValidator
a39b0802a0b9fda51021a435fcc0f2f79b8ade5a
f3d0873dc2f39e09e98933aee927274a087a2a90
refs/heads/master
2023-01-13T01:14:26.518680
2020-11-09T02:07:32
2020-11-09T02:07:32
268,628,419
2
1
Apache-2.0
2020-11-09T01:55:48
2020-06-01T20:44:51
C++
UTF-8
C
false
false
275
h
#pragma once #ifndef STATIC_MATH_PARSER_TYPE_TABLE_H_INCLUDED_ #define STATIC_MATH_PARSER_TYPE_TABLE_H_INCLUDED_ #include "GenApi/impl/MathParser/Lexer.h" // need the enum, so the compiler knows the size of one enum extern const hqCharType MathCharTypeTable[256]; #endif
[ "kola@imperx.com" ]
kola@imperx.com
a6211ee1083036d714aa765031b81484eea37289
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/base/mvdm/softpc.new/base/inc/host_com.h
56e304cce9dc5d4d2cd4e6b08c8716b5d5cc5edd
[]
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
8,344
h
#ifndef _HOST_COM_H #define _HOST_COM_H /*[ Name: host_com.h Derived From: Base 2.0 Author: Ross Beresford Created On: Sccs ID: 12/13/94 @(#)host_com.h 1.10 Purpose: Definition of the interface between the generic communications adapter emulation functions and the host specific functions. ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
e7a167df19bf7a5c5c94400969433326b7f0d5e4
cd467d8e6ace9dd9b8844807e2ebfee8709e6159
/engine/run_game.c
50c27ad66ba95e69335004750dfb86a17058d1ca
[]
no_license
Onofriychuk-Marat/cub3D
8cb1e3b969d96f4f646a49d3396ecf634a17920c
b7c3911e0914fcf2c711b4bd4d378db7f38127dc
refs/heads/main
2022-12-20T15:28:57.831169
2020-10-12T07:30:58
2020-10-12T07:30:58
303,312,375
0
0
null
null
null
null
UTF-8
C
false
false
2,559
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* run_game.c :+: :+: :+: ...
[ "maratonofrijcuk@144.42.21.10.in-addr.arpa" ]
maratonofrijcuk@144.42.21.10.in-addr.arpa
30ebcb821ef560986fa9d4a326525c1b7ca47c1f
c6c46d358539f61930800f8558233dcf27292df0
/my_printf/printf/src/get_va.c
6dc64046a6c58e3c580674db1f87c292797f23cd
[]
no_license
k6s/tek1
4f6cf3b39cd2b0a0f4f81feea3176ea0e153135f
77710d6e695ba6124e4edf056ae23a9b687c684f
refs/heads/master
2016-08-10T13:19:12.498656
2015-12-02T11:20:33
2015-12-02T11:20:33
47,253,242
0
0
null
null
null
null
UTF-8
C
false
false
1,635
c
/* ** get_va.c for printf in /home/cano_c/rendu/UNIX/PSU_2014_my_printf/printf/src ** ** Made by Chloe Cano ** Login <cano_c@epitech.net> ** ** Started on Mon Nov 10 10:24:25 2014 ** Last update Sun Nov 16 22:12:51 2014 */ #include <my.h> int get_ll(t_printf *s_printf, t_printf_s *s_str) { s_str->var.lls = v...
[ "chloe.cano@epitech.eu" ]
chloe.cano@epitech.eu
c8636f0d027f86ce6fd1ba14fe6345b0056a24ac
c47c254ca476c1f9969f8f3e89acb4d0618c14b6
/datasets/linux-4.11-rc3/drivers/usb/core/quirks.c
24f9f98968a5d860f83920287a5b7deb4c98bed6
[ "Linux-syscall-note", "GPL-2.0-only", "BSD-2-Clause" ]
permissive
yijunyu/demo
5cf4e83f585254a28b31c4a050630b8f661a90c8
11c0c84081a3181494b9c469bda42a313c457ad2
refs/heads/master
2023-02-22T09:00:12.023083
2021-01-25T16:51:40
2021-01-25T16:51:40
175,939,000
3
6
BSD-2-Clause
2021-01-09T23:00:12
2019-03-16T07:13:00
C
UTF-8
C
false
false
10,536
c
/* * USB device quirk handling logic and table * * Copyright (c) 2007 Oliver Neukum * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundat...
[ "y.yu@open.ac.uk" ]
y.yu@open.ac.uk
70d6e4bb683660af5609de0beae394fb2b69c2c6
aced0b0b4b73ecb9837500a9b65eb039033e94d3
/Win10_1709_RS3/x86/System32/ntoskrnl.exe/Standalone/_EX_WORK_QUEUE_MANAGER.h
e75b6bb2f92426de6f6d221bda17a0f4e502b50b
[]
no_license
Qazwar/headers
a16193b7343f8497c4dde1f0eb6fee52a0ed91e1
049e8a564a1f82a8316f187f8a8bbcdb29be5e01
refs/heads/master
2020-04-05T15:36:20.462296
2018-11-08T18:53:40
2018-11-08T20:37:03
null
0
0
null
null
null
null
UTF-8
C
false
false
7,747
h
typedef struct _LIST_ENTRY { /* 0x0000 */ struct _LIST_ENTRY* Flink; /* 0x0004 */ struct _LIST_ENTRY* Blink; } LIST_ENTRY, *PLIST_ENTRY; /* size: 0x0008 */ typedef struct _DISPATCHER_HEADER { union { /* 0x0000 */ volatile long Lock; /* 0x0000 */ long LockNV; struct { /* 0x0000 */ unsigned...
[ "w.benny@outlook.com" ]
w.benny@outlook.com
9f032ebe2130f785354c951ef4dd5bdaa5929c13
fad392b7b1533103a0ddcc18e059fcd2e85c0fda
/install/px4_msgs/include/px4_msgs/msg/vehicle_thrust_setpoint__struct.h
1793ef168c6af8c583fe9fb68ea2db18562d728f
[]
no_license
adamdai/px4_ros_com_ros2
bee6ef27559a3a157d10c250a45818a5c75f2eff
bcd7a1bd13c318d69994a64215f256b9ec7ae2bb
refs/heads/master
2023-07-24T18:09:24.817561
2021-08-23T21:47:18
2021-08-23T21:47:18
399,255,215
0
0
null
null
null
null
UTF-8
C
false
false
116
h
/home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__struct.h
[ "adamdai97@gmail.com" ]
adamdai97@gmail.com
ecee0b573076ebe50100d935281dc3113881b6ab
5c255f911786e984286b1f7a4e6091a68419d049
/code/737c4c2d-037e-421d-a7a9-853ce8d62a71.c
78ce37afedc2229351c8b0cc8b33ca9207de894a
[]
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
241
c
#include <stdio.h> int main() { int i=0; int j=14; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = k/j; l = j%j; l = l%j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
d96e345d79df451a6cd26f1f0ec9e94a1dd88577
0a837f39b535e5384c1349f47222c7ad60b37ce5
/ChaCha/SourceCode/error.h
8541fea9fc511f8ea1b686f4f9cb515329cac4a3
[]
no_license
ehsanaerabi/StreamCiphers
1d1fbd45fb939d4de0b41f5bccf038d64518cbd0
105c568646e98a6790f868e3f27711d5b6577985
refs/heads/master
2020-07-21T07:56:33.786445
2019-09-09T08:07:17
2019-09-09T08:07:17
206,786,591
1
0
null
null
null
null
UTF-8
C
false
false
6,777
h
/** * @file error.h * @brief Error codes description * * @section License * * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free So...
[ "noreply@github.com" ]
ehsanaerabi.noreply@github.com
3cd8e104a51f6bf44f502a2d74aafba20166b511
bb629856ff14ed35f246cd611fa1eb4881f14457
/circularQ.c
82fc42681d68d967dfa744dc9009340102ec759b
[]
no_license
warrenbocphet/virtualmemorysimulator
584b4f62791f2601fa10a2ac92fcdf4e159d2790
60ae51172fa59bb9fffb1ea1c8bb57d3423a5a91
refs/heads/master
2022-06-06T19:29:36.248890
2018-09-27T09:46:02
2018-09-27T09:46:02
148,963,946
0
1
null
null
null
null
UTF-8
C
false
false
11,052
c
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> //this program reads an input file, put each line into a node, //and add it inside an array //io.c has been able to push element into blocks manually struct Node { char* instruction; int memory; struct Node* next; }; struct Page { int...
[ "a1701729@student.adelaide.edu.au" ]
a1701729@student.adelaide.edu.au
9206aed0064c34e71a9af00b85aa2716b809f157
b5d28de0f81d800758bc8234f265e5290bc303df
/common/io/pc/consoleInputStream.h
5734c37a5e42944c7f22c69c2a87498fad30773d
[ "MIT" ]
permissive
f4deb/cen-electronic
026c9b9d650487e70fde472cbbcf1a81ec9fe980
eadf1a839445b57bba0319ba54c30ce333f912f0
refs/heads/master
2023-05-09T23:58:02.262631
2023-05-09T20:08:24
2023-05-09T20:08:24
4,457,913
0
0
null
null
null
null
UTF-8
C
false
false
359
h
#ifndef CONSOLE_INPUT_STREAM_H #define CONSOLE_INPUT_STREAM_H #include "../../../common/io/inputStream.h" /** * Init a console inputStream (to be able to reproduce on pc the same feature than on micro-controller) * @param inputStream the C structure pointer (POO simulation). */ void initConsoleInputStream...
[ "svanacker@talentsoft.com" ]
svanacker@talentsoft.com
c92a04c2e018adb5c7afb5c9ccbccb50b2ece1ad
5791d786c0f26fc287ac0fa7b293fe7339e041c2
/Classes/spiceCpp/spicelib/devices/vbic/vbicsoachk.c
f534e5aff15b24f72a8b6b6f1431789de56d7a3b
[]
no_license
fengmm521/myspice
2c2da3e9c250e0a4193d2d999b2eb119c18f0d38
aacf57b4a11a34aa8ed38ee3557f6dc532aabffb
refs/heads/master
2021-01-10T11:26:53.150769
2015-09-27T16:28:59
2015-09-27T16:28:59
43,237,336
3
2
null
null
null
null
UTF-8
C
false
false
2,202
c
/********** Copyright 2013 Dietmar Warning. All rights reserved. Author: 2013 Dietmar Warning **********/ #include "ngspice/ngspice.h" #include "ngspice/cktdefs.h" #include "vbicdefs.h" #include "ngspice/trandefs.h" #include "ngspice/sperror.h" #include "ngspice/suffix.h" #include "ngspice/cpdefs.h" int VBICsoaChe...
[ "fengmm521@gmail.com" ]
fengmm521@gmail.com
36c93dc940d2c0b072479df2935e977d47d515a2
12a9c166db50278d9cb4c5d8c0cae413dc73de1b
/m_array.c
21b6b1140a2835c397a810a2538a8f82b2c0e780
[]
no_license
descent/progs
2285c7b9fa381546309dae94df618371f8a4791c
f525508c167bbb11d109ee7231a6ae017c24e716
refs/heads/master
2023-02-21T03:12:21.221772
2023-02-04T03:24:00
2023-02-04T03:24:00
5,609,441
3
2
null
null
null
null
UTF-8
C
false
false
238
c
#include <stdio.h> int main(int argc, char *argv[]) { unsigned char a[5][4][6][8]; printf("a: %p\n", a); printf("&a[3][3][2][7]: %p\n", &a[3][3][2][7]); printf("offset: %d\n", (&a[3][3][2][7]) - (&a[0][0][0][0])); return 0; }
[ "descent0@gmail.com" ]
descent0@gmail.com
dfdba82c4477de26894dbb9c491ccedb860cc858
a4b007996fb66524a9d5e3d3770ab71c64a6bf4f
/main.c
a9b4b921f4717fb7fbbc718d95bea85fbfde0e27
[]
no_license
igalakhov/Systems_Work14
f522337aeaa73ac960f18bf4a08599a0ec51f127
57fea768aa1321e5013fee440ac20055facddc1f
refs/heads/master
2020-04-06T15:35:14.672689
2018-11-15T02:22:33
2018-11-15T02:22:33
157,584,479
0
0
null
null
null
null
UTF-8
C
false
false
544
c
#include <stdlib.h> #include <string.h> #include <unistd.h> char ** parse_args(char * line){ char ** args = calloc(6, sizeof(line)); // maximum number of args is 5, with maximum size of line // also one at the end for the NULL char * line_copy = malloc(sizeof(line)); str...
[ "igalakhov00@stuy.edu" ]
igalakhov00@stuy.edu
5f8dd0d59e84cfce8accc485ee99c72ef1be5c53
1de1af358b88f3e5cfa9d4c3c0106faea5b5ae51
/zzz_generated/window-app/zap-generated/endpoint_config.h
b7a9599b8ac6830505fd6ae2266d9787b086b62c
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
qghu/connectedhomeip
fc35c1e0b8f6ab2aad8b0c3b70d9fd431f5cba3a
45715ccba37d9a7fabe6984be2f31a14a3534adb
refs/heads/master
2023-08-16T04:40:36.327569
2021-09-25T03:32:57
2021-09-25T03:32:57
null
0
0
null
null
null
null
UTF-8
C
false
false
143,360
h
/* * * Copyright (c) 2021 Project CHIP Authors * * 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 requir...
[ "noreply@github.com" ]
qghu.noreply@github.com
9e77da40f6cbb8592f12935a6079bebcf91c1999
0e55535e749597828b6e861d21451d94d56b07a1
/scripts/tools/nbio/types.h
90fc2a4b437e8aa957ebacb0998468964c096b88
[]
no_license
LeeGeunHAHAHA/chamber_spo
68c7796f50dcd672fafa26b1cc05af0da3cfecaa
efb51df263627fd0d33ee191d18f08da065743a6
refs/heads/master
2020-06-13T19:43:53.677533
2019-07-05T08:31:00
2019-07-05T08:31:00
194,769,441
6
0
null
null
null
null
UTF-8
C
false
false
1,890
h
/** * @file types.h * @date 2016. 05. 21. * @author kmsun */ #ifndef __NBIO_TYPES_H__ #define __NBIO_TYPES_H__ #include <limits.h> #define container_of(ptr, type, member) ({ \ const typeof( ((type *)0)->member ) *__mptr = (ptr); \ (type *)( (char *)__mptr - offsetof(type,me...
[ "ghlee@fadutec.com" ]
ghlee@fadutec.com
a2afb2f10eb49151cddda2703be0b0b4af8a9fc6
0866f633d52a14bcbb50bc96d5d271c2c93da291
/iahx/lib/silex/vendor/twig/twig/ext/twig/php_twig.h
8c18f136326cf32d56585e46f1ab1868d5966e48
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
scieloorg/search-journals
2151d02e5fa119ca8d1621b5acf8e39df6660aab
ee42d8d99aa5a166383789bcc962c76148c49d0e
refs/heads/master
2023-07-09T15:24:39.674159
2023-07-06T13:07:35
2023-07-06T13:07:35
12,487,004
4
16
BSD-2-Clause
2023-07-06T13:07:36
2013-08-30T13:27:23
HTML
UTF-8
C
false
false
1,113
h
/* +----------------------------------------------------------------------+ | Twig Extension | +----------------------------------------------------------------------+ | Copyright (c) 2011 Derick Rethans | +---------...
[ "atta.jamil@gmail.com" ]
atta.jamil@gmail.com
cc9ce2a0e28d7f3bc5e963fabfd661628ce3f52f
a5c0a4a2a37e5c64d713596b1952089bc269c2b0
/ipv6.c
50902daa73de5d96d0f252db303852eaeaaac675
[]
no_license
divereigh/mpppman
30598079fcb0a1cee2d828c8667aaff7743b2669
2b2d618b9d120598499d6eea56ee041a73c67a22
refs/heads/master
2021-01-18T20:25:13.188379
2017-05-13T08:20:28
2017-05-13T08:20:28
86,964,305
0
0
null
null
null
null
UTF-8
C
false
false
769
c
#include "config.h" #ifdef HAVE_NET_PPP_DEFS_H #include <net/ppp_defs.h> #endif #ifdef HAVE_STRING_H #include <string.h> #endif #include "event.h" #include "auth.h" #include "log.h" #include "constants.h" #include "common.h" #include "ipv6.h" // send an IPV6CP Config Request challenge void sendipv6cp(PPPSession *p...
[ "damo@launtel.net.au" ]
damo@launtel.net.au
16f7e1b8a5f227840f6a5d42ef8e82962e19c8d3
b71b8bd385c207dffda39d96c7bee5f2ccce946c
/testcases/CWE121_Stack_Based_Buffer_Overflow/s04/CWE121_Stack_Based_Buffer_Overflow__CWE805_int64_t_declare_memcpy_03.c
68ee04e8065e24b5949d2a87827db20065c49c9d
[]
no_license
Sporknugget/Juliet_prep
e9bda84a30bdc7938bafe338b4ab2e361449eda5
97d8922244d3d79b62496ede4636199837e8b971
refs/heads/master
2023-05-05T14:41:30.243718
2021-05-25T16:18:13
2021-05-25T16:18:13
369,334,230
0
0
null
null
null
null
UTF-8
C
false
false
3,320
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE121_Stack_Based_Buffer_Overflow__CWE805_int64_t_declare_memcpy_03.c Label Definition File: CWE121_Stack_Based_Buffer_Overflow__CWE805.label.xml Template File: sources-sink-03.tmpl.c */ /* * @description * CWE: 121 Stack Based Buffer Overflow * BadSource: Set data poi...
[ "jaredzap@rams.colostate.edu" ]
jaredzap@rams.colostate.edu
f3a0903d1302cb6c8c8988cda2f60112bae61377
3b06516aaebc8a6b26fd97a085926ff7999942fd
/preprocessor/conditionally_compiling_pragmas/macros.h
8162715c08c2d1ddba395bf1763f4cfad98b4b55
[ "BSD-3-Clause" ]
permissive
LLNL/FGPU
5428bca5b03f481555e3cbf8ff130f3c882d2c84
cf1c651771bcf55449614f62eab057f25c44c35b
refs/heads/master
2023-08-28T18:59:21.934964
2021-11-12T18:58:01
2021-11-12T18:58:01
175,486,369
31
16
BSD-3-Clause
2021-11-12T19:47:29
2019-03-13T19:32:19
Fortran
UTF-8
C
false
false
1,909
h
! These macros provide a mechanism for enabling/disabling OpenMP4.5 target pragmas lines, along with ! inserting additional behavior before/after the pragmas. ! ! ENABLE_OMP_MACRO - enables any lines annotated with the OMP macro, should be set by the build system. ! ENABLE_OMP_TRACE_PRINTS - enables/disables trace prin...
[ "black27@llnl.gov" ]
black27@llnl.gov
b1f781347debb157e7d4450f2c6f23b3f8454b58
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.target/i386/sse2-pr39821.c
bcd4b772c985eacf9d70c532f963d243bc1412d7
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "FSFAP", "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
1,064
c
/* { dg-do compile } */ /* { dg-options "-msse2 -mno-sse4.1 -O3 -fdump-tree-vect-details" } */ /* { dg-final { scan-tree-dump-times "vectorized 1 loops in function" 5 "vect" } } */ #include<stdint.h> void vec_widen_smul8 (int16_t* __restrict v3, int8_t *v1, int8_t *v2, int order) { while (order--) *v3++ = (int16_...
[ "rink@rink.nu" ]
rink@rink.nu
fccac05ca9ce74a94adcb0677d0c2aa3ec9762d6
f026cb616ef14bae15a1d251ca6dbe0f55016d9c
/linux/7624.c
ff60a3df0b582d4265be370e2f1f4947d51cb070
[]
no_license
jajajasalu2/cocci-lkmp-c-files
3eb7d451929dca5cb6beb56aabd69fe3f7fc176c
5da943aabe1589e393a131121dbf8e7a84b3cf2a
refs/heads/master
2020-12-02T17:30:14.411816
2020-01-29T08:36:30
2020-01-29T08:36:30
231,053,574
1
0
null
null
null
null
UTF-8
C
false
false
1,762
c
cocci_test_suite() { u32 cocci_id/* drivers/video/fbdev/pmagb-b-fb.c 89 */; u8 cocci_id/* drivers/video/fbdev/pmagb-b-fb.c 84 */; struct pmagbbfb_par *cocci_id/* drivers/video/fbdev/pmagb-b-fb.c 84 */; unsigned int cocci_id/* drivers/video/fbdev/pmagb-b-fb.c 84 */; void cocci_id/* drivers/video/fbdev/pmagb-b-fb.c ...
[ "jaskaransingh7654321@gmail.com" ]
jaskaransingh7654321@gmail.com
a340dc58d48a32bced7c2a3430a8079fb4bd31cb
f348d5ccdf923dcca4fa89c2270443541bba2d3b
/lib/got_lib_object_parse.h
852db60a614ec79d99a3416e34b5e0b018f27ed9
[ "ISC" ]
permissive
ThomasAdam/gameoftrees
a585b86a8679a20391a85ce2ebddaca79a4adb0b
1255c02f3e117fa4fd07f9cc6fbcf62383755e5d
refs/heads/main
2023-02-11T01:57:46.620381
2021-01-05T18:19:07
2021-01-05T18:19:07
328,286,198
2
0
null
null
null
null
UTF-8
C
false
false
2,048
h
/* * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org> * * 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 PROVIDE...
[ "stsp@stsp.name" ]
stsp@stsp.name
bc66cdb51bc5a28d3687759f71405abceeb9399b
4ea6a61aef7ddd8785d75513a8ea73576f103d1e
/benchmarks/real-verification/GraphicsMagick-1.2.2/magick/fx.h
9eb493f91155adcb6c27b9632009a0464a4adc7e
[ "LicenseRef-scancode-warranty-disclaimer", "Xfig", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause", "LicenseRef-scancode-other-permissive", "libtiff" ]
permissive
probertool/Prober
287190a03b6d6a40ba77295ccef132226f800420
c75047af835ba7ddf60fb3f72f686ea4c56a08b5
refs/heads/master
2020-09-09T07:45:33.005153
2019-11-13T05:39:15
2019-11-13T05:39:15
221,385,993
0
0
null
null
null
null
UTF-8
C
false
false
1,424
h
/* Copyright (C) 2003 GraphicsMagick Group Copyright (C) 2002 ImageMagick Studio This program is covered by multiple licenses, which are described in Copyright.txt. You should have received a copy of Copyright.txt with this package; otherwise see http://www.graphicsmagick.org/www/Copyright.html. ImageMa...
[ "hongyuliu@salsa2.it.utsa.edu" ]
hongyuliu@salsa2.it.utsa.edu
9af7d50067667f7ccbfb6d6dba0312a73b12676e
3a8309a3d74442f63aaf9c7af5d663614b6df718
/Slim_Mesh_Optimization/external/geogram/src/lib/geogram/third_party/zlib/inflate.c
17c2bda7b29ce8d39b23b46558027798ff9c5e6e
[ "Zlib" ]
permissive
XuRongYan/Slim_Mesh_Optimization
581fe7c83e626a4e45fb4bd01dd5a625fb43ec29
0062924a7d78497736963357e7eb8b94bb1a3e7b
refs/heads/main
2023-01-11T23:34:47.549213
2020-11-13T05:11:20
2020-11-13T05:11:20
310,973,990
0
0
null
null
null
null
UTF-8
C
false
false
53,886
c
/* inflate.c -- zlib decompression * Copyright (C) 1995-2012 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* * Change history: * * 1.2.beta0 24 Nov 2002 * - First version -- complete rewrite of inflate to simplify code, avoid * creation of window when not needed, ...
[ "1536980672@qq.com" ]
1536980672@qq.com
6c53af46b8a06eae591bdd69f4590dd7511af496
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/fs/lockd/extr_svc4proc.c_nlm4svc_proc_nm_lock.c
9d15b5f19703ee117294f6c56556331e0c74545f
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
877
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
f889613551dee18f2d014e04f518c3bbe445cc80
7a7ea63388c6020b77f98f26b611ab96b57644b4
/libft/ft_putchar_fd.c
acdd4e03ad48994f99175e68408c2558cb41680a
[]
no_license
fallouch2702/ft_printf
bf3dbeb9ceb91a1c829020017702e3c769915b53
8afa33a56f811f6c9c2bb9c9ba193ea626d6f3bf
refs/heads/master
2020-04-13T06:44:12.740822
2019-01-25T19:48:03
2019-01-25T19:48:03
161,939,249
0
0
null
null
null
null
UTF-8
C
false
false
972
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar_fd2.c :+: :+: :+: ...
[ "fallouch@e2r1p1.42.fr" ]
fallouch@e2r1p1.42.fr
7b3a96b6e3005191f50bb7a6d1366f892700936b
cf33e781a549dc7c902e92d4bd20bcbb74606824
/tools/head_fp/src/conv_1_weight_bn_fp8.h
6382cfc579a315e6991cdc666c28b7e357740674
[]
no_license
xialeilianbing/Tiny_YOLO_v3_ZYNQ
dc07604377f20de12d37085913efe5f73a031f6e
1c629ad5592a63be0ec61391265feefe9e58068b
refs/heads/master
2022-03-19T19:47:08.780268
2019-10-28T19:13:41
2019-10-28T19:13:41
null
0
0
null
null
null
null
UTF-8
C
false
false
15,487
h
#ifndef CONV_1_WEIGHT_BN_FP8_H #define CONV_1_WEIGHT_BN_FP8_H char conv_1_biases_bn_fp8[]={14, 38, 11, 23, -6, 6, 69, 62, 7, 6, 16, 8, -25, -3, 37, 39, 18, 60, 11, 30, -9, 50, 22, 15, 16, 23, 47, 3, 11, 18, -2, 24}; char conv_1_weights_bn_fp8[]={0, -1, 0, 1, 1, 1, -3, -2, 0, 0, 1, 0, -1, 0, -1, -2, -1, -2, 2, 6, 4, -...
[ "yuzhewen0108@163.com" ]
yuzhewen0108@163.com
01d6008bcad63bd79b5acdd7dc2cfe6f59a45987
c31b1b5f1d3004941f0a6173a5319759b5ecc0ff
/mz_zip_rw.h
f787f0d0f4720496da7292218d997719d3c6ec64
[ "Zlib" ]
permissive
KangLin/minizip
415b6300c03b24be2fc05050de5434fa98dc5137
a247bfaa68c7d90728f58a9bc454ff72ba3482d1
refs/heads/master
2020-03-27T12:08:03.457324
2018-09-26T06:27:32
2018-09-26T06:27:32
146,528,455
0
0
null
2018-08-29T01:37:02
2018-08-29T01:34:48
C
UTF-8
C
false
false
9,489
h
/* mz_zip_rw.h -- Zip reader/writer Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri https://github.com/nmoinvaz/minizip This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text ...
[ "nathan@solidstatenetworks.com" ]
nathan@solidstatenetworks.com
27292302df6ccea6cfb038573e4a2917a8f48996
fe4f40c794009d2e4e43c73200c934cdce02ed9c
/TA5/tool-evaluation-3/simple-uav-slang-example/uav-project-extern/src/aadl/ACT_Demo_Dec2018/act/hamr/library/uav_project_extern/SW/type-uav_project_extern_SW_UARTDriver_Impl_Impl.h
f07f6cad2e482131a02bb39530b133c1c3b9b00a
[]
no_license
loonwerks/CASE
204b15f688fd345d231e7d0b1e9df3be00c2855c
a959ce7f89000de3ab288d43746cff822930130f
refs/heads/master
2022-07-08T18:06:54.803247
2022-06-29T21:18:35
2022-06-29T21:18:35
129,441,109
15
8
null
2021-06-03T16:05:21
2018-04-13T18:44:46
C
UTF-8
C
false
false
718
h
#ifndef SIREUM_TYPE_H_uav_project_extern_SW_UARTDriver_Impl_Impl #define SIREUM_TYPE_H_uav_project_extern_SW_UARTDriver_Impl_Impl #include <misc.h> // uav_project_extern.SW.UARTDriver_Impl_Impl #include <type-uav_project_extern_SW_UARTDriver_Impl_Bridge_Api.h> #include <type-org_sireum_S64.h> typedef struct uav_proje...
[ "belt@ksu.edu" ]
belt@ksu.edu
3d9e8d0bd50ee68f0245d2f5afbb5729591a339b
2b36201be4ad74cc2ae0c2c056082762996c99eb
/Exercicios_1_semestre_graduacao/Lista_8/Arquivos_Estatistica_texto.c
8acceda38303770d09485a0f472423f94087ff74
[]
no_license
pedrofernandoch/C_Projects
6318dc977a840596d7742b0ff4f2f343fc4fff22
8a981480ccf20b6fd1fb3688852b421a57b647d7
refs/heads/master
2021-08-28T07:25:07.485019
2021-08-09T18:56:21
2021-08-09T18:56:21
221,747,023
1
0
null
null
null
null
UTF-8
C
false
false
973
c
#include <stdio.h> #include <stdlib.h> #include <assert.h> typedef struct{ char nome[30]; char sexo; int idade; } pessoas; int main() { int i=0,j,qtdM=0,qtdF=0,somaM=0,somaF=0; float mediaM,mediaF,mediaTotal; FILE *dados; pessoas *usr; dados = fopen("dados.txt","r"); assert(dados); usr= ...
[ "pedrofernandoch@gmail.com" ]
pedrofernandoch@gmail.com
5bb1c4a733801172f4249621c2b35b1ae7026f64
f8cbb876c787d9da7fc3c17d38143204f6e0892d
/LEVEL_2018/arrsizes.h
311cc017790b300244ecc9ed657bcf689ddda18a
[]
no_license
HPQC-LABS/LEVEL
f1846f24f792199a0d1cbdc1349fbb197169917c
74f54bcd53f2cb568379aa994a4ff6804aefb085
refs/heads/main
2023-08-11T10:35:26.080502
2023-04-06T18:03:34
2023-04-06T18:03:34
377,988,960
2
4
null
2023-05-16T15:36:56
2021-06-18T00:04:45
Roff
UTF-8
C
false
false
1,667
h
c%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% c** This 'Block' Data Utility routine that governs array dimensioning c in program LEVEL16 must reside with the name 'arrsizes.h' in the c same directory containing the FORTRAN file(s) for this Program when c it is being compiled, **OR** be...
[ "dattani.nike@gmail.com" ]
dattani.nike@gmail.com
b87720e988bfb4390965baac3071948c54c11e3a
8740449c0117ca7bead584fd9f2357fd26176932
/LabTest18thNovember/OOP1LabTest/Pods/Headers/Public/Kiwi/KiwiMacros.h
cf93cd768ed3efefa890ff157f6a3017d9f10ec5
[]
no_license
OuterProgamming/DIT-OOP-LabTests
665a4a3bca7a4ac776d9fc4eab257864b79988dc
6f616f09e08558e0a8f7c744828f99a89a3c3aaa
refs/heads/master
2016-09-06T11:10:24.618213
2014-11-18T21:51:19
2014-11-18T21:51:19
null
0
0
null
null
null
null
UTF-8
C
false
false
1,067
h
XSym 0039 1fbf998c3cbfdadc414150232296ee24 ../../../Kiwi/Classes/Core/KiwiMacros.h ...
[ "outerheaven182@gmail.com" ]
outerheaven182@gmail.com
b8c088fd563f91756f6288cf8af4c3177d237bd7
573d4c65d47fc7b553e2dbd71b0c30299053a3f5
/process/src/process.c
4355a2f3a5ffdb34c5cb80c824f5f2f7e752e88b
[]
no_license
cvalliet/dev_system
6424346bdec334b35c672d47553a536812a27e89
65b3282e8b9923af4d01231f11865e9aeeb81194
refs/heads/main
2023-03-21T16:54:53.621510
2021-03-17T16:52:44
2021-03-17T16:52:44
348,782,542
0
0
null
null
null
null
UTF-8
C
false
false
2,135
c
#include "common.h" int fork_example(int argc, char* argv[]) { pid_t child_pid; do { child_pid = fork(); } while ((0 > child_pid) && (EAGAIN == errno)); if (0 > child_pid) { log_error("fork() fail (%d)\n", errno); return EXIT_FAILURE; } if (!child_pid) { ...
[ "cvalliet@yahoo.fr" ]
cvalliet@yahoo.fr
21f1c2781c94d755e20b0fc804880ab1abff08cb
37c7e5e9ae20919a9c82cbd8381fef0a47a12935
/future18_v1.0/dsctbl.c
cde592b994f10e4e0e246e208aa047703c9068a4
[]
no_license
NeilJudson/HomemadeOS
000835340022c6b613dabb0ab04962d9845d913e
9da900c8ecc2f99c3e3c44c7fa2e66a6e486a9d3
refs/heads/master
2021-01-18T14:49:41.723043
2018-01-06T18:30:58
2018-01-06T18:30:58
13,897,445
1
0
null
2016-11-11T15:41:17
2013-10-27T07:28:56
C
GB18030
C
false
false
2,320
c
/* GDT、IDT、descriptor table等相关 */ #include "bootpack.h" void init_gdtidt(void) { struct SEGMENT_DESCRIPTOR *gdt = (struct SEGMENT_DESCRIPTOR *) ADR_GDT; struct GATE_DESCRIPTOR *idt = (struct GATE_DESCRIPTOR *) ADR_IDT; int i; /* GDT初始化 */ for (i = 0; i <= LIMIT_GDT / 8; i++) { // LIMIT_GDT为存放段信息的内存总B...
[ "shuiyoufeng@yeah.net" ]
shuiyoufeng@yeah.net
9fa82c69975d67fe4f3b2fb96e7cce107cd38b62
32eaade1442c246c0f5411b1ab20c271baa4d391
/2Ano/2semestre/AC2/aula4/send2displays.c
19333be7afbf24580399e316ef1a0b03bd28be3d
[]
no_license
marciapires10/MIECT
eb50d0317caa0f07633889428d59c2a4da74373f
7c6b4dd540f0ceedfb42c93ddb83f5fa03cfbbb4
refs/heads/master
2020-12-20T15:37:17.789272
2020-02-29T00:56:01
2020-02-29T00:56:01
236,122,567
1
0
null
null
null
null
UTF-8
C
false
false
832
c
# include <detpic32.h> void send2displays(unsigned char value){ static const char display7Scodes[] = {0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07, 0x7F, 0x67, 0x77, 0x7C, 0x39, 0x5E, 0x79, 0x71}; static char trigger = 0; TRISB = (TRISB & 0x00FF); TRISDbits.TRISD5 = 0; TRISDbits.TRISD6...
[ "marcia.pires@ua.pt" ]
marcia.pires@ua.pt
28dc78e597a9c121395e94d2cd37c3564e253033
c4333cfe0d69d523b1e148c077b15ba5903cb97e
/Intel/ElkhartLakeBoardPkg/Library/PeiBoardConfigLib/PchUsb2PhyTuningTable.c
fafb822eb544ad95e44767bccacb71fd51e6925c
[]
no_license
scotthe2022/ElkhartLake_Silicon_reference_and_Platform_Sample_Code
cb7b2e9cc2c7cf57c4a66a0f89e49ccf0789615f
b0149682f932de6bb88199814f9885abcdb97579
refs/heads/master
2023-07-03T20:32:25.052970
2021-08-20T20:30:59
2021-08-20T20:30:59
null
0
0
null
null
null
null
UTF-8
C
false
false
1,559
c
/** @file USB2 PHY tuning tables @copyright Copyright (c) 2018 Intel Corporation. All rights reserved This software and associated documentation (if any) is furnished under a license and may only be used or copied in accordance with the terms of the license. Except as permitted by such license, no part of ...
[ "1069096459@qq.com" ]
1069096459@qq.com
0b40a5ba6fbb0b549e80b060e947587ac547a205
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.dg/tree-ssa/ifc-pr71683.c
851be37e48c361dd5cde9aa055f6ad434bb1ec8c
[ "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
351
c
/* { dg-do compile } */ /* { dg-options "-Ofast" { target *-*-* } } */ short unsigned int ve; void u1 (void) { int oq = 0; while (ve != 0) { int j4, w7 = oq; oq = 0 / oq; ve %= oq; j4 = ve ^ 1; ve ^= oq; if (j4 != 0 ? j4 : ve) oq = ve; else if (w7 !=...
[ "rink@rink.nu" ]
rink@rink.nu
dd15593754e5e42163f42859b333c4fa7c090930
3abf43d326f7af3b5685116e6bd14b622440b60c
/0x05-pointers_arrays_strings/0-reset_to_98.c
eaf668d0405cc0c7596efc2e604b94ea297705a9
[]
no_license
kbetoacero/holbertonschool-low_level_programming
576040880196dc7d2479d6060d99f575df78f918
eb5d51d13d2f8703a515b6763d88c32258913b83
refs/heads/master
2023-04-12T18:32:56.107728
2021-05-04T16:41:45
2021-05-04T16:41:45
271,367,695
0
0
null
null
null
null
UTF-8
C
false
false
201
c
#include "holberton.h" /** * reset_to_98 - takes a pointer to a int as a parameter n updates the value *it points to 98 * @n: integer * Return : Always 0 */ void reset_to_98(int *n) { *n = 98; }
[ "vagrant@vagrant-ubuntu-trusty-64.com" ]
vagrant@vagrant-ubuntu-trusty-64.com
ce37a497745e2d862c4eb64a7bebf3409931f994
de6a1a95444071c5ae201e0add4a6133905492ee
/apps/fs/sqi_flash_fat/firmware/src/app.c
47ea6ec8a4bf16e339517aeb3bb6379498f85e17
[ "LicenseRef-scancode-unknown-license-reference", "ISC", "LicenseRef-scancode-public-domain" ]
permissive
fb321/core
bba2c99e7ab09d4c884fad7227fc4a98e1c38c81
ac3b1a4d576ee974ad9f1bcfdc7889a05c885a2d
refs/heads/master
2020-06-27T13:44:06.203997
2019-06-28T12:29:22
2019-07-02T14:15:32
199,966,101
0
1
NOASSERTION
2019-08-01T03:02:36
2019-08-01T03:02:36
null
UTF-8
C
false
false
12,605
c
/******************************************************************************* MPLAB Harmony Application Source File Company: Microchip Technology Inc. File Name: app.c Summary: This file contains the source code for the MPLAB Harmony application. Description: This file cont...
[ "http://support.microchip.com" ]
http://support.microchip.com
8351988eefb96300cea04e91d35f00bddf7a6e11
14f2cc7291ce4fae0d4fd4a794b0e7b06352dadb
/src/helper/helper.c
bee42a4b4c1f7ca2380e5eb300ad5ecb9bc6b079
[]
no_license
frouioui/MyFTP
36a48df41d64f127fbc0c102c934fbfd4e5db375
e614517bb1b287cd743cd98643e1e0f1c4f2da65
refs/heads/master
2020-05-01T16:29:59.359906
2019-04-14T19:21:37
2019-04-14T19:21:37
177,573,588
2
0
null
null
null
null
UTF-8
C
false
false
342
c
/* ** EPITECH PROJECT, 2019 ** MyFTP ** File description: ** Helper function */ #include <stdio.h> void print_helper(void) { printf("USAGE: ./myftp port path\n"); printf("\tport\tis the port number on which the server socket listens\n"); printf("\tpath\tis the path to the home directory for the anonymous"...
[ "florent.poinsard@epitech.eu" ]
florent.poinsard@epitech.eu
b540908363bddc8528734709d00aa498c6278c1d
9e54913b877a1d53e4727e45df3f936591fdcae2
/aceproc/mxace/mxace29_2010a.h
88792e45237f0f2cc9d19b006d0d82ec300436fe
[]
no_license
jhp333/aux
3d25ad3a2fefe08b04b9e6726acc82b91aa38cfa
55ca94d6dea93934feefa467684678f94ca7eee5
refs/heads/master
2021-01-23T22:43:05.311822
2015-09-12T08:02:53
2015-09-12T08:02:53
42,349,624
0
0
null
null
null
null
UTF-8
C
false
false
3,481
h
/* * MATLAB Compiler: 4.13 (R2010a) * Date: Wed May 11 15:11:08 2011 * Arguments: "-B" "macro_default" "-W" "lib:mxace29_2010a" "-T" "link:lib" * "wav2seq" "wavletace" "freqwidth" "elimcrcr" "addmlines" */ #ifndef __mxace29_2010a_h #define __mxace29_2010a_h 1 #if defined(__cplusplus) && !defined(mclmc...
[ "jhp333@gmail.com" ]
jhp333@gmail.com
734ffbd72c035524a04c6714b91e13a661e2e825
5bdcff8c452d3d1b75154b17c22029d8a247b6f5
/demos/libtwtimer/twtimer.c
d9640dc9db2bfe70db63fe09c075ef84af13c823
[]
no_license
xjhsxjh/libs
46f19f172ea4167ff1e082cf31de8465eec70051
3feab6684419184b5f6c152ee656137f975f7019
refs/heads/master
2023-04-15T21:24:44.800437
2021-04-21T15:18:01
2021-04-21T15:18:01
null
0
0
null
null
null
null
UTF-8
C
false
false
8,942
c
// Timing Wheel Timer(timeout) // 64ms per bucket // http://www.cs.columbia.edu/~nahum/w6998/papers/sosp87-timing-wheels.pdf #include "twtimer.h" #include <pthread.h> #include <stdlib.h> #include <stdint.h> #include <sys/select.h> #include <sys/time.h> #include <sys/prctl.h> #include <errno.h> #include <stdio.h> #de...
[ "timeontheway@163.com" ]
timeontheway@163.com
3d1cd20e1d36543fb628faed4895e3003361378a
a460c7315894d5523642edf6bda3550339da2106
/Furukawa/furukawa-sce-fw/Drivers/HAL_Driver/Src/stm32l0xx_hal_dac_ex.c
20004da13b6b18dd17f59ab5902b592400f085b9
[]
no_license
IBTI-Brasilia/Furukawa
0b868f4f60091854880d243b2e0620c1870d4e0e
9d4bed43933b127f5692473ad4e464d025265a89
refs/heads/main
2023-04-02T02:19:49.208961
2021-04-07T13:46:54
2021-04-07T13:46:54
353,360,455
0
0
null
null
null
null
UTF-8
C
false
false
35,251
c
/** ****************************************************************************** * @file stm32l0xx_hal_dac_ex.c * @author MCD Application Team * @brief Extended DAC HAL module driver. * This file provides firmware functions to manage the following * functionalities of DAC extension perip...
[ "infra@ibti.org.br" ]
infra@ibti.org.br
093bc45835bc7b5330e2257e4fe50729148bbe47
19132d75960155abce8986efaddb77f74a47f7fa
/drivers_bm/src/tecla.c
7f4eee50fa30a7f2141308a4e6db2c383bb692c1
[]
no_license
juanabalovirgilio/Curso_EDUCIAA
5666aac52181e3db7079e1f327c43539d5cf4906
77671b22d786d91e8deb0b1dfbf465c0e91b2575
refs/heads/master
2021-01-19T05:15:29.597141
2016-07-01T14:06:44
2016-07-01T14:06:44
61,896,310
0
0
null
null
null
null
ISO-8859-1
C
false
false
9,755
c
/* Copyright 2016, XXXXXXXXX * All rights reserved. * * This file is part of CIAA Firmware. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright...
[ "juanabalovirgilio@gmail.com" ]
juanabalovirgilio@gmail.com
5d3f8d5961a90cdfe5f502a1e501f7fd8d4c76a7
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/s390/cio/extr_css.c_for_each_subchannel_staged.c
6bdaa506a124baaf89dbeb345e43f56de8718e2d
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,957
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
d9075b92c02504f28ccccde01878aea3fcd327db
d0c6db65c20c9ec05ed0c20bb87106c4b18c97fc
/cw04/zad3a/catcher.c
15b56557db0fc84a288d9b8e56638d7f6e15feb5
[]
no_license
GCyganek/sysopy
3a4378ce88ae4604acf554fae0a08e5c8df7ed37
046d23cbd6a6bf8d53b61b6bc914baa834bf3817
refs/heads/master
2023-05-21T11:34:09.961004
2021-06-06T13:38:08
2021-06-06T13:38:08
347,030,120
2
6
null
null
null
null
UTF-8
C
false
false
1,445
c
// // Created by gcyganek on 30.03.2021. // #include "header.h" int sig1_counter = 0; char sig2_received = 0; enum p_mode mode; void sig1_handler(int sig_no, siginfo_t* info, void* ucontext) { (void)ucontext; (void)sig_no; (void)info; sig1_counter++; } void sig2_handler(int sig_no, siginfo_t* info,...
[ "gabrielcyganek@gmail.com" ]
gabrielcyganek@gmail.com
29f9b090f042c9f3a47ddd4e6975e22cf762f507
28d9936081f9977c5f59a377af97bd9ac065947e
/btls_bign_ameth.c
9e8a6045aa9f24eb50163a9694181ad3ab2ffbcd
[]
no_license
ppmi-bsu/btls_e
36c0af63728b3352e431911293b496bb404c9791
a728ace3725415e47f3dc57d16c7b4e902f0e7f5
refs/heads/master
2016-09-06T05:28:10.214108
2014-07-11T13:47:17
2014-07-11T13:47:17
21,696,677
2
0
null
2014-09-11T07:51:08
2014-07-10T14:14:58
C
UTF-8
C
false
false
16,523
c
/* ******************************************************************************* \file btls_bign_ameth.c \brief Форматы данных для алгоритмов bign ******************************************************************************* \author (С) Олег Соловей, Денис Веремейчик, http://apmi.bsu.by \created 2013.05.14 \versio...
[ "mihas-91@tut.by" ]
mihas-91@tut.by
c5ecf3d51a58b984f7668cbfbb1af8016ddd2fbf
ab3248d6e684d0412d509bff971cbb5b57fa7aed
/Source/JavaScriptCore/inspector/remote/EmptyRemoteInspector.h
ca52d00e3a2fcb542ef964ce7550d8bf56173488
[]
no_license
wapm-packages/jsc
1a86ee90d1f9bef683c5953eff42749c238b6199
6990dc591e5979747ea4ff652527d0c415e034d4
refs/heads/master
2021-11-11T09:49:29.089852
2019-05-07T23:06:24
2019-05-07T23:06:24
184,309,103
19
0
null
2021-11-06T06:22:13
2019-04-30T18:05:52
C++
UTF-8
C
false
false
176
h
// billming #ifndef EMPTYREMOTEINSPECTOR_H #define EMPTYREMOTEINSPECTOR_H typedef void* TargetListing; #include "RemoteConnectionToTarget.h" #endif // EMPTYREMOTEINSPECTOR_H
[ "mbbill@gmail.com" ]
mbbill@gmail.com
41a205376c10616e939ace127df9d193fe3fbcdd
46979906b331cc10c7f0f009a158ce0996f14097
/dynchk/libs/libcairo/cairo_user_font_face_get_init_func.c
80d8f7ffbe3a5078876a433c113af8b43bcd5ef2
[]
no_license
mwichmann/lsb-checkers
2f6a9674c9a23e39d69d35e8d2457c7a5b3881dc
1170e4486085731b129cbb060c693e7e6ebca027
refs/heads/master
2020-06-11T00:07:56.105656
2016-12-08T19:30:39
2016-12-08T19:30:39
75,857,254
3
3
null
null
null
null
UTF-8
C
false
false
1,239
c
// Generated by gen_lib.pl #include "../../tests/type_tests.h" #include "../../misc/lsb_output.h" #include "stdlib.h" #include <cairo/cairo.h> #undef cairo_user_font_face_get_init_func static cairo_user_scaled_font_init_func_t(*funcptr) (cairo_font_face_t * ) = 0; extern int __lsb_check_params; cairo_user_scaled_font...
[ "mats@linuxfoundation.org" ]
mats@linuxfoundation.org
0bf2c71ea365703e5f4f5d693c979c2b6d219049
00c41695efa302efe8541d6be60fa8c719f2f3ce
/FRT_Library/FreeRTOS/Source/include/projdefs.h
76f33b772ba21d2bbeebfcbe932cdf16429bb187
[]
no_license
nich2000/FreeRTOS-CooCox
20358d95952008eac41fcfdf60342ed0db3fae65
d4b103c8f61c320eb22a6260d2341fa985bd017e
refs/heads/master
2020-12-24T13:43:53.633238
2014-06-23T01:47:17
2014-06-23T01:47:17
null
0
0
null
null
null
null
UTF-8
C
false
false
4,232
h
/* FreeRTOS V8.0.1 - Copyright (C) 2014 Real Time Engineers Ltd. All rights reserved VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. *************************************************************************** * ...
[ "mgoodrich@pih.org" ]
mgoodrich@pih.org
21122c53e2df010790588ede8b7701fe2a195c4f
111a1aeb8ac30356ca4317bf26c21254a669180a
/Ex2/TestManager/ProcessFunctions.h
64b5118b3a240e16ade4f3584998e5a7e9d0134d
[]
no_license
SonyT98/ISP_ex2
76c2ca5fb6476873456a5e0834b50f7f7d5b2bbe
53fc04e63778ec279b87fdde27715aacf32afb46
refs/heads/master
2020-09-16T00:00:01.865482
2019-12-07T17:13:43
2019-12-07T17:13:43
223,590,274
0
0
null
null
null
null
UTF-8
C
false
false
1,809
h
#pragma once #ifndef __PROCESSFUNCTIONS_H__ #define __PROCESSFUNCTIONS_H___ #include <stdio.h> #include <stdlib.h> #include <windows.h> #include "HardCodedData.h" //--------------------------------------------------------------------------// /** * CreateProcessSimple uses the win32 API to create a process that runs t...
[ "57562876+SonyT98@users.noreply.github.com" ]
57562876+SonyT98@users.noreply.github.com
b7c56b3973d27c679c8192476f36a06e432e09eb
98a24c854d95ae4ec1a9cf0dbc5635c3fd85bf3d
/week7/ex2.c
d53d0651107e57959493d34b31adcce076e8e7eb
[]
no_license
Glemhel/OS-2020
f893dd040a8a9381a724bf1c2eff881312d0805f
1f1caedc684c38c57c68ed80f05bba6211568da5
refs/heads/master
2023-01-06T04:29:33.485203
2020-11-10T12:06:32
2020-11-10T12:06:32
288,565,002
0
0
null
null
null
null
UTF-8
C
false
false
914
c
// Mikhail Rudakov, BS19-02 #include <stdio.h> #include <stdlib.h> int main(){ int n; printf("Hello, user! Please enter N - number of elements in array:\n"); scanf("%d", &n); if (n <= 0){ printf("Nothing to do with it! Bye!\n"); return 0; } int* array = (int*) calloc(n, sizeof(i...
[ "ya.rudakov2001@yandex.ru" ]
ya.rudakov2001@yandex.ru
06ebf61dfff01f2f71d694ee793e87faccbc5683
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/drivers/net/ethernet/ti/netcp_sgmii.c
f7cf56d6351d75c54e413c3afad2da2a675c012b
[ "MIT", "GPL-1.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
eerimoq/monolinux-example-project
7cc19c6fc179a6d1fd3ec60f383f906b727e6715
57c4c2928b11cc04db59fb5ced962762099a9895
refs/heads/master
2021-02-08T10:57:58.215466
2020-07-02T08:04:25
2020-07-02T08:04:25
244,144,570
6
0
MIT
2020-07-02T08:15:50
2020-03-01T12:24:47
C
UTF-8
C
false
false
3,507
c
// SPDX-License-Identifier: GPL-2.0 /* * SGMI module initialisation * * Copyright (C) 2014 Texas Instruments Incorporated * Authors: Sandeep Nair <sandeep_n@ti.com> * Sandeep Paulraj <s-paulraj@ti.com> * Wingman Kwok <w-kwok2@ti.com> * */ #include "netcp.h" #define SGMII_SRESET_RESET BIT(0) #define SGMII_S...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
b195aabe3116d9fb3242d76786b03d8c740e7594
67c08aab18aa387d2f296940641e4431e3df7df9
/school21_pool_exercises-master/day-08/ex00/ft_split_whitespaces.c
02af771f6ea9b9c5646816a88ce0ed89a0ccd27b
[ "MIT" ]
permissive
alexaklex/shcool
1531333058c5c6ef2c3d12c7ec8b59730e6c4fbf
723358daa21fd59732b44dd22ea17879e3c47f6c
refs/heads/master
2021-01-14T15:41:54.885211
2020-02-24T06:49:52
2020-02-24T06:49:52
242,666,668
0
0
null
null
null
null
UTF-8
C
false
false
1,891
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_split_whitespaces.c :+: :+: :+: ...
[ "neon03-uu@yandex.ru" ]
neon03-uu@yandex.ru
1f52178e71a4e0ed87535a26932e47286fbcd51e
beb2bb645b329c488dea382236e953eba122e46d
/samples/include/stdint.h
8a8285054ca13a556470d4c194bf5a2f878c6804
[]
no_license
thepowersgang/rust-cc
4b648eae334bc864efa46889bc04b59c983e0926
ccc057c58d4996adef7cc8d14d76eed412c31df9
refs/heads/master
2022-05-07T21:50:34.624878
2022-03-20T01:27:26
2022-03-20T01:27:26
23,482,141
57
6
null
null
null
null
UTF-8
C
false
false
386
h
#pragma once typedef __magictype__("int8_t:i8") int8_t; typedef __magictype__("int16_t:i16") int16_t; typedef __magictype__("int32_t:i32") int32_t; typedef __magictype__("int64_t:i64") int64_t; typedef __magictype__("uint8_t:u8") uint8_t; typedef __magictype__("uint16_t:u16") uint16_t; typedef __magictype__("uint32_t...
[ "tpg@mutabah.net" ]
tpg@mutabah.net
ba3d0539972b4ade99bba9e4cc8b57f429add1ff
488c2bd5f4c6d942a954fb2c79223555bd0b481a
/binary_search/binary_search.c
5d9076320d945942b02ee22e1e97958e2b57d688
[]
no_license
ETalienwx/ETGitHub
d40cdd2ff9b7dfc035f7c83f7e19aacfa39e63e6
c0d57ab0ecc4561e0e45f3801c638e4495f0c5e1
refs/heads/master
2020-04-24T07:21:11.581867
2019-10-08T03:28:39
2019-10-08T03:28:39
171,796,677
0
0
null
null
null
null
GB18030
C
false
false
1,521
c
//写代码可以在整型有序数组中查找想要的数字,找到了返回下标,找不到返回-1.(折半查找) //方法1: //#include<stdio.h> //#include<string.h> //int main() //{ // int arr[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; // int k = 7; // int left = arr[0]; // int right = sizeof(arr) / sizeof(arr[0]) - 1; // while (left<=right) // { // int mid = left + (right - left) / 2; /...
[ "wangxuan0809@126.com" ]
wangxuan0809@126.com
6175a6a0ef33455c9e06bb25794f037094681e5e
bc9a442b7d9fee24ff8fcdde42af6016cd7c5c14
/src/postgres/src/backend/access/rmgrdesc/replorigindesc.c
c43f850f8ef95cc52f26707c8208259e2007474e
[ "BSD-3-Clause", "CC0-1.0", "Unlicense", "bzip2-1.0.6", "dtoa", "MIT", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "OpenSSL", "PostgreSQL" ]
permissive
shaunstanislauslau/yugabyte-db
722cdd5ff15f3749c9baaba3bb4e6dd4b1f2c58c
d6eaf9c5e69dced184fa76bb6869a191c1426c98
refs/heads/master
2023-06-23T19:53:05.738408
2018-12-04T03:26:26
2018-12-04T14:04:16
160,453,137
0
0
Apache-2.0
2023-06-15T16:20:31
2018-12-05T03:10:09
C
UTF-8
C
false
false
1,311
c
/*------------------------------------------------------------------------- * * replorigindesc.c * rmgr descriptor routines for replication/logical/origin.c * * Portions Copyright (c) 2015-2017, PostgreSQL Global Development Group * * * IDENTIFICATION * src/backend/access/rmgrdesc/replorigindesc.c * *---...
[ "yugabot@users.noreply.github.com" ]
yugabot@users.noreply.github.com
927e2dfcdce4f529afb9a862e20c12d368c20580
baef104d9aad12826580ccff804321e5784cd8ad
/Trabalho2/main.c
64c3f6e190ccfbe756f86ba869572d5417baf086
[]
no_license
leoeduardoo/EDII-T2
69d59b0af992e767c52474be854dd5a23a102077
dda26cdf9465f70301cbefb850f31ab924bf4beb
refs/heads/master
2023-03-15T00:00:41.928414
2019-09-26T12:39:51
2019-09-26T12:39:51
210,958,424
0
0
null
2019-09-26T12:39:52
2019-09-25T23:26:12
C
UTF-8
C
false
false
2,555
c
// // main.c // Trabalho2 // // Created by Léo Silva on 22/09/19. // Copyright © 2019 Léo Silva. All rights reserved. // #include "header.h" int main(void) { //guarda a quantidade de registros a serem inseridos int quant_registros_insere = contaRegistrosEntrada(); //guarda a quantidade de registr...
[ "leo.eduardo_silva@hotmail.com" ]
leo.eduardo_silva@hotmail.com
62e5224c0ed28994718f6cead487311638cabf32
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/g++.dg/torture/pr42357.C
1a1d64e4f8e9fb4cffd158de1a9428a2f237ead3
[ "Zlib", "LicenseRef-scancode-public-domain", "LGPL-2.1-only", "FSFAP", "LGPL-3.0-only", "GPL-3.0-only", "GPL-2.0-only", "GCC-exception-3.1", "LGPL-2.0-or-later" ]
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
639
c
// { dg-do compile } typedef unsigned char uint8; typedef unsigned int uint32; class PixelARGB { public: ~PixelARGB() throw() { } PixelARGB (const uint32 argb_) throw() : argb (argb_) { } inline __attribute__((always_inline)) uint8 getRed() const throw() { return components.r; } union { ui...
[ "rink@rink.nu" ]
rink@rink.nu
7bf317145c3c9bd503aa8462104601b6410ddc6b
27ffcdc40d9689a0b2b92ba44d47d0aead58cfaa
/drivers/dma/dma_pl330.h
e218f61e91fafe843c35643f5a8b92225e8149c0
[ "Apache-2.0" ]
permissive
cybertale/zephyr
d0f41c9a27ec066be01a2977d0352b752dc073eb
35def71d1345ff2bfced53019caaeb70f82199d1
refs/heads/master
2021-06-20T12:47:42.355401
2020-12-30T21:20:01
2021-01-04T17:15:20
160,940,857
4
0
Apache-2.0
2018-12-08T13:13:28
2018-12-08T13:13:27
null
UTF-8
C
false
false
3,866
h
/* * Copyright 2020 Broadcom * * SPDX-License-Identifier: Apache-2.0 */ #ifndef DMA_PL330_H #define DMA_PL330_H #include <drivers/dma.h> #define DT_DRV_COMPAT arm_dma_pl330 /* * Max burst length and max burst size for 32bit system with * 128bit bus width for memory to memory data transfer * * Burst length is...
[ "carles.cufi@nordicsemi.no" ]
carles.cufi@nordicsemi.no
6ecf87d854a45ad6dead1886d8f5a5e939deaac2
f66988aa5a276f84d9c29f261e57848439f690d8
/usr/opt/OSCX200/src/clients/xterm/menu.c
e7d83f39523599449be04acf1a978a479a4d31b2
[]
no_license
dongdong-2009/osf1
63d4f7d33be85a6d9ed02d0c357d0c53985b70c4
3fe58fe301eb68d02c7735f861e80bee9f457d15
refs/heads/master
2021-09-18T10:42:48.930794
2018-07-13T08:15:24
2018-07-13T08:15:24
null
0
0
null
null
null
null
UTF-8
C
false
false
30,566
c
/* * ***************************************************************** * * * * * Copyright (c) Digital Equipment Corporation, 1991, 1994 * * * * * * All Rights Reserved. Unpublished ...
[ "rwoodsmall@gmail.com" ]
rwoodsmall@gmail.com
8511d0b45d2cc8cf035c1f11eb90966d728962ca
f10344b7456bc195da93e459de7661fa4bde89f0
/pa5/hi.c
9ec14cb232aadee4cb4c8f3d516645185ca8fd30
[]
no_license
YongshiSun/CS12B
8ff2a3ce0494573eb791f326c384d1303a0c9656
fd0fa55436b28a980af6a7fe043029362b3736dc
refs/heads/main
2023-01-25T04:45:26.369046
2020-11-18T18:53:17
2020-11-18T18:53:17
314,028,624
1
0
null
null
null
null
UTF-8
C
false
false
945
c
#include<stdio.h> #include<stdlib.h> #include<string.h> #include"Dictionary.h" #define MAX_LEN 180 int main(int argc, char* argv[]){ char s1[4] = {1,2,3}; char s2[4] = {4,5,6}; char s3[20]; cat(s1,s2); printf("%c\n", s3[0]); printf("%c\n", s3[1]); printf("%c\n", s3[2]); printf("%c\n",...
[ "yongshisun3@gmail.com" ]
yongshisun3@gmail.com
31c48e5965782944c491eca66aed8da4bffd51a8
06f7c71cf43402b15be8f05c85da69fb8879eb04
/Xv6/xv6-public/sh.c
bc8477b80b7028085018ead1a9e9fa47f297bdd1
[ "MIT" ]
permissive
DiegoDeDios/DiegOS
cd996a220098e79c338ece3b5b5f419af9b3f7d6
b1937aac333b97766d0d2c692734496708e98d58
refs/heads/master
2020-04-18T01:03:45.103490
2019-05-08T00:04:28
2019-05-08T00:04:28
167,094,460
0
0
null
null
null
null
UTF-8
C
false
false
8,532
c
// Shell. #include "types.h" #include "user.h" #include "fcntl.h" // Parsed command representation #define EXEC 1 #define REDIR 2 #define PIPE 3 #define LIST 4 #define BACK 5 #define MAXARGS 10 struct cmd { int type; }; struct execcmd { int type; char *argv[MAXARGS]; char *eargv[MAXARGS]; }; struct re...
[ "diegomzdedios@gmail.com" ]
diegomzdedios@gmail.com
9878e0fc041216e282bc627aff6038098de886f1
0057987be09eab0f49bfcaaa6ffc10d4805490d2
/Examples/MDR1986BE4/DAC/DMA_SineWave/MDR32F9Qx_it.c
50b8c63c1d4c0b091e1c7911974580fb6e9b62a0
[]
no_license
yaxn/keil-pack-milandr
4ef1afaa3b10b47061a6b457ae5bb2e902215f04
90c48b87bd89e13af5bf968841672a62cbe2424a
refs/heads/master
2020-03-19T07:40:52.599006
2018-06-05T07:45:53
2018-06-05T07:45:53
136,138,826
1
0
null
null
null
null
UTF-8
C
false
false
3,386
c
/** ****************************************************************************** * @file Examples/MDR1986BE4_EVAL/DAC/DMA_SineWave/MDR32F9Qx_it.c * @author Milandr Application Team * @version V1.2.0 * @date 12/09/2014 * @brief Main Interrupt Service Routines. * *******************************...
[ "yan-pivnev@yandex.ru" ]
yan-pivnev@yandex.ru
d8a5fd1ff461392f3e446b17fd51ab6751c4ab77
4adf02f993cc27a2d1cca5135b88c5bf03599f3c
/lem_in/src/count.c
f06842f3653b40a8a0c8ca55643451ed1d889510
[]
no_license
embambo/lem_in
8a27b898a9fedb1069456d15c81258579f2ee129
7c324cf58db06b895e855468ccd92a9faad0e496
refs/heads/master
2022-11-07T20:48:35.791015
2020-06-29T09:04:48
2020-06-29T09:04:48
272,958,157
0
0
null
null
null
null
UTF-8
C
false
false
1,864
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* count.c :+: :+: :+: ...
[ "noreply@github.com" ]
embambo.noreply@github.com
1362f0c223e57b71c4a3d64a612ea302289665ee
94af9a20a4469ec4e361de4a50fcd1f4be82d889
/libftprintf/ft_memcpy.c
5e26738d8ea9a2c7a63cc4fa69dacf7bdfb1a6ef
[]
no_license
BoyerDamien/ft_printf
e4fc883e4db1d8320e43251b629a5359e524755a
67fc1c16006bcee21cf121664c44bf296cb93a6f
refs/heads/master
2021-01-14T16:34:04.833807
2020-02-24T08:43:57
2020-02-24T08:43:57
242,680,498
0
0
null
null
null
null
UTF-8
C
false
false
1,213
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memcpy.c :+: :+: :+: ...
[ "dboyer@e3r6p1.42.fr" ]
dboyer@e3r6p1.42.fr
c30f871dcd06d9818ee4869c02d09ff997dd3d10
6f3e0000993816afa03d64c5a02b94fca2931200
/sys/compat/linux/arch/powerpc/linux_syscalls.c
88b6cdbb2768e42748392fb08140d1a8dfaf5244
[]
no_license
fallen/NetBSD6
b6dc7a2593846816b8cb6f47cf26054ca2811667
44e0ac4ada812ace1f9ca8ce4792e287d83bd951
refs/heads/master
2022-04-09T14:50:47.274147
2020-03-08T14:01:38
2020-03-08T14:01:38
8,187,676
2
2
null
2020-03-08T14:01:39
2013-02-13T20:57:45
null
UTF-8
C
false
false
15,792
c
/* $NetBSD: linux_syscalls.c,v 1.56 2012/09/19 21:24:37 pooka Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. * created from NetBSD: syscalls.master,v 1.51 2012/09/19 21:19:15 pooka Exp */ #include <sys/cdefs.h> __KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.56 2012/0...
[ "yann.sionneau@gmail.com" ]
yann.sionneau@gmail.com
65fc21fa82304665695cd69025646d67c08ea020
e6b3aa554fb4c8edf568988a7ac8be6a7be18e0d
/docs/tutors/goog_tutors__from__extrameelectronics.co.in/StopWatch.c
34c527fae42c4b70ff241a0ddee81065f67b919f
[]
no_license
Darkrai9x/avr_jokes
7d9fe71f197ffee02e50385936d1df464cb72353
a1a80fd87667e075fb835228efb5fe6f17c7590e
refs/heads/master
2021-05-27T00:01:29.370888
2010-01-29T00:01:51
2010-01-29T00:01:51
null
0
0
null
null
null
null
UTF-8
C
false
false
5,097
c
/* Description: An AVR ATmega8 based Digital Stop Watch Project. ________________________________________________________ Author: Avinash Gupta Date: 04 July 09 Web www.eXtremeElectronics.co.in */ #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay_basic.h> #define true 1 #...
[ "Marcin.Bielak@komputronik.pl" ]
Marcin.Bielak@komputronik.pl
215a4c51d745c3b4714f301bc427797d7e8f85f9
01f069021fae21cabac6e5fc10a6da03e1d6d9e9
/FONCTION/TD1/TEST/exo4/avecbiblio2/main.c
6e96afcb22754edeb060d051dcbb2ff6c14f1b16
[]
no_license
TheoMichaud/LangageC
15e1f0565c127bbb47d4682e4a74511473e76bcd
a2a62e7028da32fdabd3b19314bf1328203c6cf1
refs/heads/master
2020-03-30T03:57:43.031965
2018-09-28T09:32:38
2018-09-28T09:32:38
150,717,072
0
0
null
null
null
null
UTF-8
C
false
false
203
c
#include <stdio.h> #include <stdlib.h> #include "biblioCarre.h" int main() { int val,resultat; printf("Saisir votre valeur :"); scanf("%d",&val); afficherCarre(val); return 0; }
[ "theo15@live.fr" ]
theo15@live.fr
c36753978bf8d560c1ea6acbe790b4d897a326e5
8010df1fef10ddfd83bf07966cbf7e2e4b0d7ee9
/include/winsdk/winrt/winstring.h
002ab2c2d6c7deb89db39a2425acc17df78c1b5c
[]
no_license
light-tech/MSCpp
a23ab987b7e12329ab2d418b06b6b8055bde5ca2
012631b58c402ceec73c73d2bda443078bc151ef
refs/heads/master
2022-12-26T23:51:21.686396
2020-10-15T13:40:34
2020-10-15T13:40:34
188,921,341
6
0
null
null
null
null
UTF-8
C
false
false
5,179
h
// Copyright (C) Microsoft Corporation. All rights reserved. #ifndef __WINSTRING_H_ #define __WINSTRING_H_ #ifdef _MSC_VER #pragma once #endif // _MSC_VER #ifdef _CONTRACT_GEN #include <nt.h> #include <ntrtl.h> #include <nturtl.h> #endif #include <apiset.h> #include <apisetcconv.h> #include <hstring.h> #include <r...
[ "lightech@outlook.com" ]
lightech@outlook.com
3c80885b4751962050ad9fcdc9efe652b38e6d88
a48646eddd0eec81c4be179511493cbaf22965b9
/src/sip/shell/sip_shell_cfg.c
27d72e5487425e597dc579f8b007071b6651d54b
[]
no_license
lengue/tsip
0449f791a5cbe9e9fdaa1b4d7f1d1e28eff2f0ec
da8606bd7d865d4b4a389ec1594248a4044bc890
refs/heads/master
2021-01-10T08:40:32.925501
2010-06-05T12:44:10
2010-06-05T12:44:10
53,989,315
0
0
null
null
null
null
GB18030
C
false
false
1,699
c
/******************************************************************************* 功能 : 传输层消息管理(WIN32专用) 创建人 : 唐春平 创建日期: 200.01.10 修改记录: *******************************************************************************/ /* 外部依赖模块头文件 */ #include "common\common.h" #include "ubuf\ubuf.h" #include "uri\uri.h" #in...
[ "tommy1boy@163.com" ]
tommy1boy@163.com
11727880b8d4d0e57f297613e8e0277dddc0de4d
0dfd2a25cf22eccb6d090b67c901869f3fc37f2b
/SingleParticleResolution/Plots/Stage43/SingleParticleEnergyResolution_RecoStage_57_Kaon0L_5GeV.C
7fe293ea37225e5b6207a364360627898b79e22e
[]
no_license
StevenGreen1/EnergyResolutionAnalysisGridJobs
0ab5eef0df35a725080c59c3b763b73e6d20a844
767304b079ca5736acf83534881b55020df11222
refs/heads/master
2021-01-10T15:09:31.650184
2015-10-28T13:14:52
2015-10-28T13:14:52
45,029,161
0
0
null
null
null
null
UTF-8
C
false
false
5,243
c
{ //=========Macro generated from canvas: Name/Title //========= (Tue Oct 20 18:46:05 2015) by ROOT version5.34/30 TCanvas *Name = new TCanvas("Name", "Title",0,0,600,500); gStyle->SetOptStat(0); Name->SetHighLightColor(2); Name->Range(-1.25,-69.43126,11.25,624.8813); Name->SetFillColor(0); Name->Set...
[ "sg1sg2sg3@hotmail.co.uk" ]
sg1sg2sg3@hotmail.co.uk