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
4b3613136d8936e881dcf7ef354491fb966b5bbf
504ebc713163e4aed9c2656c777eae65cfb55793
/libft/ft_isalpha.c
b0e953eee66c674220b51473dad929fabd970e9b
[]
no_license
lucas-korea/42seoul
838aa1a5bbab04560b506a38c877d8672d2d90fe
f98470fd54b80f218858110230b921c32bc523db
refs/heads/master
2023-02-19T17:58:28.807318
2021-01-15T12:41:00
2021-01-15T12:41:00
325,000,155
0
0
null
null
null
null
UTF-8
C
false
false
1,001
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: ...
[ "cjung@c2r10s7.42seoul.kr" ]
cjung@c2r10s7.42seoul.kr
83ca39791a11e61cc01396d960ee687cda1411f7
76d229e57f99a033cae56109eaadf68e66afe7c6
/FortKnight/Source/Trace.h
38ebe8d49cc94b7ade74478822db1e740af9c8fa
[]
no_license
Miller-Anthony/School
ee4697c7b2490472cbd7731a24aa4d15e62c9765
94a75dc3f97c81e612a5e863de5cf0ab4dd6c644
refs/heads/master
2020-07-03T06:45:35.688194
2019-08-14T07:39:50
2019-08-14T07:39:50
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
2,107
h
//------------------------------------------------------------------------------ // // File Name: Trace.h // Author(s): Doug Schilling (dschilling) // Project: MyGame // Course: CS230S19 // // Copyright © 2019 DigiPen (USA) Corporation. // //----------------------------------------------------------------------------...
[ "Miller-Anthony@users.noreply.github.com" ]
Miller-Anthony@users.noreply.github.com
fd55fe696200a58a0de248f0ac68623ff5bc9f1d
d731f429c00d6beb757c6c1ebbb51632fdf37006
/libft/ft_strncat.c
44974efb9726439a9c840a16c44cfa0bc85efbe4
[]
no_license
IvanIlin22/GNL
3408787427381b8184f5e0063354069ec2fe7b69
30dba9333beef8951022d025e6b230acf3acafd4
refs/heads/master
2022-07-17T03:31:15.682141
2020-05-19T07:36:19
2020-05-19T07:36:19
265,173,799
1
0
null
null
null
null
UTF-8
C
false
false
1,116
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strncat.c :+: :+: :+: ...
[ "noreply@github.com" ]
IvanIlin22.noreply@github.com
36cc44afdedcdbd00c1137f5213957bc820faa36
5cd2244fc73691a6d03555aaf570b1954db82866
/src/io.c
15df2b5e8b371589cda9b121cabae4123bf8ab01
[]
no_license
rddyas002/MPLABX_ThermalControl
fee1e728b6e17051ce73345ef01d43beb723e0d3
c8a1e9a9a5390ef3e4e2a16d2b9d3423571f7861
refs/heads/master
2021-01-02T23:12:35.407935
2015-02-22T07:51:20
2015-02-22T07:51:20
31,122,615
0
0
null
null
null
null
UTF-8
C
false
false
80,246
c
#define IO_H_IMPORT #include "../inc/io.h" #include "../inc/ultrasonic.h" #include "../inc/rn131.h" #include "../inc/imu.h" #include "../inc/ds18s20.h" /* * Describe interrupts: * CoreTimer INT PRIORITY:SUBPRIORITY 7:2 * Battery ADC interrupt 1:3 * * Other notes: * IO uses Timer 1 for delays * IO use...
[ "yreddi@spaceteq.co.za" ]
yreddi@spaceteq.co.za
9b795f827cf32e70102654c820705dbd42a7dbe5
d8db90954d2e373b057777aeb69315c41d94c288
/c/misc/intro/unique_rand.c
791776620560424740fb78fc5823ec4021110d84
[ "MIT" ]
permissive
alexandru-dinu/probe
e255623808d04565d08378b5ec8affa7a1e0165f
4e18db73f7146f35988bff0b193b5ec6b8e567fb
refs/heads/master
2023-07-29T22:46:22.745987
2021-10-06T07:41:02
2021-10-06T07:41:02
85,246,549
0
0
null
null
null
null
UTF-8
C
false
false
551
c
#include <stdlib.h> #include <stdio.h> #include <time.h> #define MOD 10 #define n 10 int main(void) { srand(time(NULL)); int *v; int i, j = 0; int r; v = malloc(n * sizeof(int)); v[0] = rand() % MOD; for(i = 1; i < n; i++) { init: r = rand() % MOD; ...
[ "alex.dinu07@gmail.com" ]
alex.dinu07@gmail.com
7d14396be09819182ea3761b40ed5f3310343860
c6dd8580e97afc5757fa4a92db77024169438274
/libft/ft_strdup.c
9fa5c44103f64c3441e58e1cda33631decfcaa4e
[]
no_license
vpaladin/libft
d03260c90ec623836077d3435b2ce8daeb78ff43
74581fdb7a04a945983b6a6e6ea6073d98fd5db7
refs/heads/main
2023-09-03T19:19:31.633698
2021-11-09T13:27:24
2021-11-09T13:27:24
384,960,216
0
0
null
null
null
null
UTF-8
C
false
false
296
c
#include "libft.h" char *ft_strdup(const char *src) { char *dest; size_t i; size_t length; length = ft_strlen(src); dest = malloc(sizeof(char) * (length + 1)); if (dest == NULL) return (NULL); i = 0; while (i < length) { dest[i] = src[i]; i++; } dest[i] = 0; return (dest); }
[ "noreply@github.com" ]
vpaladin.noreply@github.com
c8c8d299bc08d881d870694d0393a7d9d1f5c538
fa62c5a6f631950098d1a56a72230045aaea865f
/ppu.c
6c7a5129e7107798022dac8f7bff1dafc5736b80
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "Unlicense" ]
permissive
joeldipops/TransferBoy
11611dc2b2b7237b7f7c6c1a9110821d013dee4f
7c74c645c98fa8df8bd9e43f56e3c6b893cd8e59
refs/heads/master
2021-06-24T05:15:15.309071
2020-11-12T20:52:51
2020-11-12T20:52:51
146,741,563
37
0
NOASSERTION
2019-05-24T12:05:50
2018-08-30T11:45:37
C
UTF-8
C
false
false
2,182
c
#include "global.h" #include "rsp.h" #include "hwdefs.h" #include "config.h" #include "logger.h" #include <libdragon.h> typedef struct { // Extends ppuInterface union { u32 Settings[8]; struct { uintptr_t VRamAddress; uintptr_t HRamAddress; uintptr_t OAMAddress...
[ "joeldipops@gmail.com" ]
joeldipops@gmail.com
34b795b22d21583abc3b717cd4a4e01433a4c097
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/net/dsa/tag_edsa.c
e70c43c25e64c9310d3d5a61b407d8eeb76402d2
[ "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
5,174
c
/* * net/dsa/tag_edsa.c - Ethertype DSA tagging * Copyright (c) 2008-2009 Marvell Semiconductor * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at...
[ "gamishev@gmail.com" ]
gamishev@gmail.com
6b8e5d82af13dfd0c919e9f3741da16a47b78c4c
a3bb415a975deb656e6b2d1b8aa3658a96a87efd
/layout/col.c
3b6aabfe69f198470c815c913232ba695d221e49
[ "MIT" ]
permissive
bobrippling/dwm
948aeb826bb2f526bb3ff090e174d7c96f000515
493237d7a89968cb75e381af3c25d20c8c14a9a5
refs/heads/master
2022-02-09T03:28:40.657986
2022-02-02T18:17:02
2022-02-02T21:38:23
14,666,198
1
0
null
null
null
null
UTF-8
C
false
false
974
c
void col(Monitor *m) { int x, y, h, w, mw, nm; unsigned int i, n; Client *c; snprintf(m->ltsymbol, sizeof m->ltsymbol, "||%d", selmon->pertag->nmasters[selmon->pertag->curtag]); for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++); c = nexttiled(m->clients); nm = m->pertag->nmasters[selmon-...
[ "robpilling@gmail.com" ]
robpilling@gmail.com
9252115140d98a43ed94da0f60e769931b6f84e5
97e14c69363a9b3cdc1bd5e8f619f2ccf278deeb
/build/php7/ice/mvc/route/dispatcher/groupcount.zep.c
c5e6db1602edceabb82cd69bfe7ed09178e9917e
[ "BSD-3-Clause" ]
permissive
ajbm6/framework
bcd0132c67d208cdd3fc742048d617d1b5733ddf
865ab9a32dec647e786ee7abab527cbb384b58f4
refs/heads/dev
2021-01-15T11:03:54.325907
2017-05-20T19:40:19
2017-05-20T19:40:19
99,610,832
0
1
null
2017-08-07T19:07:27
2017-08-07T19:07:27
null
UTF-8
C
false
true
5,614
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 "kernel/object.h" #include "kernel/mem...
[ "info@iceframework.org" ]
info@iceframework.org
eb367f565e2d7960aa6d46d7ac1198674df9bee1
5b7d43971eae9f06b81d4c2ae37a12d667b696b3
/mudlib/cmds/wiz/qload.c
fd7e88a3009949a48c547fcdf6c8ee05dd75b969
[]
no_license
lostsailboard/fy4
cb6ad743fa0e6dec045e4d5c419b358888fc6a36
b79d809c6e13d49e8bc878302512ad0d18a3e151
refs/heads/master
2021-12-08T06:03:29.100438
2016-02-21T09:03:58
2016-02-21T09:03:58
null
0
0
null
null
null
null
GB18030
C
false
false
318
c
// qload.c inherit F_CLEAN_UP; int main() { write(query_load_average() + "\n"); return 1; } int help(object me) { write(@HELP 指令格式 : qload 这个指令显示出目前 CPU 的负担, cmds/s 是每秒编译几个 cmds comp lines/s 是每秒几行。 HELP ); return 1; }
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
e2189ffb3d1a58004cc5f5a06f1f320f5e8e2098
e62f40e93192fc8f135be5b6fdadc5f54d995823
/test_gnl.c
7e0edf15666535ef3972c3f16927cb8e75e0f743
[]
no_license
rjwhobbs/get_next_line
93e835c4cedf49dbecb35b07ea05f15436e69050
b9f23aff492ec8ae109a82b98c9417185bc4e38f
refs/heads/master
2020-06-04T14:23:03.285657
2019-10-24T05:36:15
2019-10-24T05:36:15
192,060,544
0
0
null
null
null
null
UTF-8
C
false
false
1,172
c
#include "./libft/libft.h" #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include "get_next_line.h" int main(int ac, char **av) { char *nline; int fd; int fd2; int status; int a; int sec; a = ac; sec = ft_atoi(av[3]); ft_putendl("Opening a file..."); if ((fd = open(av[1], O_RDONLY))...
[ "rhobbs@c4r15s7.wethinkcode.co.za" ]
rhobbs@c4r15s7.wethinkcode.co.za
a72da6fde8d694073694b2f393be2a4c49a9590a
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/bcd4bece-f47c-4181-928f-6b22099c8fa8.c
8921cf9c7a102a6f483b650a6fd802cbc91ad804
[]
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
523
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=42; int k; int l; j = 53; l = 64; k = i/j; l = i/j; l = i%j; l = i-j; k = k-k*k; //variables /* START VULNERABILITY */ int a; int b[21]; int c[75]; a = 0; do { /* START BUFFER SE...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
ac46ad63f302103be64a329582b6b222e8a3951b
ee68016ece4e04f7bdae29e476b22f4f117a0299
/numliteral.c
2eb3ae698883d35fe350bccc827c3b1ccf055c96
[]
no_license
LeeDongYun/20160766-c
796642f1ca9962414bcb2ff14e3f0e05c17b55e4
02fa18056c5f132108d3a6e00ebea4185088f528
refs/heads/master
2021-05-03T19:16:14.829380
2016-10-17T17:29:56
2016-10-17T17:29:56
69,153,883
0
0
null
null
null
null
UHC
C
false
false
495
c
/* 솔루션 / 프로젝트 /소스파일: Ch03 / prj11 / numliterals.c 정수형 실수형 리터럴 상수의 다양한 표현 V 1.0 2016. */ #include <stdio.h> int main(void) { printf("%d ", 30); printf("%d ", 10); printf("%d ", 030); printf("%d ", 010); printf("%d ", 0x2f); printf("%d\n", 0x1b); printf("%f ", 3.14); printf("%f ", 2.0); print...
[ "noreply@github.com" ]
LeeDongYun.noreply@github.com
bfa6efb261137ba9f92e8e7209a717af21ce805d
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant100521_tree-ssa-loop-ivopts.c
b977fb00cd0edd4aec8d240e256541ff411b4b8e
[]
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
140,707
c
/* Induction variable optimizations. Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either versio...
[ "agroce@gmail.com" ]
agroce@gmail.com
41094d90676b9eafbd1d1329007e30d6533421d5
c51bed254a7267c9541a80d186e14faff8a223c3
/SYS/TIM3.h
1c00f21e71871f20171d29fd312a3904c83ecb41
[]
no_license
ZH-player/STM32_GPS
b4d480335d045d83e8cfc3d239743a0cadb1e364
8f026b14bfc4140031f4c9c415e9ccac0b00836a
refs/heads/main
2023-07-28T14:46:32.013329
2021-09-10T01:04:46
2021-09-10T01:04:46
403,207,324
0
0
null
null
null
null
UTF-8
C
false
false
146
h
#ifndef __TIM3_H #define __TIM3_H #include"stm32f10x.h" void TIM3_Int_Init(u16 arr,u16 psc); void TIM3_IRQHandler(void); //TIM3中断 #endif
[ "ZHmsolone@outlook.com" ]
ZHmsolone@outlook.com
45a3699425d484f7d00afabce87318ddf827818f
9fffcb50346e2f49353bd68b46baab31c7edd519
/lib/gcc/arm-linux-androideabi/4.8.3/plugin/include/configargs.h
7009fea14ed1b831982090de3209aa4993dc4b39
[]
no_license
LinaroMod/sm-linaro-4.8
b58ca00fe2a42aceabc98666877e9b1e023f1786
b7e6d4ce64397576f57fb727445d45a0ed72ba4e
refs/heads/master
2016-09-10T09:38:26.649501
2014-03-16T14:35:34
2014-03-16T14:35:34
null
0
0
null
null
null
null
UTF-8
C
false
false
1,559
h
/* Generated automatically. */ static const char configuration_arguments[] = ".././../gcc/gcc-SaberMod/configure --prefix=/tmp/arm-linux-androideabi --target=arm-linux-androideabi --host=x86_64-linux-gnu --build=x86_64-linux-gnu --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --with-pkgversion=SM-Toolchain --with-...
[ "kecinzer@gmail.com" ]
kecinzer@gmail.com
7a91f96cf9ba683d2e39e94fdfd9579dd763b0be
677fb3667b96c8bd76e0030462fef7500a6b2625
/assessments/ch13/murder.c
d2f33fac460709592e7fb15eb240b5da63c9cfe9
[ "MIT" ]
permissive
paddureddy/Hands-on-System-Programming-with-Linux
734899dcc954897c43376300830c6213ee0aaa44
2fdc5fdb4b1940acb870eb4f898035df2df853d5
refs/heads/master
2020-03-28T20:45:06.978696
2018-09-12T06:52:56
2018-09-12T06:52:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,902
c
/* * Assesment Solution * ch12:murder.c * *************************************************************** * This program is part of the source code released for the book * "Hands-on System Programming with Linux" * (c) Author: Kaiwan N Billimoria * Publisher: Packt * * From: * Ch 12 : Signalling 2 ***...
[ "kaiwan.billimoria@gmail.com" ]
kaiwan.billimoria@gmail.com
17d12de03c43e63ebf81bea131637359156164c6
b060c7ef0f1b22ce4b22639b9807a8b0c24292cb
/main.c
9f99e21d1617d64cbc492d94b8167a3ab0082a1b
[ "MIT" ]
permissive
bjohnsonfl/Madgwick_Filter
290531815be933c14c7e43c16aa79b38197dd499
58322bd74052290828e76a0d0eb97bbf2a29a540
refs/heads/master
2022-07-20T12:41:16.158400
2022-07-17T20:28:11
2022-07-17T20:28:11
259,726,162
66
12
null
null
null
null
UTF-8
C
false
false
1,319
c
// // main.c // madgwickFilter // // Created by Blake Johnson on 4/28/20. // #include <stdio.h> #include "madgwickFilter.h" int main(int argc, const char * argv[]) { float roll = 0.0, pitch = 0.0, yaw = 0.0; // flat upright position to resolve the graident descent problem printf("\n\n Upright to solve...
[ "bjohnson293@ufl.edu" ]
bjohnson293@ufl.edu
e45f083dac076075088aa4e41c47a2f8154ca07c
c99a31c0a3db3d4715c100644df445ab89e1b144
/Final_CPU_Implementation/isim/SingleCycleCPU_isim_beh.exe.sim/work/a_0658286079_0521664330.c
93425235f397520b6cf5e0cecc76a99b5cd1c008
[]
no_license
anan-cn/OwnCpu
b8eeb05a9451cc3f6752888b59c76e685309085b
66f5fd0da4e6f88ddd1fc71484c0b0212ff927ed
refs/heads/master
2021-01-25T07:34:06.147501
2014-10-25T02:41:20
2014-10-25T02:41:20
null
0
0
null
null
null
null
UTF-8
C
false
false
5,400
c
/**********************************************************************/ /* ____ ____ */ /* / /\/ / */ /* /___/ \ / */ /* \ \ \/ ...
[ "ictzhailei@gmail.com" ]
ictzhailei@gmail.com
b41f164ff207615e13ce7469476d23d026682392
f992370500a1876cd4c501d2345b1a07cc11722c
/Algorithm_code/2616.c
25b6680ee5db7992b67d53398e8e7c755c3f1685
[]
no_license
tinwoon/baekjoon_algorithm
6103dcb9c277167911217ab754ee45c8a09cf257
e2b04d5804e06eab12c2a31662ac32a1e7cd59e9
refs/heads/master
2023-08-06T19:59:49.332962
2023-07-29T08:16:35
2023-07-29T08:16:35
238,623,718
5
0
null
null
null
null
UHC
C
false
false
1,296
c
#pragma warning (disable : 4996) #include <stdio.h> #include <stdlib.h> #include <string.h> #define max(a, b) a > b ? a : b //2616 소형기관차 문제 //점화식 작성하는데 까다로웠던 문제 //수학적 귀납법 적용을 통한 DP 문제로 index 설정을 N-1이 아닌 N으로 설정해야 원활한 풀이 가능 int N; int w; //k번 기관차에서 N까지 고려했을 때 int* dp[4]; //구간 합을 위한 배열 int* sum; int ret_sum(int first, ...
[ "tinwoon21@gmail.com" ]
tinwoon21@gmail.com
7f8276d4dac45f5ded5aed8036f49b7d8c873101
1958b55376bf54fea19e15863f9a27f8a9eacde9
/src/DSFMLC/Graphics/Export.h
e9c77d2a480bd8a2426e9bf06b3952591d249fde
[ "Zlib" ]
permissive
joelcnz/DSFML
97d4c5e0a3e3c61ab5da236988f6f93367152ae1
ed5170b9a2c8da89c05b94b7d5986c0718da04c3
refs/heads/master
2020-07-25T07:17:19.057362
2019-09-13T06:48:22
2019-09-13T06:48:22
null
0
0
null
null
null
null
UTF-8
C
false
false
1,233
h
/* * DSFML - The Simple and Fast Multimedia Library for D * * Copyright (c) 2013 - 2018 Jeremy DeHaan (dehaan.jeremiah@gmail.com) * * This software is provided 'as-is', without any express or implied warranty. * In no event will the authors be held liable for any damages arising from the * use of this software. ...
[ "dehaan.jeremiah@gmail.com" ]
dehaan.jeremiah@gmail.com
048636d3fad87d7f97075d14fe7db4b43e4c525f
f993e7fae9ea1d4bdaa9708fea401389604fbbd6
/index.c
902cec3f2778a5a823d61ee75546b5bdd78d3ae4
[]
no_license
EduardoJabour/Indexing_and_manipulating_strings
f0380c5a1f34bf393c70dec928e61bf6db0ac304
04cc7e4ccd8f161d5596e2925c9177aabf733259
refs/heads/main
2023-07-02T04:52:42.324863
2021-08-09T21:46:19
2021-08-09T21:46:19
394,446,887
0
0
null
null
null
null
UTF-8
C
false
false
10,760
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "index.h" int index_createfrom(const char *key_file, const char *text_file, Index **idx){ int qtdLinhas = 0, maiorLinha = 0, tamLinhaAtual = 0; char lineKey[17], auxOcorrencia[18]; int auxOccurrences = 0; char ch, *ocorrencia; int i, j, chaveInt...
[ "noreply@github.com" ]
EduardoJabour.noreply@github.com
f118f03bebd02e42387ebaffa1831c832f868504
d7084012e0760ee4bba0aa24b488217244fa5cd9
/제곱ㄴㄴ수.c
87edd88934be27c6829fd51a87b54e4dbe396441
[]
no_license
holoyolo88/algorithms-study
59d84651f1fcdc2f9831955b6f567f27a2c505d8
ea0396e9f9237b86022d1443e5725550d8883217
refs/heads/master
2020-03-21T02:08:47.707260
2018-08-29T12:47:19
2018-08-29T12:47:19
137,982,670
0
0
null
null
null
null
UTF-8
C
false
false
422
c
#include<stdio.h> #include<math.h> int main() { long long min,max; double sqrtmin, sqrtmax; int cnt=0; int i; scanf("%lld%lld",&min, &max); sqrtmin=sqrt((double)min); sqrtmax=sqrt((double)max); if(sqrtmin>(int)sqrtmin) sqrtmin = round(sqrt((double)min)+0.5); if(sqrtmax>(int)sqrtmax) sqrtmax = round(sqrt((double)max)...
[ "ansoh4025@naver.com" ]
ansoh4025@naver.com
5d45698d2a26bf722f626ca1c8186fc8a715bfe7
ec161ca395cd16231637a3d1311a7b88e3866918
/extensions/ASM/tDMR_detection/slide.h
5f1f056b8efa34fb80771779b1bcb3b059fa0b94
[ "MIT" ]
permissive
ShujiaHuang/HGPP
740ff2b24c743eb0de2bdc1348a3d3fcf1488dbb
aeb89ed8779d6c28cffee3e3bbc987dd6ec9a1ad
refs/heads/master
2021-06-29T14:05:14.594090
2021-06-09T08:27:58
2021-06-09T08:27:58
28,234,797
1
0
null
null
null
null
UTF-8
C
false
false
1,200
h
/* * Filename: slide.h * * Copyright (c) 2010, Chang Yu (yuchang@genomics.org.cn) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or *...
[ "huangshujia9@gmail.com" ]
huangshujia9@gmail.com
e331d1c4da44213b85a9e0aa5679f5abc5177fdd
baf3e9a85df4020264ff7e70a90196a61d4406e7
/scc/scc_dlfcn.c
6524b3ee9342a55af2c1dc2daab7d8c9088cfe12
[]
no_license
saolang/saolang
f280f84bd40ae27e911991dcfaee6c8a793df4f1
f799be15c6f6050a133bcb0b2ecb30fa88c584d7
refs/heads/master
2020-04-04T11:26:08.349165
2019-06-04T06:16:00
2019-06-04T06:16:00
155,891,014
3
0
null
2019-03-01T01:46:08
2018-11-02T16:11:44
C
UTF-8
C
false
false
11,222
c
//@ref //https://github.com/dlfcn-win32/dlfcn-win32 //TODO //scc_dl.h #ifdef _DEBUG #define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> #endif #define PSAPI_VERSION 1 #include <windows.h> #include <psapi.h> #include <stdio.h> #include <stdlib.h> #ifdef SHARED #define DLFCN_WIN32_EXPORT...
[ "wanjochan@gmail.com" ]
wanjochan@gmail.com
eba8809dab3a48710e253538a5e105a65a8ed012
6b83d5ecd75aa05eac3c01405a334bf8969c7c09
/rpl-exploration/sink-node.c
a9ac94d492eac4cf28a78773bfdf7a809f7c3baa
[]
no_license
josechuy123/iot-course-exercises
7abd292f79781e5e6c8db1fb8c9a3f82740977c4
c4fc57f33f01355a4fc737f1ad7d89b4312707e9
refs/heads/main
2023-09-04T00:19:17.781859
2021-10-03T21:51:13
2021-10-03T21:51:13
413,203,995
0
1
null
null
null
null
UTF-8
C
false
false
919
c
#include "contiki.h" #include "net/routing/routing.h" #include "net/netstack.h" #include "net/ipv6/simple-udp.h" #include "sys/log.h" #define LOG_MODULE "Sink Node App" #define LOG_LEVEL LOG_LEVEL_INFO static struct simple_udp_connection connection; PROCESS(sink_node, "Sink Node"); AUTOSTART_PROCESSES(&sink_node); ...
[ "jdiaz33@ucol.mx" ]
jdiaz33@ucol.mx
dc106e7dfc14512af95ea67945f0efeeefe4d38d
feeedc114fad26ee144a675a53c44451681b1039
/client/media_api_platform.c
ed50faf0b015286cdcbf598ded9c2a102acd3e0e
[]
no_license
sunrui/livezure
f6dca9782520ce8773d1e738d714f07491bde32a
0689afb146f0814e0a2626d8d9b30aea7013a273
refs/heads/master
2023-06-29T02:14:06.701841
2021-07-23T07:11:41
2021-07-23T07:11:41
388,709,998
1
0
null
null
null
null
UTF-8
C
false
false
2,380
c
/* * media module api logout processor * * @author rui.sun 2012-7-6 Fri 23:48 */ #include "media_api.h" #include "rpc_declare.h" #include <string.h> #include <stdlib.h> #include <assert.h> #include "rpc_request.h" #include "rpc_buffer.h" #include "rpc_keypair.h" #include "rpc_parser.h" #include ...
[ "sunrui@daliangqing.com" ]
sunrui@daliangqing.com
9d65dc0ddfac8dd7ff7cfc0dca40583f32ecafd1
189e12db316e3d2a8493632a3ca440a670834757
/src/limited_increment.c
cb85b616b3c028e12d6734885546e60825dbc7c4
[ "MIT" ]
permissive
VectorSoftwareRI/atg_small_demo_src
c51ab5d00d03793327f9677c62d9abb5a9e893c1
2ef4e39168535735fe1f90fe92359b74d6775e22
refs/heads/master
2022-04-24T18:15:34.062233
2020-04-30T17:22:42
2020-04-30T17:22:42
259,934,321
0
0
null
null
null
null
UTF-8
C
false
false
1,531
c
/****************************************************************************** * The MIT License * * Copyright (c) 2020 Vector Informatik, GmbH. http://vector.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to ...
[ "andrew.jones@vector.com" ]
andrew.jones@vector.com
ee2fb76be52d9fbb3495cee3bccf67e089791463
a860e04e5ee3dbce1dc4a737dcf23b315cfd50ab
/usr/include/riscv64-linux-android/asm/auxvec.h
40ed24a6aff80b2a3e3fa27bec049ed051823bb0
[]
no_license
metarutaiga/ndk
b6f9d786ebcab0a35e9fd70bff54247fb900e202
21866237d76e06425042edbe5d4dca3f0210ab65
refs/heads/master
2023-05-30T10:14:02.141844
2021-06-22T08:11:31
2021-06-22T08:11:31
361,368,111
0
0
null
null
null
null
UTF-8
C
false
false
1,075
h
/**************************************************************************** **************************************************************************** *** *** This header was automatically generated from a Linux kernel header *** of the same name, to make information necessary for userspace to *** call i...
[ "@" ]
@
f2c3e980cfdcdb2b364544f7d9d12dfffff2cefc
99473ce63651b3c7ecebd710c461f3132ac8fb86
/tests/usr.bin/xlint/lint1/parse_init_declarator.c
22300a1cfb583035530817ad2b607ef4f2414b11
[]
no_license
knakahara/netbsd-src
587f96adb3410b610af53678b33a65c0513e6780
c5a9c1a05417ac99d392cf3f584ebca543e1666a
refs/heads/master
2022-10-16T14:52:08.254657
2022-09-14T20:39:23
2022-09-14T20:39:23
19,729,754
0
1
null
2015-10-02T02:35:21
2014-05-13T07:26:04
null
UTF-8
C
false
false
1,119
c
/* $NetBSD: parse_init_declarator.c,v 1.3 2021/07/25 22:03:42 rillig Exp $ */ # 3 "parse_init_declarator.c" /* * Test parsing of init-declarator, which occurs as part of a top-level * declaration. * * See also: GCC, c-parser.cpp, function c_parser_declaration_or_fndef. */ int global_var; int *init_declarator_wi...
[ "rillig@netbsd.org" ]
rillig@netbsd.org
fb8ed7c8a9f2bff0e17f999f9d03761a7d6ffee7
5a91fb392126adccf731b7edf3bc2c15f3f0bcc5
/gen_trace_lru_test.c
7b11ca8d5a58b81a6c24b2585da6bc866d850a14
[]
no_license
brooksche/Cache-Simulator
049026cc2b763c81bc84c8392ea7e247975a84e9
b1242142ffc43e78f5f50453dd7527c590776105
refs/heads/master
2021-07-10T10:04:15.074973
2017-10-08T01:45:11
2017-10-08T01:45:11
null
0
0
null
null
null
null
UTF-8
C
false
false
615
c
//Determining the Linesize=64Bytes // By Making Condition //- Accessing all the 64Bytes for the Particular- Tag, Index; //32bit CPU address // 6bits for Byteselect // 15 bits for Index // 11 bits for Tagbits #include<stdio.h> int main() { FILE *fp; fp = fopen("tra...
[ "haranadhmailbox@gmail.com" ]
haranadhmailbox@gmail.com
0c717205233ffc9652a51e379d5bd594ca55e894
00ee60e68c620faa2745919efd894230d6cdeb4a
/tests/test_failures.c
23dd0b345a8f1dc0335cb13b2113f9c22070c6bf
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain", "BSD-3-Clause" ]
permissive
bereal/omcache
4486711e82056475cecffd7db32064f98aefaf42
5354225ee48a703e3bd8b268f7ccc125ccae2446
refs/heads/master
2021-01-17T19:23:00.425374
2014-12-08T21:57:00
2014-12-08T21:57:00
null
0
0
null
null
null
null
UTF-8
C
false
false
7,768
c
/* * Unit tests for OMcache * * Copyright (c) 2014, Oskari Saarenmaa <os@ohmu.fi> * All rights reserved. * * This file is under the Apache License, Version 2.0. * See the file `LICENSE` for details. * */ #include "test_omcache.h" #include <signal.h> #include <unistd.h> #include <sys/types.h> #define TIMEOUT ...
[ "os@ohmu.fi" ]
os@ohmu.fi
54c906ee172c77a7025a949b3ec7018b315d7213
64cb93a59f753b6b66417c3e6276aacad0ce6ac8
/include/userLogicFunction.h
cc101dbc2fb43013ee475df5d2b96769aaad57da
[]
no_license
baby706/lottery
eabc84939d9c5c98f0af0981d40eb0e8ac0b81ea
c7707b6f702372e6676d629bb448d27359360d12
refs/heads/master
2020-07-03T09:35:12.660114
2016-11-19T06:55:11
2016-11-19T06:55:11
74,180,211
0
0
null
null
null
null
UTF-8
C
false
false
837
h
/************************************************************************* > File Name: userLogicFunction.h > Author: Liang Bo > Mail: cs-b@163.com > Function: > Created Time: 2016年08月12日 星期五 16时45分07秒 ************************************************************************/ #ifndef USERLOGICFUNCTION_H #define ...
[ "cs-b@163.com" ]
cs-b@163.com
cdcffa6a8a00d8f9d4d7d13c45cdc458128c39fa
1055d9b6196e98fa1635b44d372a35dc4e75f52d
/ft_strnstr.c
b9a83fde9d53f1ac3d0824208862cab0bb2995a0
[]
no_license
Martydl/2.Libft
eed07827ba01846c8f241ef4e20fb7646bf561cf
d133f68b018742270932482ff1228b611f4376ed
refs/heads/master
2020-04-15T12:02:56.368449
2019-09-17T08:53:56
2019-09-17T08:53:56
164,657,565
0
0
null
null
null
null
UTF-8
C
false
false
1,277
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strnstr.c :+: :+: :+: ...
[ "mde-laga@e3r1p11.42.fr" ]
mde-laga@e3r1p11.42.fr
20ee3c3f2c4ad2b625d719d30829797be375097e
c5ab18ed0e400cab3aed75b49ea59b8be045f9a6
/ep2.3/sie-dev/SieJC/vCard.h
e856b9ca149741d6c1d85092aec08b66f06e23cb
[]
no_license
mksy/st_hunter
c1ff271802432558f3de9ef5a38e9eb8eb9110cb
99516820b63b454a5fcc58cd4568dd07cf05259b
refs/heads/master
2022-04-08T15:00:17.674144
2020-03-04T07:23:05
2020-03-05T09:33:47
null
0
0
null
null
null
null
WINDOWS-1251
C
false
false
859
h
/* SieNatJabber Project Функции работы с vCard Работа с присланной нодой vCard, сохранение фотки */ #ifndef _VCARD_H_ #define _VCARD_H_ #include "xml_parser.h" // Создание чистой vCard VCARD Create_vCard(); // Освобождение памяти из-под vCard void Free_vCard(VCARD vcard); // Получить...
[ "korekovtsevda@lad24.ru" ]
korekovtsevda@lad24.ru
52cec90a0d4382d60915fcdd11139bcc568805a0
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/printscan/faxsrv/src/faxverify/faxvrfy/macros.h
389bb6f22be7b681bce9f5be7c56e28a07d491bc
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C
false
false
1,001
h
/*++ Copyright (c) 1997 Microsoft Corporation Module Name: macros.h Abstract: This module contains the global macros Author: Steven Kehrli (steveke) 11/15/1997 --*/ #ifndef _MACROS_H #define _MACROS_H HINSTANCE g_hInstance = NULL; // g_hInstance is the handle to the instance HAN...
[ "112426112@qq.com" ]
112426112@qq.com
433551b98f3c3b790e9d0d37da3e6f522c656990
78c7de86b2db815a1d5a782234488967c71b67a5
/assignment-7/src/rectangle.h
6314228b55727cb139d71c0fda8adbf489dade52
[]
no_license
crownwcg/CS5001
316e08fa5f5360000a32c575c6ff9f21072a92c7
b769179c83237480344d024e74911697cd45b350
refs/heads/master
2021-04-03T01:34:47.206485
2018-03-12T17:22:51
2018-03-12T17:22:51
124,924,974
0
0
null
null
null
null
UTF-8
C
false
false
962
h
/* * rectangle.h * * Created on: 2017年10月3日 * Author: Crown */ #ifndef RECTANGLE_H_ #define RECTANGLE_H_ #include "point.h" #include "circle.h" /** * Define and typedef a struct Rectangle that contains a Point variable origin that * is the top left corner of the rectangle, and two double variables width...
[ "crownwcg@hotmail.com" ]
crownwcg@hotmail.com
9e706ff1285f9773a4f6d2df3fabce37ab5dd48f
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/libgcc/config/pa/sfp-machine.h
fef9314cbf6c0b1321f2e6b399e1a9281eb64947
[ "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", "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
5,085
h
/* softfp machine description for PA-RISC. Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is part of GCC. GCC 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, or (at your op...
[ "rink@rink.nu" ]
rink@rink.nu
9afd8d60f0628404715e6d97da4e06f1351a4695
c3e5a8da4c78944fbf2e527d0466c1db6f4a03f9
/XM'91_92/gausshex.c
774ffe0af5eb391e871487f61eb42aefaa7dc4f0
[ "MIT" ]
permissive
rene-d/souvenirs
631bb285da37ea62d0ecfede152006fd2650a5dc
b899f5ae910f2ab42f2328cff38f6e0a51dc1c9a
refs/heads/master
2021-01-22T09:40:35.422180
2018-07-13T10:26:49
2018-07-13T10:26:49
75,480,790
0
0
null
null
null
null
UTF-8
C
false
false
7,193
c
/* GAUSSHEX.C version 1.0 du 19 octobre 1991 Turbo C++ sous MSDOS 5.00 (c) René DEVICHI 1990, 1991 Formule de Gauss: π=48*Arctan(1/18)+32*Arctan(1/57)-20*Arctan(1/239) Méthode de calcul: ■ Le développement en série entière d'Arctan donne: Arctan(1/t)=t∙Σ (-1)ⁿ∙(1/t²)^(n+1...
[ "rene.devichi@gmail.com" ]
rene.devichi@gmail.com
283be5cb0b4e493fa02b8a121c7782d2c5c01772
b20d02a7f75e0d23b113973f87bf0ddc0fa3819c
/K-R/chapter4/PrimitiveCalcutor/PrimitiveCalcutor.c
299b825d50f814f2166e5f21764597223d283120
[]
no_license
zhuqiuzhi/Book
1d1335ee5b3e8ed6f5acce89d722772abd88e64c
c55d3da0062ee9895be325e5f56684d2b5707e39
refs/heads/master
2021-01-24T04:07:43.006346
2017-01-08T07:19:58
2017-01-08T07:19:58
43,997,842
1
0
null
null
null
null
UTF-8
C
false
false
396
c
/* * File Name: PrimitiveCalcutor.c * Author: qiuzhi zhu * Mail: zhuqiuzhi91@gmail.com * Created Time: 2015/03 */ #include <stdio.h> #include <stdlib.h> #define MAXLINE 100 int main() { double sum; double atof_k(char *s); char line[MAXLINE]; int getline_k(char line[], int max); sum = 0; while (getline_...
[ "zhuqz@zhuqz-Ubuntu.(none)" ]
zhuqz@zhuqz-Ubuntu.(none)
7cdd02589f73b7afa1bdc0dc7a7a51e6421a5e12
c3665ff6c2dc0bacb6e88ae02fc60b1a904fc30b
/nginx_code/nginx-1.8.0/src/site_builder_module/site_builder_module.c
d81ebec1a6f2761c7024a215066987beaa4d0c4b
[ "BSD-2-Clause" ]
permissive
lcglcglcg/code
875254eacc6d69461c5cfdd07071fa46020e2189
d43868276f8af575a26506e0ea93b31776d2dd74
refs/heads/master
2021-01-17T21:00:36.409929
2016-06-12T08:58:45
2016-06-12T08:58:45
60,957,307
0
0
null
null
null
null
UTF-8
C
false
false
4,316
c
#include "site_builder_module.h" static void *ngx_site_builder_module_create_loc_conf(ngx_conf_t *cf); static char *ngx_site_builder_module_init_loc_conf(ngx_conf_t *cf, void *parent, void *child); static char *ngx_site_builder_module_command_init(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); static ngx_in...
[ "root@lichunguangdeMacBook-Air.local" ]
root@lichunguangdeMacBook-Air.local
b51f6a97c302cc4e631e73554ba962a8bb50be3b
e465e990d6bff61b54073c0615fb02db1462624b
/glut_exemples/Lumieres/PremiereNotion.c
5247552e1c0de4fa0f737dcdab652cca6110050e
[]
no_license
Nerisson/laughing-bimbo-shame
591de660123516a13827184ea5ab9f95420bf34f
0c0b0f6bbe7b8bc181f2809d799a1648aefb169f
refs/heads/master
2020-06-04T15:34:35.742751
2015-05-15T14:17:11
2015-05-15T14:17:11
30,719,670
0
1
null
null
null
null
ISO-8859-1
C
false
false
6,988
c
#include <math.h> #include <GL/gl.h> #include <GL/glu.h> #include <GL/glut.h> #include <stdio.h> #include <stdlib.h> /* Fonctions Prototypes */ GLvoid Initialise( char * ); GLvoid DrawScene( GLvoid ); GLvoid DrawGrid(GLvoid); GLvoid Keyboard(unsigned char , int, int); GLvoid Mouse(int,int,int,int); GLvoid MouseMove(...
[ "jean-paul.sky@laposte.net" ]
jean-paul.sky@laposte.net
3600f366935058aae993fc7f016f941f00db7e44
11cd2178ee02bafe228a27f8e51f47e2471b338e
/arrayExpansion.c
b9a69254ff38004b402cb86e954af133797364de
[]
no_license
mvcrouse/FastMultiplication
360c2fdce117d24894adc28fae145d4c530cd30c
1d11d03ce0c60f8baa0dd3714d50efa1a635da29
refs/heads/master
2021-01-23T03:04:00.982058
2020-06-03T15:15:20
2020-06-03T15:15:20
28,645,619
0
0
null
null
null
null
UTF-8
C
false
false
876
c
//this function serves to move over digits, similarly to multplying by the base, except because the number is //in array format you have to handle digit movement manually int* expand_array_left(unsigned int *array_a, int old_size, int new_size) { unsigned int *ret_a = malloc(new_size * sizeof(int)); memset(ret_a, 0...
[ "mvcrouse@indiana.edu" ]
mvcrouse@indiana.edu
d0b8270c811a954d4e6009e795fcba51979dcb0c
80999df7d43a7521609338975a904113776a8c4f
/libs/libmme/MmpDecoder/cnm-coda8550j-ref_sw_pkg-v1.6.5/src/mixer.c
31eacdecedeed05bedb59c48fb163a2c778daf15
[]
no_license
tifler/gdm-test-platform
30b766552049ef910ee0ac57ca7adee28087d26f
e24b897429fea8fae8cad7391f523a4f0451f4e7
refs/heads/master
2020-09-28T15:03:35.560597
2015-11-24T00:57:24
2015-11-24T00:57:24
226,801,120
0
0
null
null
null
null
UTF-8
C
false
false
18,966
c
//------------------------------------------------------------------------------ // File: Mixer.c // // Copyright (c) 2006, Chips & Media. All rights reserved. //------------------------------------------------------------------------------ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "...
[ "hthwang@anapass.com" ]
hthwang@anapass.com
33dc31f751eff5360757194feb5ff2b3187877f8
7b1c3105efead37fcef75a0d7201faa880a56b0d
/src/message_def.c
2eafda87ccfc0fc139ca5d67120290d4cd3a6f88
[ "MIT" ]
permissive
madwyn/libcodemsg
74c383a1181a70fa8d62e2f21a63f9d4d85c6295
7687954983fb9e736cabaa69620c4d0bb51e8360
refs/heads/master
2021-01-10T07:49:51.087225
2015-10-28T12:24:16
2015-10-28T12:24:16
44,249,182
0
0
null
null
null
null
UTF-8
C
false
false
384
c
#include "message_def.h" static const char* _g_messages[MSG_NUM] = { #define DEF_MSG(code, msg) msg, #include "message_def_header.h" #include "message_collection.h" #include "message_def_footer.h" #undef DEF_MSG }; const char* get_message(MSG_CODE code) { if (code < MSG_NUM) return _g...
[ "madwyn@gmail.com" ]
madwyn@gmail.com
40453fbbe2a34d65b55c619ef5f27d5e77790a1d
81b2ea2245fea7eb216122cfa60b448dc1d38a9f
/EmbV3/User/app/Module/Shoulder/Shoulder_Cmd.c
956ee43a2b763a0dce11f79056f397713b5350f6
[]
no_license
plingx/EmbSystemProject
408df1d540688c2c4a93f34593e24f3fc5b5f26d
3a625cd69519680886726597dd8d7789e5854267
refs/heads/master
2022-12-18T19:05:33.021450
2020-09-26T14:08:11
2020-09-26T14:08:11
298,782,378
0
0
null
null
null
null
GB18030
C
false
false
46,501
c
/** * 版权所有(C) 2017 - 2022. 北京一维弦科技有限公司. 著作人保留所有权利. * * 本文件包含部分Ewaybot Operating System(EwayOS)代码,为开源代码,在遵守BSD 2-Clause License的前提下, * 开发者可再发布软件或以源代码及二进制形式使用软件,包括进行修改或不进行修改。 * 公司通信地址:北京市海淀区北三环西路48号北京科技会展中心1B座16L * * @file Shoulder_Cmd.c * @brief 本文件的概要说明. * @details 本文件的详细说明. * @author * @version 0.0.1 * @date 2018-01-...
[ "pligx2015@163.com" ]
pligx2015@163.com
befef913f50fed62ea575ec0c14a92ae9de96429
b5c199f16c2454101032b58dbf3a37bd0685f956
/array.h
d72d5a0d418ed0b15f793ff5c5960efee1e6fa52
[]
no_license
zodinyac/DHP
a348c6aeefabf763d4454d662d6098eb1063b27d
f6e3994645120470401fe14ffbc8eec70dc886e3
refs/heads/master
2021-01-11T04:56:19.267584
2016-12-18T00:47:52
2016-12-18T00:47:52
76,755,332
0
0
null
null
null
null
UTF-8
C
false
false
5,289
h
/* * Nikita Belov <zodiac.nv@gmail.com> * 2016 */ #ifndef ARRAY_H #define ARRAY_H #include <stdint.h> #include <stdlib.h> /* Use: array(typename) array = array_new(ARRAY_VECTOR, typename). */ #define ARRAY_VECTOR -1 /* Use to indicate these arrays. */ #define array(type) type * /* Internal use only. */ #define ...
[ "zodiac.nv@gmail.com" ]
zodiac.nv@gmail.com
32ad33efd1b2ed8e0e154c0483fbdf6c29e3cf60
ecb6dddb36273883209181de6807331a17f1173f
/kernel/include/dennix/fcntl.h
654615b2fd81a255326682712797759ba7d6d177
[ "ISC" ]
permissive
seriocomedy/dennix
ddc12f187e451664179c20b4b3ba9ff6b1948da7
a71ed3d7f5b7a36f5a028839c713fe0239595160
refs/heads/master
2022-10-01T16:30:32.034513
2017-08-20T15:42:36
2017-08-20T15:42:36
null
0
0
null
null
null
null
UTF-8
C
false
false
1,450
h
/* Copyright (c) 2016, 2017 Dennis Wölfing * * Permission to use, copy, modify, and/or 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" AND THE AUTHOR D...
[ "denniswoelfing@gmx.de" ]
denniswoelfing@gmx.de
c05fca43530e558973fdd77114b05ad2e71d8b85
8578c74b807d0fc323d002bfbdb99fd102e2461a
/Projects/STM32091C_EVAL/Applications/STemWin/STemWin_HelloWorld/Inc/stm32f0xx_hal_conf.h
e8ff765a733429332a3845f958aa009a9a094cf0
[ "BSD-2-Clause" ]
permissive
karolinaM/stm32f091
5eaa40ecc52962930f913a3d26927564b200ff69
954ba2bb0126eb621e8aa643b5e3c542f2445747
refs/heads/master
2021-01-21T07:53:09.437921
2015-05-26T05:39:57
2015-05-26T05:39:57
35,614,889
0
0
null
null
null
null
UTF-8
C
false
false
11,284
h
/** ****************************************************************************** * @file stm32f0xx_hal_conf.h * @author MCD Application Team * @version V1.2.0 * @date 05-Dec-2014 * @brief HAL configuration file. ****************************************************************************** * ...
[ "karolina.majstrovic@gmail.com" ]
karolina.majstrovic@gmail.com
72e924d8ce83777f1aea725c430135d1cdd4314e
2bccb81ce7afe924d6d785ead0bd11dfd8214f08
/libft/ft_strsub.c
398e0106200830e9ac2e73e0c3d761971ccd0eb0
[]
no_license
helamri/1337_projects
9713d50b8ef512c0bed279d61c6a5098ce3dfc7c
c134c765c43c907a9488e240f6da40239dd12686
refs/heads/master
2023-01-10T06:44:12.046927
2021-06-20T20:28:20
2021-06-20T20:28:20
210,366,519
0
1
null
2022-12-22T05:23:12
2019-09-23T13:46:51
C
UTF-8
C
false
false
1,111
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strsub.c :+: :+: :+: ...
[ "elamri.hamza@outlook.fr" ]
elamri.hamza@outlook.fr
013f209c703494548a769601548fa815360ceb0b
e32e7ae815e7ecb82ae5784b420afd73a45f38e1
/Iermu-Player/src/recorder.h
a8e057ac6b6146bbe97a9a5c765c749eb46dd3bd
[]
no_license
jiangshaoning/Iermu-Win
e08e092e192c274e7208045f77cb54e5a3299f64
cf1d2c2ec4857803feaf2fa33bad8f06af3b662e
refs/heads/master
2020-03-26T07:32:01.989053
2018-08-14T09:55:56
2018-08-14T09:55:56
144,658,991
1
0
null
null
null
null
GB18030
C
false
false
417
h
#ifndef __FANPLAYER_RECORDER_H__ #define __FANPLAYER_RECORDER_H__ // 包含头文件 #include "stdefine.h" #ifdef __cplusplus extern "C" { #endif #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" // 函数声明 void* recorder_init (char *filename, AVFormatContext *ifc); void recorder_free (void *ctxt); int reco...
[ "jiangshaoning@iermu.com" ]
jiangshaoning@iermu.com
6640d5b443a833c5ed780ec16903d2c9d7578fbc
491569a6a745b695ad786f142aa1c83cb1e50e93
/src/qs8-igemm/gen/1x16c2-minmax-gemmlowp-neon-mull-padal-dup.c
2e154a74c99472479fde97e1469a092d78718d5d
[ "LicenseRef-scancode-generic-cla", "BSD-3-Clause" ]
permissive
isabella232/XNNPACK
80793b9b8dc944c7d1ae4087c5d5abe8da859f87
16d79edc423d0a622b190cbfc6703c39ca2c0097
refs/heads/master
2023-06-07T14:15:33.093710
2021-06-17T20:25:46
2021-06-17T20:26:35
null
0
0
null
null
null
null
UTF-8
C
false
false
13,441
c
// Auto-generated file. Do not edit! // Template: src/qs8-igemm/c2-neon-mull-padal-dup.c.in // Generator: tools/xngen // // Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include ...
[ "xnnpack-github-robot@google.com" ]
xnnpack-github-robot@google.com
025b8c52cb43c93e7eab8e0cf4d4dde4804481c3
b85cea9a2ed0cdffc4c530c8c06be7ae46a961b4
/RTE/_Target_1/RTE_Components.h
aef35f89657109ce6a2bbf4f8358a165b4a2697b
[]
no_license
kenankaric122/STM32F103C8-ADC-with-OLED
3c5f666f4add1f5181753b1a9e55f2799b4ae85b
dadd5bc492a2866b321791c9f784b8c175fc64ce
refs/heads/main
2023-09-03T03:56:18.516479
2021-11-21T19:14:03
2021-11-21T19:14:03
null
0
0
null
null
null
null
UTF-8
C
false
false
335
h
/* * Auto generated Run-Time-Environment Configuration File * *** Do not modify ! *** * * Project: 'adc' * Target: 'Target 1' */ #ifndef RTE_COMPONENTS_H #define RTE_COMPONENTS_H /* * Define the Device Header File: */ #define CMSIS_device_header "stm32f10x.h" #endif /* RTE_CO...
[ "noreply@github.com" ]
kenankaric122.noreply@github.com
bcb92e94bd594d4331c710d5c11e6f2f4cdc0b4f
de3b5280d3d3682b4b0af643cef694e7fbbc3fbc
/message_queue_character_driver.c
47de1f4b3a8950337f97fd057b590b9576e07dc9
[]
no_license
CuriousGeorgiy/message-queue-character-driver
b5a7835335102cd3bf3e58200ae78a28a7c5cacc
b0dffba773748c20f5e931c50d52883ce12af62f
refs/heads/master
2023-05-02T17:19:07.159094
2021-06-02T08:21:15
2021-06-02T08:21:15
353,608,168
0
0
null
null
null
null
UTF-8
C
false
false
7,587
c
#define pr_fmt(fmt) "%s:%s(): " fmt, KBUILD_MODNAME, __func__ #include <linux/fs.h> #include <linux/init.h> #include <linux/kthread.h> #include <linux/miscdevice.h> #include <linux/mm.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/slab.h> #include <linux/uaccess.h> MODULE_AUTHOR("Georgiy Lebede...
[ "noreply@github.com" ]
CuriousGeorgiy.noreply@github.com
b99c0ff8e8b3ebaf1cb59b9fe6a21cd3736bddbb
e841f44d4713c9fc47f852fe077849000f0c8a4a
/external/iup-3.16_Win64_mingw4_lib/include/iupluaole.h
9a0ad088d4489e978e3e10f6d1bfb5b80e0649e4
[ "MIT" ]
permissive
yantongl/clumsy
e22d053ede7158e48581e3a017ccca1a6efe6830
6137702c795d01517eac4caeaf6c75d82672f4f7
refs/heads/master
2021-01-25T13:58:48.032669
2018-03-03T00:59:27
2018-03-03T00:59:27
123,634,786
2
0
MIT
2018-03-02T23:23:45
2018-03-02T21:52:15
C
UTF-8
C
false
false
360
h
/** \file * \brief Binding of iupolecontrol to Lua. * * See Copyright Notice in "iup.h" */ #ifndef __IUPLUAOLE_H #define __IUPLUAOLE_H #ifdef __cplusplus extern "C" { #endif #ifdef LUA_NOOBJECT /* Lua 3 */ int iupolelua_open(void); #endif #ifdef LUA_TNONE /* Lua 5 */ int iupolelua_open (lua_State * L); #end...
[ "jagt@live.com" ]
jagt@live.com
1a56e70bc083239d849aefa09d520c4ba6415fad
901b4610dc1eab12acf653eb6e8d3c4945e54e92
/Loops and Whiles/PrintCurrency.c
0ad139f7cae14487b0538fabf9c719528c32f350
[]
no_license
ychenhq/C--some-basics-while-learning
1648c5c1e3c6076050c0df06c1477aba026d3735
0968082089b1458b1936ba78f003e95087d56d32
refs/heads/main
2023-07-04T04:12:30.568025
2021-08-11T03:08:42
2021-08-11T03:08:42
null
0
0
null
null
null
null
UTF-8
C
false
false
683
c
#include <stdio.h> void printcurrency(double amount) { printf("$%9.2f", amount); } int main() { // Print the monthly spending with a formatted amount // using a function. printf("My Monthly Spending\n\n"); printf("%-20s", "Food"); printcurrency(70 * 30); printf("\n"); ...
[ "noreply@github.com" ]
ychenhq.noreply@github.com
c0cf0a99e77ecfc4a660182e2b9384cd233c04dd
b54a39b7cfcae90d5d27e3f10ba2ec50cf4a60b5
/src/realpath.c
6c0c9f3c12d299e8b843f21e9a7b12d2ca1b681f
[ "MIT" ]
permissive
pyenv/pyenv
473f53bc5868fae284d0fc31ee3b7b41710ebc21
91002438663065266207ab74de7e37d6ab8f3890
refs/heads/master
2023-09-05T02:25:26.219811
2023-08-30T18:16:25
2023-08-30T18:16:25
5,625,464
28,579
3,249
MIT
2023-09-14T08:34:28
2012-08-31T06:57:52
Roff
UTF-8
C
false
false
832
c
#include "bash.h" #include <stdlib.h> #include <stdio.h> int realpath_builtin(list) WORD_LIST *list; { int es; char *realbuf, *p; if (list == 0) { // builtin_usage(); return (EX_USAGE); } for (es = EXECUTION_SUCCESS; list; list = list->next) { p = list->word->word; realbuf = realpath(p, NULL); if (rea...
[ "peek824545201@gmail.com" ]
peek824545201@gmail.com
1a9fe473f3ec7a0686abcb2f5187621289826ae8
4e5d752b5cb443c5bff0ec66f8c17538828c60d1
/def/map_area_earth.c
ad51d41adf80486d5894a2d3f9e8798199845611
[]
no_license
JensenDied/Sinbyen
7c0cb2387b707661ffa91cdb9881281f5862e0db
a061fa1923b7bd50b3becb2c397f77c22fc2e51b
refs/heads/master
2021-01-18T03:15:08.349442
2014-04-19T05:41:45
2014-04-19T05:41:45
18,931,868
0
1
null
null
null
null
UTF-8
C
false
false
519
c
#include <Sinbyen.h> #include <room.h> inherit Sinbyen_Definition("Map_Area_Base"); void configure() { ::configure(); set_map_feature_name("earth"); set_map_feature_summary("the earth"); add_map_feature_terrain(Terrain_Solid); set_map_feature_access(Move_Access_Tunnel); set_map_feature_exposure(Exposure_None);...
[ "generalkenobi_2@hotmail.com" ]
generalkenobi_2@hotmail.com
edd23005133764cbf1217df2c331bea08ea46252
4b346f53f920df8d2c4f876313a64942bb9a61c7
/driver_and_test/28-linux-i2c/5th_device_driver_test/at24cxx_drv.c
d372ebf7056d46ce0289705162868c120c7a3594
[]
no_license
zzb2760715357/100ask
23480ae89a97b7c9d69e1c812e307e91a4d0cfb8
2df95018ed04f8855866133d5c7ef028188f393a
refs/heads/master
2020-03-23T01:21:19.595340
2020-03-22T15:20:59
2020-03-22T15:28:59
140,912,788
20
17
null
null
null
null
UTF-8
C
false
false
2,666
c
#include <linux/errno.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/platform_device.h> #include <linux/i2c.h> #include <linux/err.h> #include <linux/regmap.h> #include <linux/mfd/88pm860x.h> #include <linux/slab.h> #include <linux...
[ "2760715357@qq.com" ]
2760715357@qq.com
36833e77a22db9998cb6c9fcef22a4b67415cc35
3db5ab89c02e6e12f591d4584817a700a9bbd361
/光电脉搏第一版/脉搏程序-旧版-展示用/STM32/STM32F429主板/User/spi/bsp_spi_dma.h
ad0b2474ca520f0f9a9009a9e026469ad6a0288d
[]
no_license
tyx918/pluseSystem
3b732e5e9386c8d1601ce411b105993bec5eaef9
7d94aa772555029a19f34157ed6c7b6002a06ddd
refs/heads/main
2023-01-24T16:18:30.428395
2020-12-17T03:45:15
2020-12-17T03:45:15
null
0
0
null
null
null
null
UTF-8
C
false
false
264
h
#ifndef __BSP_SPI_DMA_H #define __BSP_SPI_DMA_H #include "stm32f4xx.h" #include <stdio.h> #define AD_BUFF_SIZE 8*1024*2 #define WIFI_BUFF_SIZE 1024 void spi_ad_dma_config(); void spi_wifi_dma_config(); void DMA_Write_buf(); #endif /* __BSP_SPI_DMA_H */
[ "5173899+tanyongxiang@user.noreply.gitee.com" ]
5173899+tanyongxiang@user.noreply.gitee.com
9aaffc5707e4968645ac9b19a61d12dd1b91bcd4
aa1529f689a962f5af337cb4476e0b8908396e2a
/usr.sbin/smtpd/smtpd.h
f39a5f104d778f45f72dfd1922f0c4d601bd4442
[]
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
44,571
h
/* $OpenBSD: smtpd.h,v 1.660 2020/12/31 08:27:15 martijn Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * ...
[ "programmer@netzbasis.de" ]
programmer@netzbasis.de
bf70ab71536847950c43f6c330747d59c5bf0053
aba10e15d4e0e39d5904045820cc1fcb11931990
/bundle/nginx-1.19.9/src/core/ngx_resolver.c
6d27b93670be2db249bf565b8c31cc4482c693e2
[ "LicenseRef-scancode-ssleay", "MIT", "BSD-3-Clause", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "LicenseRef-scancode-pcre", "LicenseRef-scancode-public-domain", "Zlib", "BSD-2-Clause" ]
permissive
khalv786/openresty-1.19.9.1
0d73021851d5e6cf020540bf4ea6b412e5aadc66
92b461fcc91652ef5436f213604f15fada112070
refs/heads/master
2023-08-05T16:53:25.894921
2021-10-06T12:23:22
2021-10-06T12:23:22
414,199,643
1
0
null
null
null
null
UTF-8
C
false
false
113,178
c
/* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #include <ngx_config.h> #include <ngx_core.h> #include <ngx_event.h> #if !(NGX_WIN32) #include <resolv.h> #endif #define NGX_RESOLVER_UDP_SIZE 4096 #define NGX_RESOLVER_TCP_RSIZE (2 + 65535) #define NGX_RESOLVER_TCP_WSIZE 8192 #if !(NGX_WIN32)...
[ "khalid.khan-cic-ukibm.com@sig-9-145-14-30.uk.ibm.com" ]
khalid.khan-cic-ukibm.com@sig-9-145-14-30.uk.ibm.com
e13b20a7c070ebcce63c689dbee5508491ef15b5
c11c26c9ac5dda61370e76bbde01f8a02562f1b9
/Archive/nrf5_gcc_mesh/components/serialization/connectivity/codecs/ant/serializers/ant_channel_radio_freq_set.c
caec39ca53c955094c601aeec713da472bd59df0
[ "MIT" ]
permissive
aberke/city-science-bike-swarm
79fc688e319e471889faf3185a4e0e0ccf79312e
7029673c54bb34ae49ec57be36855af1c7d618c3
refs/heads/master
2022-06-03T21:27:31.785823
2022-05-24T14:34:17
2022-05-24T14:34:17
172,578,744
17
7
MIT
2020-09-04T14:33:10
2019-02-25T20:22:41
C
UTF-8
C
false
false
3,314
c
/** * Copyright (c) 2017 - 2020, Nordic Semiconductor ASA * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, th...
[ "samuel@ofbrooklyn.com" ]
samuel@ofbrooklyn.com
4995da8aadcd1f2045f5ff78842fdf59b78ec2d1
3a81e57eadf0b9c687a1547ced0164199cb3eb37
/guilds/scion/paths/axe/spirit.c
39d8d1f8438a969b864eee876d0ba0cad78ba226
[]
no_license
mindware/core-lib
fcdc47d57bdbf3d9d72b918ba450d2b260350fe0
ffc58e9d0192ac382038713cdf4f08ec9062e062
refs/heads/master
2022-12-12T06:25:19.696779
2020-09-01T23:09:20
2020-09-01T23:09:20
null
0
0
null
null
null
null
UTF-8
C
false
false
600
c
//***************************************************************************** // Copyright (c) 2020 - Allen Cummings, RealmsMUD, All rights reserved. See // the accompanying LICENSE file for details. //***************************************************************************** inherit "/guilds/...
[ "abc@maelstrom.cc" ]
abc@maelstrom.cc
1f1b2013cb29cded8062f72cb000168966774ec7
3ace46381c0ce9e3519b6fac84febac02b9b5445
/Pods/Headers/Public/RongCloudIMLib/RongIMLib/RCUtilities.h
40647753981df8e3b4c027b9838dbfe587d816f2
[]
no_license
Phil0529/Phil_Primary
bb42dcb03a5ff51d868123404cc9aaa8c587d919
0cc3783e1e4e6838773b84cdd87eabdea15cea79
refs/heads/master
2021-01-10T16:01:07.296241
2015-11-19T03:57:51
2015-11-19T03:57:51
46,466,224
0
0
null
null
null
null
UTF-8
C
false
false
101
h
../../../../RongCloudIMLib/Rong_Cloud_iOS_SDK_v2_3_5_stable/RongIMLib.framework/Headers/RCUtilities.h
[ "xiaohancheng0529@163.com" ]
xiaohancheng0529@163.com
464d7476515d263e8349ca73b238cc71abb29a16
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/Mono_Security_Mono_Math_BigInteger_ModulusRingMethodDeclarations.h
21de5a0c78602e48406782c7b7007aa7c2c700bd
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
1,735
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" // Mono.Math.BigInteger/ModulusRing struct ModulusRing_t6452; // Mono.Math.BigInteger struct BigInteger_t6451; // System.Void Mono.Math.BigInteger/ModulusRing::.ctor(Mono.Math.BigInteger) void ModulusRing__...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
ffec7ce64d0436dff9425ed2fecfbafe788dbd53
7a2992e6e80287610ac04ff9967f1a1db90e801b
/old/src/ip/ble/hl/src/host/gap/gapm/gapm_task.h
100a2e9e12c6608780bb962fecb895f7413b3874
[]
no_license
fenrir-naru/da14580
2659bbc62eecd6661521b41cd60b2055cc9ab1c6
4e1c3006a1cfa4697ed76889b95d754ab0ab54ef
refs/heads/master
2021-01-15T10:35:13.498472
2014-04-15T10:03:05
2014-04-15T10:03:05
null
0
0
null
null
null
null
UTF-8
C
false
false
23,441
h
/** **************************************************************************************** * * @file gapm_task.h * * @brief Generic Access Profile Manager Task Header. * * Copyright (C) RivieraWaves 2009-2013 * **************************************************************************************** ...
[ "gump@e1a1acc5-1edb-46e6-a075-a7ea8643a829" ]
gump@e1a1acc5-1edb-46e6-a075-a7ea8643a829
f86ceeaba0dff3fa94c147ac080734563f093d96
7696875004ebef1287c8bff0875ec74b39314e89
/6_printf/sources/libft/ft_strstr.c
e909e4ce499a36d225042027aac0ce5540d1fbf4
[]
no_license
criro1/fgeorgin
06565f4219e183e62c33f03dd83200faca45620e
6f04101794cb8b6dcf82564c367a36710478a839
refs/heads/master
2021-06-28T23:55:14.030377
2020-10-21T09:28:41
2020-10-21T09:28:41
184,742,566
1
0
null
null
null
null
UTF-8
C
false
false
1,238
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strstr.c :+: :+: :+: ...
[ "fgeorgin@at-g5.21-school.ru" ]
fgeorgin@at-g5.21-school.ru
87634e062a2f488992ff15b940480aa6eb6e0368
c49759befaf2aa7d54d53dd97da55bb2fc1e65af
/Program/9.8.c
2ec0a165f8c996030b1df6ebf69c42cfdf2b2bb7
[]
no_license
cseadnan16/Intermediat-C-Problems
89d78f74fe49301efac68df8927b993c065a9c24
447500af85643a6e0606d8095c505c39affdc0d8
refs/heads/main
2023-03-06T16:16:19.715262
2021-02-21T06:22:34
2021-02-21T06:22:34
340,832,315
0
0
null
null
null
null
UTF-8
C
false
false
874
c
#include<stdio.h> enum DAY {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY}; int main() { enum DAY today; today = WEDNESDAY; switch(today) { case SUNDAY: printf("Today is Sunday. It is work day\n"); break; case MONDAY: printf("Today is Monday. It is wo...
[ "adnanan.cse2016@gmail.com" ]
adnanan.cse2016@gmail.com
8e1c6aa1988429ce36785a09eff238ec7c89eea2
43e0734bc789bf73a427552be9090f600c295306
/es12.11.c
8109e9fad3bee598e05e9efd5d7b06345099b3b0
[]
no_license
remaxer/Linguaggio-C-Bellini-Guidi-Exercises
92c9e0ad41d6038e3b4e99a84d21ea40521a0348
7a2e7d3c8e97fd62c3505ecae0e51900cef8d460
refs/heads/master
2020-05-19T17:23:56.016076
2012-06-14T11:10:54
2012-06-14T11:10:54
null
0
0
null
null
null
null
UTF-8
C
false
false
532
c
#include <stdio.h> #define MAX_ELEMENTS 10 int arr[MAX_ELEMENTS]; int elements,i,j; int pushIntoArray(int); void showArray(void); int main(){ int f; for(i=0;i<MAX_ELEMENTS;i++){ printf("\nInserire l'elemento %d dell'array\n",f); scanf("%d",&f); pushIntoArray(f); elements++; showArray(); } } int pushIntoArray...
[ "remaxer@hotmail.it" ]
remaxer@hotmail.it
94350182c4c620a418271117ef5b687c08165b9c
477c8309420eb102b8073ce067d8df0afc5a79b1
/VTK/Utilities/vtkhdf5/src/H5Fio.c
407f950ed6355c98bf9519894a3397b7810e4db5
[ "LicenseRef-scancode-paraview-1.2", "BSD-3-Clause", "LicenseRef-scancode-llnl", "LicenseRef-scancode-hdf4" ]
permissive
aashish24/paraview-climate-3.11.1
e0058124e9492b7adfcb70fa2a8c96419297fbe6
c8ea429f56c10059dfa4450238b8f5bac3208d3a
refs/heads/uvcdat-master
2021-07-03T11:16:20.129505
2013-05-10T13:14:30
2013-05-10T13:14:30
4,238,077
1
0
NOASSERTION
2020-10-12T21:28:23
2012-05-06T02:32:44
C++
UTF-8
C
false
false
5,669
c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * ...
[ "aashish.chaudhary@kitware.com" ]
aashish.chaudhary@kitware.com
373c070f97de575f9e62b0c9023320415583d427
705744cccb4ebfd175a97e4941eec29333956d83
/device/libpixy/usbuser.h
c4d7b17c5baea56e3b2c8e4e4c01d9103558b02c
[]
no_license
timmyMarion/pixy
1a4447e3a56e0a9405715367a36712a84ff30e7d
bbbdff364e2d6da97be09274504f07d78e9abd9b
refs/heads/master
2021-01-17T19:27:05.416211
2014-02-14T17:01:41
2014-02-14T17:01:41
null
0
0
null
null
null
null
UTF-8
C
false
false
2,529
h
/*---------------------------------------------------------------------------- * U S B - K e r n e l *---------------------------------------------------------------------------- * Name: usbuser.h * Purpose: USB Custom User Definitions * Version: V1.20 *--------------------------------------------------...
[ "rich@charmedlabs.com" ]
rich@charmedlabs.com
b82e2f72edb3fb7100bc68e8270b2658f70748d4
15972e2e198f32fb541ab25ce0b464177b47c4e1
/websocket/test.c
aaf7e96ea2a7c7599a2ace5c292f62d63c136315
[]
no_license
778758944/system
3eb6ba613511f604025e687a4c1320869bb661cb
b55043be2d24ec4814becc09fd1aa60eae5f8c88
refs/heads/master
2022-08-27T20:15:00.798939
2022-08-17T22:47:42
2022-08-17T22:47:42
132,084,526
0
0
null
null
null
null
UTF-8
C
false
false
327
c
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> int main() { int fd, fd2; struct stat fileinfo; char p[3]; fd = open("./main.c", O_RDONLY); lseek(fd, 1, SEEK_SET); read(fd, p, 2); p[2] = '\0'; printf("data is %s\n", p); retu...
[ "xiaobo.xwt@alibaba-inc.com" ]
xiaobo.xwt@alibaba-inc.com
e4bc98a78ecdfc8dcfdc2a6974349c8e231318b9
e4688989869642d17ccc4ce8a78d540e462a812d
/amns_for_our_tests/p384_9__9_-2__18/add_mult_poly.c
a6f288205051792094652fb6a92e5aa5e954fb1f
[]
no_license
eacElliptic/AMNS
5753ba9f6e088a9408a4d3853cdb57025c942034
bd549f293e43775507b6e3166ad388a984099f11
refs/heads/master
2021-06-24T20:03:38.250394
2020-10-08T20:26:43
2020-10-08T20:26:43
133,142,425
0
0
null
null
null
null
UTF-8
C
false
false
12,604
c
#include "add_mult_poly.h" void add_poly(int64_t *rop, int64_t *pa, int64_t *pb){ int j; for (j=0; j<NB_COEFF; j++) rop[j] = pa[j] + pb[j]; } void sub_poly(int64_t *rop, int64_t *pa, int64_t *pb){ int j; for (j=0; j<NB_COEFF; j++) rop[j] = pa[j] - pb[j]; } void neg_poly(int64_t *rop, int64_t *op){ int j; ...
[ "eac.elliptic.curve@gmail.com" ]
eac.elliptic.curve@gmail.com
a9c5a0b705ca718125dc039956a34b952c4c4d55
1353aa8a1bdcb8c91234d0300e9d9ad769d1fde9
/second.c
8bbdd1a313538c70926bde063336fca9fa5909e9
[]
no_license
hulakdar/libtest
0d23174ffef2e8d27c0342d431a8cecfadceec52
e1f8a6dc39c93cc3b0720cd1da034e1d034d9245
refs/heads/master
2020-04-07T05:27:57.243897
2018-11-18T15:24:28
2018-11-18T15:24:28
null
0
0
null
null
null
null
UTF-8
C
false
false
3,303
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* second.c :+: :+: :+: ...
[ "skamoza@e1r4p7.unit.ua" ]
skamoza@e1r4p7.unit.ua
635720fce77fa119e9c466d1e77267995afffebe
a3e75545d380c65cfad89669fcc514e6b30ffd4d
/solutions/pangu_tee/csi_pangu/csi_driver/csky/common/dw_usart.c
03211068e7ab99e0e7216ea6926054e544e782c9
[ "Apache-2.0" ]
permissive
PDFxy/YoC-open
021e448ec7550a800531b07b85e326a399cfd2db
adb04959298d556bb17bfca1946ec5509d39c8e0
refs/heads/master
2022-12-07T20:42:15.931619
2020-09-07T07:23:22
2020-09-07T07:23:22
null
0
0
null
null
null
null
UTF-8
C
false
false
50,083
c
/* * Copyright (C) 2019-2020 Alibaba Group Holding Limited */ #include <csi_config.h> #include <stdbool.h> #include <string.h> #include <drv_irq.h> #include <drv_usart.h> #include <drv_pmu.h> #include <dw_usart.h> #include <soc.h> #include <csi_core.h> #include <drv_dmac.h> #if defined CONFIG_DW_DMAC #include <dw_d...
[ "shuta.lst@alibaba-inc.com" ]
shuta.lst@alibaba-inc.com
2c1b4c8e183b01a54a73dbeaaa0bfe6d2fd2ca6c
a6c952f7cf92db3b70f43aaf88c204a845fadc3c
/SYSTEM/usart.h
f19027df351ced7e8a03da3ebfd6e6d657879e84
[]
no_license
slim2580065056/Balance-Car
99eb6c92bd86f6d2b7408e90d08449e130b3572a
6511084d165671dddf8443740bd8d5ca2d6a560f
refs/heads/master
2020-03-27T23:34:21.363522
2018-09-04T10:30:19
2018-09-04T10:30:19
147,329,024
2
0
null
null
null
null
GB18030
C
false
false
1,348
h
/** ****************************************************************************** * @file my_usart.h * @author LiuSongHu_QQ2580065056 * @version V1.0.0 * @date 20116-8-21 * @brief This file contains all the functions prototypes for the my_usart * firmware library. *******************...
[ "yeah789@sina.com" ]
yeah789@sina.com
1e53f632befa8604d4c8e204868038dcfe4f19ff
4a7d20f21763809b9a061b95d1f308055f5a3fdf
/img_network/training.c
3c28659786f02f1cd69f7a041b4ada4876c69eba
[]
no_license
multun/OCRe
ecd6b1bd57de25a91d4eea75edaa706a3b6b553e
c83b0a39af5136aa34e6921df1974a0efffad081
refs/heads/master
2021-01-19T03:09:44.697167
2016-12-05T14:54:45
2016-12-05T14:54:45
67,486,305
0
0
null
null
null
null
UTF-8
C
false
false
2,750
c
#undef _DEFAULT_SOURCE #define _DEFAULT_SOURCE #define _XOPEN_SOURCE 500 #define _POSIX_C_SOURCE 201610L #include <dirent.h> #include <sys/mman.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <string.h> #include <unistd.h> #ifdef __APPLE__ #define PATH_MAX 2048 #else #include <linux/limits....
[ "victor.collod@epita.fr" ]
victor.collod@epita.fr
60ef2824b941119830475b0378c02b6a2704150f
539e89946c5755c7f4df61ace3684931e23330c6
/Core/Inc/gw_linker.h
542b99c32188dec1fa7ba1f4a29f0b3512e7ee0a
[ "BSD-3-Clause" ]
permissive
SteerX/game-and-watch-patch
dfe3842ba9128ee06b99f55a4c46aa75bdcf30ba
81f4a15fc36dbcb614ed0948c84c3be21b479d54
refs/heads/main
2023-08-16T17:46:17.637075
2021-10-07T19:32:37
2021-10-07T19:33:31
null
0
0
null
null
null
null
UTF-8
C
false
false
157
h
#pragma once extern uint32_t _etext; extern uint32_t _sbss; extern uint32_t _ebss; extern uint32_t _sidata; extern uint32_t _sdata; extern uint32_t _edata;
[ "bnp117@gmail.com" ]
bnp117@gmail.com
2005a146e5d1f5fccac2d201cda46f91841388d4
4d78d9b36845a9364b3243b1b409aa2328cfb6ec
/c10p7.c
db1ca115bf0304941ca81d0da990ae9940da1d1b
[]
no_license
yash1th/cprogramming
a703e6d2d49490fa48d0d8505b795c5b2315115d
9de278f56aba2ca9f95c9f7ab5e5cbe976c8733f
refs/heads/master
2021-01-12T20:32:23.774681
2016-04-26T17:03:53
2016-04-26T17:03:53
55,256,158
2
0
null
null
null
null
UTF-8
C
false
false
1,140
c
#include<stdio.h> int insertString(char[],char[],int); int stringLength(char[]); int main() { char str1[]="the wrong son"; //char str2[]="per"; int result=insertString(str1,"per",10); if(result!=-1) printf("string 1 is : %s \n",str1); else printf("Not possible\n"); return 0; } int insertString(char ...
[ "yaswanth.amara@gmail.com" ]
yaswanth.amara@gmail.com
11c95146bf5ac1dad2d54d61075a7e9a8776bb43
3a3d7c141222dca5af64f4f5fb9176571ee420f3
/cs370/stack.c
969fa729fb63eeb5ad62459d390c1d0257519ae6
[]
no_license
cRudel/soph
5f11decb3a2ebaa1da1e67b5f4f66a8140200717
058cf0e82f5c22fa661f98b3f4aa6af94e733224
refs/heads/master
2018-12-07T05:12:00.301301
2018-09-14T05:16:53
2018-09-14T05:16:53
118,650,159
0
0
null
null
null
null
UTF-8
C
false
false
337
c
#include <stdio.h> #include <stdlib.h> int main() { int numTimes; int place = -1; int max = 0; int *stack = malloc(sizeof(int*)); scanf("%d\n", &numTimes); for(int i=0; i<numTimes; i++) { int c, num; scanf("%d %d", &case, &num); if(c == 1) { if(num > max) } if(c == 2) { } if(c == ...
[ "crudel@stevens.edu" ]
crudel@stevens.edu
39db1095452c5eba4e04c1a6cde95a645205f84d
4bf355ea5cfdb5785c85e20d2b51f75801072cf9
/ios/Pods/Headers/Private/Stripe/UINavigationController+Stripe_Completion.h
9cbe223e496cc1387891808f7f872ac3464f2a95
[ "MIT" ]
permissive
WrathChaos/ReactNativeStarter_ExpoKit
4e1fd84d48a795a5d0aa51b80351621153fd252d
08eb8d658bba796e3a66d6f1b41865d2d4f49817
refs/heads/master
2022-05-09T03:10:14.697215
2022-04-09T10:59:30
2022-04-09T10:59:30
153,124,358
2
1
MIT
2022-04-09T10:59:32
2018-10-15T14:06:57
Ruby
UTF-8
C
false
false
65
h
../../../Stripe/Stripe/UINavigationController+Stripe_Completion.h
[ "kurayogun@Kurays-MacBook-Pro.local" ]
kurayogun@Kurays-MacBook-Pro.local
30d6708b32f29f205dd62b33ed814ac99a18c100
1aa0c8affa62b0515aa907b4ac194407e3374990
/loctest/noArgs.c
358f462c45a73c84866524210fbdc796c2161acb
[]
no_license
ypei92/Olive-AssemblyCodeGenerator
0ae977028d61dbeab4590678d569262c0dcfa530
7d2e6d0dff8958cc01c39a8592e15128437c831c
refs/heads/master
2021-01-21T12:57:57.203489
2016-04-13T16:58:33
2016-04-13T16:58:33
55,176,692
0
0
null
null
null
null
UTF-8
C
false
false
282
c
// return 7 + 6; test function, no args long long stuff() { long long b = 1; long long c = 2; long long d = 3; long long e = b + c; // 3 long long f = e + d; // 6 return 7 + f; // 7 + 6 = 13 } int main() { long long k = stuff(); // returns 13 return k; }
[ "mhe@login2.stampede.tacc.utexas.edu" ]
mhe@login2.stampede.tacc.utexas.edu
69209f3fcd4cc156a10abbdc36accb7ec1d77c2d
80999df7d43a7521609338975a904113776a8c4f
/apps/isp/gisp/firmware/include/DxOISP_CalibDataSelection.h
c0d6c7a50a5630ad4a8a3c5317ce7381bef92296
[]
no_license
tifler/gdm-test-platform
30b766552049ef910ee0ac57ca7adee28087d26f
e24b897429fea8fae8cad7391f523a4f0451f4e7
refs/heads/master
2020-09-28T15:03:35.560597
2015-11-24T00:57:24
2015-11-24T00:57:24
226,801,120
0
0
null
null
null
null
UTF-8
C
false
false
958
h
// ============================================================================ // DxO Labs proprietary and confidential information // Copyright (C) DxO Labs 1999-2014 - (All rights reserved) // ============================================================================ #ifndef __DxOISP_CALIB_DATA_SELECTION_H__ #def...
[ "ydlee@anapass.com" ]
ydlee@anapass.com
3103c2861d76bbc93afed01b01ece346fc92e30a
9d8e4a9200c5080a39193ad4440adfccb969ef16
/datastructure/ch2.h
26dd71f62eec92731a69a98719caef925f7d90a6
[]
no_license
ghjan/datastructure
94c0d4f21c456e08ae5bfbffe4f4d79b96b2b7ad
7012f67920c453d25e9aaa6b621f7c6d6e9a1f66
refs/heads/master
2020-03-19T04:12:46.094653
2018-07-23T07:46:51
2018-07-23T07:46:51
135,805,776
0
0
null
null
null
null
GB18030
C
false
false
655
h
#pragma once /* 查找 */ #define ERROR -1 #define InitSize 20 //顺序表的初始大小 typedef int ElemType; /////////////////// typedef struct { ElemType data[InitSize]; int length; }sqlist; int demo_list_1(); ///////// #define MAXSIZE 10000 typedef int Position1; typedef struct LNode1 *List1; struct LNode1 ...
[ "cajan2@163.com" ]
cajan2@163.com
f1bfa4cfb235bd57c5f96e7402e0f7213d60e7b8
494b2b3aaa419bf58b21b6715cdcd65894fa24a9
/processes/5_virtualmemory/6.c
0c8d2454500353f8e342df81d45eed3a64ade310
[]
no_license
md-jamal/linux_system_programming
5ee96ae43ffec3dc685f6ffc62d07e4e289b6b8a
5338b4846df53a1ac8d9eae4eee9c0a4cfce213a
refs/heads/master
2020-05-17T19:41:34.211909
2019-05-18T11:09:15
2019-05-18T11:09:15
183,921,478
0
1
null
null
null
null
UTF-8
C
false
false
2,701
c
/* Is the stack really growing downwards? Let's call a function and figure this out! If this is true, then the variables of the calling function will be higher in memory than those from the called function */ #include <stdlib.h> #include <stdio.h> #include <string.h> /** ...
[ "mm185399@ncr.com" ]
mm185399@ncr.com
06161ff6a9c817e0d761b7c3b10081953ae8a0b2
af4ee28eb323e75c47c396e7efe9e982a4c6de68
/thermitDebug.h
c05b83c178a99961ee6975e613de44e5bf481644
[ "BSD-3-Clause" ]
permissive
djtremolo/thermit
e935c92ccccb6eef18866792787479499d4952e9
98919986fb8d030c60df304b59c86ace72389296
refs/heads/master
2020-04-12T16:46:01.995905
2019-01-11T22:12:21
2019-01-11T22:12:21
162,578,663
0
0
null
null
null
null
UTF-8
C
false
false
1,085
h
#ifndef __THERMITDEBUG_H__ #define __THERMITDEBUG_H__ #define THERMIT_DBG_LVL_INFO 4 #define THERMIT_DBG_LVL_WARN 3 #define THERMIT_DBG_LVL_ERR 2 #define THERMIT_DBG_LVL_FATAL 1 #define THERMIT_DBG_LVL_NONE 0 #ifdef THERMIT_NO_DEBUG #define THERMIT_DEBUG THERMIT_DBG_...
[ "djtremolo@gmail.com" ]
djtremolo@gmail.com
742ef79c4f0b83ccd3497079799bb126c9920c6e
281d3193f9e513a431719c074c460056d6c92fba
/delay.h
d66d4647d2abf17804c441b8205a43a015c0162c
[]
no_license
BEugen/PCcontrol
22293a1b014afdf8201c7dfebaeaa94df4eb79f8
d2ee06d99b1fa9c1e3e828ae8c53c451b430551d
refs/heads/master
2020-05-27T16:35:17.900747
2012-04-08T18:41:33
2012-04-08T18:41:33
null
0
0
null
null
null
null
UTF-8
C
false
false
109
h
#ifndef DELAY_H #define DELAY_H #define XTAL 4 void DelayMs(unsigned int x); void Delay2dot5Us(); #endif
[ "b-eugen@yandex.ru" ]
b-eugen@yandex.ru
aa04d3127b802fb415d4665f786964c41d5e1d37
dca769b480e4fbe06bf694a44cf2cd839a0660ea
/EmbeddedSoftware/AVR/module/act_RGBW/act_RGBW.h
80b9e7c2a8cb3c09f36db1fce9f42b0c872bc59c
[]
no_license
mattiasrunge/HomeAutomation
c7145dd02c4e5dbc8be90e7567527bb031847038
a815b3074c8f030e21231c7c85fd1d3249a9cf6e
refs/heads/master
2020-12-25T17:03:30.894793
2012-03-27T19:09:28
2012-03-27T19:09:28
null
0
0
null
null
null
null
UTF-8
C
false
false
1,135
h
#ifndef ACT_RGBW #define ACT_RGBW /*----------------------------------------------------------------------------- * Includes *---------------------------------------------------------------------------*/ /* system files */ #include <avr/io.h> #include <avr/interrupt.h> #include <stdio.h> /* lib files */ #include <co...
[ "linus.lundin@gmail.com" ]
linus.lundin@gmail.com
f852ed5bf6b8476ba4dd1142e55fc8e01f6f71dc
0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4
/Src/mod/bharchiarella1d/bharchiarella1d_stdi/fd_adi_bharchiarella1d_zbo.c
934d1f7c84e6f436cb9ec886bac72c708329671d
[]
no_license
FinancialEngineerLab/premia-13-cpp_FICC
e19caa6a9cadb4ad1361053efc0dfc9418071cf9
e271da627dbfc8c2c1f7e9f700766544f64c72b2
refs/heads/master
2023-03-16T11:11:26.830681
2016-04-19T05:58:16
2016-04-19T05:58:16
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
12,758
c
#include "bharchiarella1d_stdi.h" static int resolution05(int taille_trid, double **Aj,double *Bj,double *xj) { int i; /* résolution du systeme linéaire Aj*xj=Bj pivot gauss */ for(i=0;i<taille_trid-1;i++){ Aj[2][i]=Aj[2][i]/Aj[1][i]; Bj[i]=Bj[i]/Aj[1][i]; Aj[1][i]=1; /* for(k=i+1;k...
[ "jamanikun@gmail.com" ]
jamanikun@gmail.com
f92226810b21cc4a063ccef6cd7f72438b4354e0
0d2af558ed3ece6886d2df7b9ca29090afcd5cce
/libft/ft_strjoin.c
9caecd5a6d6bf77fcceebc4a818c10fc6cf4ea47
[]
no_license
tac4ttack/wolf3d
95cfddb76102db23a4e98d81d52391ae8eec0ffe
ba67d9ffef66108529183532c351922d3608b29e
refs/heads/master
2021-05-10T22:54:41.940429
2018-04-24T09:47:32
2018-04-24T09:47:32
118,269,617
1
0
null
null
null
null
UTF-8
C
false
false
1,316
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strjoin.c :+: :+: :+: ...
[ "fmessina@student.42.fr" ]
fmessina@student.42.fr
022cc721931a50bcf8abc3d43558a4701534a7d6
0c5d3b088080577388f5766431487534f93a2c40
/Github-Projects-Origin/linux-master/drivers/staging/lustre/lustre/ptlrpc/errno.c.bak.c
4da7122035d2b03ddc5294bd801b7b9b302cf67d
[]
no_license
zhiyuanjia/WoBench
878255ce45e76ef57f88743c7f43acdfa59e93e7
6b337780cbd598de98fc0eabd19efaf1a01b6012
refs/heads/master
2021-09-23T03:12:08.091319
2018-06-14T10:17:59
2018-06-14T10:17:59
null
0
0
null
null
null
null
UTF-8
C
false
false
11,750
c
#include <assert.h> #include <string.h> #define INCLUDEMAIN // SPDX-License-Identifier: GPL-2.0 /* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License ve...
[ "wangcong15@mails.tsinghua.edu.cn" ]
wangcong15@mails.tsinghua.edu.cn
280d567d363073b9afb88fb6a124de2c0ff6057e
5eff7a36d9a9917dce9111f0c3074375fe6f7656
/lib/mesa/src/gallium/frontends/nine/nine_pipe.h
207945c48a919fa5c00c24975fd1d66941b0c247
[]
no_license
openbsd/xenocara
cb392d02ebba06f6ff7d826fd8a89aa3b8401779
a012b5de33ea0b977095d77316a521195b26cc6b
refs/heads/master
2023-08-25T12:16:58.862008
2023-08-12T16:16:25
2023-08-12T16:16:25
66,967,384
177
66
null
2023-07-22T18:12:37
2016-08-30T18:36:01
C
UTF-8
C
false
false
29,911
h
/* * Copyright 2011 Joakim Sindholt <opensource@zhasha.com> * * 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 * on the rights to use, c...
[ "jsg@openbsd.org" ]
jsg@openbsd.org
f5f5c1be1c3efa0b32591a0c56c3273de0b6f0d8
08b7f0908af2f1952e0d18c4ab9af91739c0d488
/C/lev_13/2231.c
076fdcf7c96525d7357f19aa34840c9b983e8baa
[]
no_license
june-may/Baekjoon
1e35ada2c433bfb6aa65b3461745f3cb0523c915
1c7e37ca301bc4007de877306caadba93d8b3caa
refs/heads/master
2022-10-17T23:42:38.419959
2020-06-15T03:50:18
2020-06-15T03:50:18
260,890,956
0
0
null
null
null
null
UTF-8
C
false
false
105
c
#include <stdio.h> int main(){ int num; scanf("%d", &num); if(num < 1 || N > 1000000) return 0; }
[ "21900052@handong.edu" ]
21900052@handong.edu
7272883c10dadbc059b96e4e8204be92bbf8a602
0ec429b94e177e938f6f89c61e83c36a688998a8
/aula17/aula17-9.c
2b7426858f8f88f17857248ad34de8a10eeb4a29
[]
no_license
daniloabreu1/LP1-2019.1
c1f7c8cdbe3f062c7664283100141e7c8dba207e
d94ea87597ed94767e347bd826951934741d356a
refs/heads/master
2020-04-27T17:58:56.932056
2019-05-31T14:01:46
2019-05-31T14:01:46
174,547,807
0
0
null
null
null
null
UTF-8
C
false
false
672
c
#include <stdio.h> typedef struct{ int dia, mes, ano; }DATAN; typedef struct{ char nome[25]; DATAN dnasc; }USER; void imprimir(USER *u1){ putchar('\n'); puts(u1->nome); printf("%02d/%02d/%00004d\n",u1->dnasc.dia,u1->dnasc.mes,u1->dnasc.ano); } void salvar(USER *u1){ setbuf(stdin,NULL); ...
[ "daniloabreu1@gmail.com" ]
daniloabreu1@gmail.com
066c576bbed7843de09e1b8184fa7a1d67b70a4f
b56c64aa8184e521fc7788be5716b542d98182c4
/minishell1/rendu/hget_next_line.h
550da262d0ce72ad193c17e14ce6524b1275d6cd
[]
no_license
xAt0mZ/epitech_tek1_system_unix
80703ec3acc149a0e586d90d7d659a148a5f7b65
a06ef91abd6568261eaa22d94ccb8091c8253e89
refs/heads/master
2020-06-11T13:06:41.676222
2016-12-05T19:45:49
2016-12-05T19:45:49
75,659,411
0
0
null
null
null
null
UTF-8
C
false
false
462
h
/* ** get_next_line.h for get_next_line in /home/baron_l//local/rendu/piscine/projets/get_next_line/rendu ** ** Made by louis-philippe baron ** Login <baron_l@epitech.net> ** ** Started on Thu Nov 15 14:02:48 2012 louis-philippe baron ** Last update Wed Dec 5 12:54:05 2012 louis-philippe baron */ #ifndef HGET_NE...
[ "baron_l@epitech.eu" ]
baron_l@epitech.eu
671b47b74fc89c3aa7e9346aab737b17338603f2
230df66f00753d69d1be384d680efa93e987af35
/modulemd/modulemd-dependencies.h
4abb83c8b96348b881b1af0d297ad87a1362cf26
[ "MIT" ]
permissive
james-antill/libmodulemd
ea23e6facc9a226cb4d15648b1d311c37402d37b
a679f59a3908033392e6fd93bdd4c7206c92c82f
refs/heads/master
2020-04-10T00:13:38.991598
2018-03-07T15:54:37
2018-03-07T15:54:37
124,250,619
0
0
null
2018-03-07T14:49:50
2018-03-07T14:49:50
null
UTF-8
C
false
false
2,899
h
/* modulemd-dependencies.h * * Copyright (C) 2017 Stephen Gallagher * * 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 ...
[ "sgallagh@redhat.com" ]
sgallagh@redhat.com
6443dc547ef3cf2e79819838bf6c804f07a79125
6943c43ddb99e5477f571df3a8ffcd9f07a073e7
/CSE/TP/TP2/test_fit.c
9719b7797801f24e5018423bff59bb011d05c088
[]
no_license
LilyOfTheWest/M1-Info
ea51e178495fb025df69f57dcb4d988650479dee
ec21f5e73b55868e1ccca29900a9196fa8a818bf
refs/heads/master
2016-08-12T18:30:42.841830
2016-03-11T16:10:10
2016-03-11T16:10:10
44,256,314
0
0
null
null
null
null
UTF-8
C
false
false
1,730
c
#include "mem.h" #include <stdio.h> #include <stdlib.h> #define TAILLE_MEMOIRE 4096 void mem_print(void *zone, size_t taille, int free) { if (free) { printf("FREE adresse: %lx, taille: %lu\n", (unsigned long)zone, (unsigned long)taille); } else { printf("BUSY adresse: %lx, taille: %lu\n", (unsigned long)zone, (...
[ "linovergame@hotmail.fr" ]
linovergame@hotmail.fr
5ae5aa598bde62851d62e9214da24809c4a245c8
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/input/mouse/extr_elan_i2c_i2c.c_elan_i2c_get_sm_version.c
9dca36f836659da6f730b2503eea653c27462dbc
[]
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,142
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