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
82c716eaa0655e8eddc141987c5bd31df718c8f6
23b9ce5edd4330c0664c5e22fb4bc5dfe4846059
/serial_atmega8/serial.c
c02733719394665e929761d6de5a224d53638d96
[]
no_license
aomdoa/circuits
f1e03723ac9b5d960211ea4bc1ece38197957614
365086bab323ecf4c3cf7a457b3d3b91261b71ef
refs/heads/master
2021-01-22T21:22:48.616328
2017-12-23T02:48:12
2017-12-23T02:48:12
85,421,781
0
0
null
null
null
null
UTF-8
C
false
false
1,135
c
#define F_CPU 8000000 #define BAUD 9600 #include <avr/io.h> #include <util/setbaud.h> #include <util/delay.h> #include <stdio.h> void uart_init() { UBRRH = UBRRH_VALUE; UBRRL = UBRRL_VALUE; #if USE_2X UCSRA |= (1 << U2X); #else UCSRA &= ~(1 << U2X); #endif UCSRC = (1 << URSEL) | (1 << UCSZ1) | (1 << UCSZ0);...
[ "aomdoa@gmail.com" ]
aomdoa@gmail.com
2737df4ad86c78f4bc2e1511dbea599b188aeec3
59d97e418e9b33491d2e81a01c3f3882e3976691
/src/GhcEdit.c
3e100b0e0c910ff8aa5b6bae39fd867319fcaf0f
[ "MIT" ]
permissive
HanStolpo/ghc-edit
c84ea7ebebc99667b7082ea59a725c8dc093ba76
450a2e500e83680c3d4bd1198239aed0ac62b65f
refs/heads/master
2021-01-16T18:31:49.398831
2013-12-28T12:35:26
2013-12-28T12:35:26
15,183,383
1
0
null
null
null
null
UTF-8
C
false
false
286
c
// StartEnd.c #include <Rts.h> int GhcEditStart() { int argc = 1; char* argv[] = {"ghc-edit-dll", NULL}; // argv must end with NULL // Initialize Haskell runtime char** args = argv; hs_init(&argc, &args); return 1; } int GhcEditEnd() { hs_exit(); return 1; }
[ "HanStolpo@gmail.com" ]
HanStolpo@gmail.com
9a6a6082c9729a77e61227694d61a4d6827defca
0f0e2a9942130d46a249bbd7b9c71f1652a94153
/nachos/test/access4.c
17b603bf85afb6b7d2176c214eeb972d46b0ffa4
[]
no_license
parkeroth/EECS-678-P3
44ef5163c52f976bdd87db8d57d778cfbb3d2f2a
9cdf5e4d823ef9d70912c13a3e84afb9fb07a2ce
refs/heads/master
2016-09-06T09:31:52.295410
2011-12-02T02:33:30
2011-12-02T02:33:30
2,864,645
2
0
null
null
null
null
UTF-8
C
false
false
720
c
/* access4.c * test access pattern */ #include "syscall.h" #include "stdlib.h" /* * This is a hack to give us access to the physical page size without having * to include large numbers of files from the rest of Nachos. */ #include "phys.h" #define NPasses 10 #define RowDim 10 #define ColDim (PageSize/sizeof(...
[ "proth@1005-19.eecs.ku.edu" ]
proth@1005-19.eecs.ku.edu
359ccf78e88ab4fd8b5b07338651612c6193adf5
dfbe7986a378a3d940d5fa0eb0e3f921c85b1afb
/Day09/ex00/ft_generic.c
af1f747e81ad221e191fb6dc5a1279ed276650e0
[]
no_license
malauzet/Piscine-C-2017
80a50105e020e716d816cb81748a393fff70e815
879b91ca1265599e2aa0a1c82fc683f941282e6f
refs/heads/master
2021-01-15T23:22:14.194000
2017-08-18T13:56:46
2017-08-18T13:56:46
99,936,294
0
0
null
null
null
null
UTF-8
C
false
false
977
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_generic.c :+: :+: :+: ...
[ "malauzet@e1r11p2.42.fr" ]
malauzet@e1r11p2.42.fr
d0416921caf51b82dcc23a9858ce1bc2687c1f43
11f54eac193bca701f85808f0cad2234feff301d
/I.7.c
00ffd833228b658bce0436b3136f4ee92ab84710
[]
no_license
alexgr21/LAB.6
caec962e607f9be1674432a1283f66638e1deff7
bd47aa8d15fb4ab87a04ab6fb7a707ac0c5ba7f3
refs/heads/master
2021-08-23T09:07:22.886734
2017-12-04T12:34:34
2017-12-04T12:34:34
112,387,543
0
0
null
null
null
null
UTF-8
C
false
false
725
c
#include <stdio.h> void minmax(int a[], int *min, int *max) { int i; *min = a[0]; *max = a[0]; for(i = 1; i < sizeof(a); i++) if(a[i] < *min) *min = a[i]; if(a[i] > *max) *max = a[i]; } int main() { int n; int i; int minim; ...
[ "noreply@github.com" ]
alexgr21.noreply@github.com
1d2c5da0cf494453bbdd6ca91c2053be9721ca92
053e31208bfe3402c96d8628a7ba1d80cd081ffe
/src/EntityBody.c
4d2b4af0712261f5dca285819d0c1bda161a7f18
[]
no_license
adriengivry/Space-Invaders
7757585644672778721832d19bee44b2644b9b31
2e14613e560c6c4c91f13a014b6c1f6df6ba8e86
refs/heads/master
2020-03-28T18:13:27.235187
2018-09-15T02:50:35
2018-09-15T02:50:35
148,862,253
0
0
null
null
null
null
UTF-8
C
false
false
1,284
c
#include "EntityBody.h" EntityBody* entitybody_create(int p_x, int p_y, int p_w, int p_h, const char* p_texturePath, Window* p_window) { EntityBody* entityBody = (EntityBody*)malloc(sizeof(EntityBody)); entityBody->hitbox.x = p_x; entityBody->hitbox.y = p_y; entityBody->hitbox.w = p_w; entityBody->hitbox.h = p_h;...
[ "a.givry@student.isartdigital.com" ]
a.givry@student.isartdigital.com
a00de2211c11562bc3275aae020f9c4ecd94656b
5e16946e7a756252cad181d0efa9ee3b4e2709a6
/mla_v2014_07_22/apps/usb/host/msd_data_logger/firmware/src/system_config/exp16/pic24fj64gb004_pim/system.c
6ca4af17748d530a85014e0df7407eeec5e2f42e
[]
no_license
huleg/MPLABXProjects
741919efaf25ff60d0204cb2fbfbd2a3b3e7328f
b6728705dd49732389675857d0cf6eeaebcb7bd9
refs/heads/master
2021-01-19T13:33:24.414449
2016-09-12T07:48:01
2016-09-12T07:48:01
null
0
0
null
null
null
null
UTF-8
C
false
false
3,397
c
/******************************************************************** Software License Agreement: The software supplied herewith by Microchip Technology Incorporated (the "Company") for its PIC(R) Microcontroller is intended and supplied to you, the Company's customer, for use solely and exclusively on Microchip ...
[ "kerikun11+github@gmail.com" ]
kerikun11+github@gmail.com
3c07a26d72943b3b7e082a896e87e3aa154e9a35
c5cb98ad5c3fa37ce761cb9b430b69e29a33141f
/d/mingjiao/shulin1.c
ef237c51e1bfde9834b7856fc8e1da978781e1c1
[]
no_license
cao777/mudylfy
92669b53216a520a48cf2cca49ea08d4df4999c5
266685aa486ecf0e3616db87b5bf7ad5ea4e57e4
refs/heads/master
2023-03-16T20:58:21.877729
2019-12-13T07:39:24
2019-12-13T07:39:24
null
0
0
null
null
null
null
GB18030
C
false
false
670
c
// shulin1.c #include <room.h> inherit ROOM; void create() { set("short","树林"); set("long", @LONG 这是一片偌大的树林,古木参天,遮晕蔽日,你进来就迷失了方向, 不知道现在自己身在何处,林中不时传来野兽的低吼,和怪异的啸叫令你 不禁毛骨悚然,只想早点离开。 LONG ); set("exits", ([ "east" : __DIR__"shulin", "south" : __DIR__"shulin...
[ "i@chenxuefeng.cn" ]
i@chenxuefeng.cn
a7a3b81f1ce5d8d741b7e4fd918b1e9f302f8cd7
2c78de0b151238b1c0c26e6a4d1a36c7fa09268c
/common/components/rtl/external/Embarcadero/DelphiBerlin/cpprtl/Source/dinkumware/source/fabsf.c
2725e945c7c463672c4a0a75b04988b603a3d3bf
[]
no_license
bravesoftdz/realwork
05a3b308cef59bed8a9efda4212849c391b4b267
19b446ce8ad2adf82ab8ce7988bc003221accad2
refs/heads/master
2021-06-07T23:57:22.429896
2016-11-01T18:30:21
2016-11-01T18:30:21
null
0
0
null
null
null
null
UTF-8
C
false
false
211
c
/* fabsf function */ #include "xxfftype.h" #include "xxfabs.h" /* * Copyright (c) 1992-2006 by P.J. Plauger. ALL RIGHTS RESERVED. * Consult your license regarding permissions and restrictions. V5.01:1422 */
[ "lulinalex@gmail.com" ]
lulinalex@gmail.com
a07dda652b7d810b09ee0431a7eebb12468523f6
1f8e9b06c1218b3787469782b517f38d1411074a
/Rep/Lesson2.1/Task3.c
dd7e31a27961c03e202ba3609a55679ceb0e7bfe
[]
no_license
NikSob/Test
c5011701bdf5c6a5caedf727d7d83f58a39b4d27
1920ab71e9c011e61f1a6a3251b4fce8562bdd2e
refs/heads/master
2021-01-18T22:03:17.304703
2016-11-14T21:17:01
2016-11-14T21:17:01
53,080,991
0
1
null
2016-03-03T20:48:22
2016-03-03T20:30:57
null
UTF-8
C
false
false
173
c
#include <stdio.h> int main(void) { int day, month, change; day = 22; month = 11; change = day; day = month; month = change; printf("%d/%d",day,month); return 0; }
[ "nikita.sobolev.1997@mail.ru" ]
nikita.sobolev.1997@mail.ru
a098ec2675a31b8f1687f6171cbb8016f51c2920
03c2d7342ac803164f91006380018837bc9ed818
/WakeSleepProcessInterrupt/process2.c
cfcfa99e36fe96715164685413722675d9c57950
[]
no_license
crescent-igor/OperatingSystem
5813adc4eb3da1e7956ed5a940ccb5a90e873289
5f68e648e0036a814530f2d4b9dee20611fb8121
refs/heads/master
2020-04-22T15:39:17.233664
2019-02-13T10:17:31
2019-02-13T10:17:31
170,484,016
0
0
null
null
null
null
UTF-8
C
false
false
696
c
#include <stdio.h> #include <signal.h> #include <unistd.h> int flag=1; void sig_handler(int signo) { if (signo == SIGUSR1) { printf("received SIGUSR1 woke up\n"); flag=0; } if (signo == SIGUSR2) { printf("received SIGUSR2 sleeping\n"); flag=1; } } int main(void) ...
[ "noreply@github.com" ]
crescent-igor.noreply@github.com
36b4cd93f3414782262a357cec927b1be3cc53bb
a3190aad49f0bbeab75e55d1fac3f841ab002673
/06Wskaźniki/Zadanie1.c
68a6754fc062eef02d7b498276f7021a7f42a846
[]
no_license
tomasz245/podstawy_programowania
64f738a259c21d8af766bd78056c553998f1941e
90ff85a0638d0913d9d748221b6389e604140c90
refs/heads/master
2021-09-05T05:33:03.130041
2018-01-24T12:58:29
2018-01-24T12:58:29
null
0
0
null
null
null
null
UTF-8
C
false
false
208
c
#include <stdio.h> #include <stdlib.h> int funkcja(int *a, int *b){ if(*a>*b) return *a; else return *b; } int main() { int a=100, b=200; printf("%d",funkcja(&a,&b)); return 0; }
[ "noreply@github.com" ]
tomasz245.noreply@github.com
72a117582564206cf8ac5d58d6bba024c0de0729
fec1c19fd4a4b67e293873e707c2165e35fd8821
/lib/bap.h
d0d9b08fe77529433bf6e452ffffea64666c397a
[]
no_license
maurer/libbap
1f4a768bd3b87bd617d7ddc4eeb6035940bd9e10
83fb11ca2b805d88aa7f955d9e808763c9d395be
refs/heads/master
2020-12-24T18:04:26.461964
2017-02-07T05:04:00
2017-02-07T05:04:37
40,268,791
1
0
null
null
null
null
UTF-8
C
false
false
6,957
h
#include <stdint.h> #include <stdbool.h> #include <stddef.h> #ifndef __BAP_INTERNAL_H //Abstract types #define ABSTRACT_TYPE(name) \ typedef void* bap_##name; \ void bap_free_##name(bap_##name); ABSTRACT_TYPE(disasm) ABSTRACT_TYPE(mem) ABSTRACT_TYPE(bigstring) ABSTRACT_TYPE(bitvector) ABSTRACT_TYPE(insn) #endif ...
[ "matthew.r.maurer@gmail.com" ]
matthew.r.maurer@gmail.com
0bf5cb86a056f1662bb2b69f2c13e7f4cfbc62ce
eb1c8414cf5be3a2b0da0d5309ac25d799a98b4b
/RSA.c
6d67f69e627623fa6fa2e83a3ba23a6ac400b663
[]
no_license
vvijayk1999/Computer_Networks_and_Security_Algorithms
56541ecb0023c8eeff1f158ddfdb492fad2b553a
d571ece184431029f918077ac28158d12e740ac1
refs/heads/master
2020-12-29T20:32:24.547443
2020-05-26T08:29:07
2020-05-26T08:29:07
238,722,296
0
0
null
null
null
null
UTF-8
C
false
false
1,456
c
#include<stdio.h> #include<stdlib.h> #include<math.h> int gcd(long m, long n) { if(n==0)return m; if(m<n)return gcd(n,m); return gcd(n,m%n); } int rsa(char *msg) { long p=0,q=0,n=0,e=0,d=0,phi=0; long nummes[100]={0}; long encrypt[100]={0}; long decrypt[100]={0}; long i=0,j=0,nofelem=0...
[ "noreply@github.com" ]
vvijayk1999.noreply@github.com
7a829157304d445dd3a5c24894815bb54ef83e94
bc67a627eed32788951d839acf32f541d949523b
/unity-samples/iOS/Roll-A-Ball-Ios/Classes/Native/Mono_Security_Mono_Security_Protocol_Tls_CertificateSelectioMethodDeclarations.h
a652293fc77e79c2440109479da4c3186d3bedd5
[]
no_license
alonkrifcher/appboy-unity-sdk
dd6c8e6dfbd28dda5782514149520058c03c9946
8670b5f567f1027a14dee2878cda801e79012226
refs/heads/master
2021-01-18T18:56:49.214651
2015-07-14T16:16:34
2015-07-14T16:16:34
41,434,938
0
0
null
2015-08-26T15:53:33
2015-08-26T15:53:33
null
UTF-8
C
false
false
2,704
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" // Mono.Security.Protocol.Tls.CertificateSelectionCallback struct CertificateSelectionCallback_t1457; // System.Object struct Object_t; // System.Security.Cryptography.X509Certificates.X509Certificate struct ...
[ "wenzhi@appboy.com" ]
wenzhi@appboy.com
bbb6c3e6e35f087c28b81a43d446f87e70f93be4
cf16911bc92458e31c8accb95f2062dcdea75ff2
/SoC-Validation/firmware/gpu_validation/gpu/pp3/m400_pp_3_FLSxx_run.c
0ddedb3fe3be687013345918a4c3fa46f893b489
[]
no_license
alexvatti/embedded-documents
b4f7a789f66dad592a655677788da4003df29082
5bcf34328a4f19c514c1bca12ad52dcc06e60f09
refs/heads/master
2023-08-14T20:23:00.180050
2019-11-29T10:48:05
2019-11-29T10:48:05
224,813,397
0
0
null
null
null
null
UTF-8
C
false
false
4,961
c
/*---------------------------------------------------------------------------- * * The confidential and proprietary information contained in this file may * only be used by a person authorised under and to the extent permitted * by a subsisting licensing agreement from ARM Limited. * * (C) COPYRIGHT 2008-2009 AR...
[ "alexvatti@gmail.com" ]
alexvatti@gmail.com
422255acd8078179130700fe64d2c5ca80acefa5
cebf6db6959d5d079aee3f0ec6e28ee9836f50fe
/libs/libmuslc/src/math/remainderf.c
8768f904882dfb23b808c5d917169aed7d8074ad
[ "MIT", "LicenseRef-scancode-other-permissive", "BSD-3-Clause", "LicenseRef-scancode-mit-nagy", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
glen-mac/DreamyOS-seL4-Operating-System-AOS
bcf7c3d4be691f1d1993ad4f8a92219dde7516ee
44122f3d7a94e8ae95c4100b6fd498659ecc006b
refs/heads/master
2021-09-07T23:36:34.222666
2018-03-03T08:47:31
2018-03-03T08:47:31
99,069,273
9
4
null
null
null
null
UTF-8
C
false
false
1,332
c
/* @LICENSE(MUSLC_MIT) */ /* origin: FreeBSD /usr/src/lib/msun/src/e_remainderf.c */ /* * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunP...
[ "Alexander.Kroh@nicta.com.au" ]
Alexander.Kroh@nicta.com.au
37e59ced27c625141790df91e7600a5a8764b5dc
aa93bdedde662cb637e5ee3e62ba3717737e819b
/mginit/desktop_res_en.h
fe8d8b9cc5da2cad26ecbd0d91763f80398c184a
[ "Apache-2.0" ]
permissive
VincentWei/mg-samples
43e64ca015c95f81b7ed911f700c6640eaf5cca1
595d356a12eae1553c25aa57975839278415e926
refs/heads/master
2023-01-07T22:51:21.730201
2022-12-30T06:37:24
2022-12-30T06:37:24
92,700,964
11
6
null
null
null
null
UTF-8
C
false
false
742
h
/////////////////////////////////////////////////////////////////////////////// // // IMPORTANT NOTICE // // The following open source license statement does not apply to any // entity in the Exception List published by FMSoft. // // For more information, please visit: // // https://www.fmsoft....
[ "vincent@minigui.org" ]
vincent@minigui.org
10cb044fdf4ea77357acc67675718e310d7ee51e
77a40663a1f46551b67e714937bb194a5c3df7c2
/my_calc.c
630f85707ae7a49e5aa6c11ba365f9af07e843f2
[]
no_license
athomaj/rtv1
e5ef9c9bc03baff82e0b2a6028d15a57e866008d
de4e0aef68e6623db9a8cccb2b31b7ca77a82c08
refs/heads/master
2016-08-12T02:42:27.750227
2016-01-23T16:55:02
2016-01-23T16:55:02
50,014,878
0
0
null
null
null
null
UTF-8
C
false
false
1,352
c
/* ** my_calc.c for in /home/juliena/rendu/MUL_2013_rtv1 ** ** Made by athomasjulien ** Login <juliena@epitech.net> ** ** Started on Fri Feb 28 13:17:58 2014 athomasjulien ** Last update Sun Mar 16 18:14:23 2014 athomasjulien */ #include <math.h> #include "header.h" int inter_plan(t_point *point) { if (point...
[ "you@example.com" ]
you@example.com
cf281516071bd9af860c8fc67d65b17562c7359c
5963efb46c9bbef73ccb6744ab4a52b6ebd6b305
/Reference_Implementation/crypto_kem/ntru-hps4096821/ntru21/enc/.autopilot/db/poly.pp.0.c
470ea7be03e858f3409dcf5435f33e2f1abc405c
[]
no_license
Deepsavani/Post-Quantum-Crypto---NTRU
a5c0324c0281a9890fc977eae55cc4432c5dd8bd
5494bd4af96998d4056a17ef425489cf45efbae7
refs/heads/master
2023-03-18T03:15:59.184060
2021-03-16T16:14:22
2021-03-16T16:14:22
348,408,223
0
0
null
null
null
null
UTF-8
C
false
false
32,023
c
# 1 "poly.c" # 1 "poly.c" 1 # 1 "<built-in>" 1 # 1 "<built-in>" 3 # 149 "<built-in>" 3 # 1 "<command line>" 1 # 1 "/opt/Xilinx2018/Vivado/2018.3/common/technology/autopilot/etc/autopilot_ssdm_op.h" 1 # 300 "/opt/Xilinx2018/Vivado/2018.3/common/technology/autopilot/etc/autopilot_ssdm_op.h" void _ssdm_op_IfRead(...
[ "deepsavani@deeps-mbp.myfiosgateway.com" ]
deepsavani@deeps-mbp.myfiosgateway.com
f867195243014036f0ec39ce7684be8f87a6ba98
d36c3e5dc07d93e2f13329a10a18a3cd7fde3a8d
/libcamera/sc8810/sc8825/src/cmr_cvt.c
32d0525b8f2a41aa81ff3c59fc3509947ceb92c4
[ "Apache-2.0" ]
permissive
diepquynh/android_hardware_sprd
cd744d676941ac6c6de4a1e5f918bab360e52a47
c2d121d21d6e2873332845d413cc6dc972cc3967
refs/heads/lineage-15.1
2022-12-26T18:41:31.151121
2018-07-23T20:02:01
2018-07-23T20:25:07
62,931,528
4
18
null
2020-10-11T16:21:38
2016-07-09T04:11:58
C
UTF-8
C
false
false
27,832
c
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
[ "d97.avinaba@gmail.com" ]
d97.avinaba@gmail.com
6fdc24a54a80281a76b7dbc4648c86cec0e37e19
065fbbf8e671cb7f41a4079c8011fa2d807f9d3e
/lib/fat_fs/fattime.c
342f60966a64b830e19675ad5f12c4844a53b741
[]
no_license
amarburg/coulostat_src
801becd616b196bdbe04f0e41a6791446412d7a9
59834b9ef52a6ab6b112a7cf016df092b1b0733d
refs/heads/master
2016-08-07T04:12:29.119090
2012-03-05T02:52:06
2012-03-05T02:52:06
null
0
0
null
null
null
null
UTF-8
C
false
false
408
c
/* Martin Thomas 4/2009 */ #include "integer.h" #include "fattime.h" //#include "rtc.h" //TODO fix this DWORD get_fattime (void) { DWORD res = 0; //RTC_t rtc; // rtc_gettime( &rtc ); // res = (((DWORD)rtc.year - 1980) << 25) // | ((DWORD)rtc.month << 21) // | ((DWORD)rtc.mday << 16) // | (WORD)(rtc.h...
[ "amarburg@notetofutureself.org" ]
amarburg@notetofutureself.org
b8ffb4f54f9affa46c65f60bce30442635724882
ca0dcec60cf1c330e3ae2d64fa59cc78054d4018
/APPS/apps/breader.c
55177a289084c5a6f93889f8b749d9518e0ac8d0
[ "BSD-2-Clause" ]
permissive
sdd330/sctp-refimpl
fac2708d11d27814a2ccbcbeff30b6028c95b3d6
e9f24c7a69591e0bbbba4eaf21a9d551049ec580
refs/heads/master
2021-01-23T11:34:01.984323
2015-05-12T08:12:05
2015-05-12T08:12:05
35,762,107
1
0
null
null
null
null
UTF-8
C
false
false
437
c
#include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <sys/errno.h> #include <netinet/sctp.h> main() { int sd; int e,f=0; char buffer[1000]; sd = socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP); if(sd == -1) { printf("socket failed %d\n", errno); } listen(sd, 2); e...
[ "randall@9df1edf5-d72c-5b5f-11c0-5f5209eb73f7" ]
randall@9df1edf5-d72c-5b5f-11c0-5f5209eb73f7
569f18b211d7ba5b77da917aa2552d1fc7ccfeb7
277835a8112ac7533753fdfad6a26d14d77a6bf4
/apps/Apache/2.0.65/src/httpd-2.0.65/test/cls.c
ceada008448d2d656a0306c70b84f38c4d3f4e43
[ "Apache-2.0", "LicenseRef-scancode-pcre", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain", "NTP", "RSA-MD", "Beerware", "metamail", "LicenseRef-scancode-zeusbench", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-rsa-1990", "MIT", "Spencer-94...
permissive
tkbi/windowsrtdev
18b7e5f8e02f959e7f1c92bec1b0c03e237cdfce
4e5531ea1a00f247f9f43bbf55cadbed698418cd
refs/heads/master
2020-12-23T12:42:50.326642
2016-05-05T01:41:51
2016-05-05T01:41:51
null
0
0
null
null
null
null
UTF-8
C
false
false
4,110
c
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
[ "bfosterjr@github" ]
bfosterjr@github
9182b862db931b1801d14a8402bbb2f5b58f960f
13f986fdfb07c572e635d9e24abafa0d1c8e2cc2
/Assignments/Mini Assignment 6/Mini6/main.c
4c7810f8e217f7329b970316c8e6ec60b6c1ba91
[]
no_license
ctonnesen/comp206-Introduction_to_Software_Systems
a908d4c53e894c52ce2b5a8e9596019d2c4413f7
9e9ac430c56721299e9f7d738b0675173035bd24
refs/heads/main
2023-04-07T07:56:35.717854
2021-04-15T18:22:15
2021-04-15T18:22:15
358,352,695
0
0
null
null
null
null
UTF-8
C
false
false
400
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "linked.h" void main() { FILE* ssv = fopen("mini6tester.ssv", "rt"); if (ssv == NULL) { printf("\n File opening failed"); exit(1); } int acct = 0; float amnt = 0; char line[100]; while (fgets(line, sizeof(line), ssv)) { ...
[ "noreply@github.com" ]
ctonnesen.noreply@github.com
1e4345f9da9b3ab958def654ac9d724b982e8ddb
6742615a969909038d5c0583e0ecd4e8dfaff4e9
/Implications.c
d66bea5e0110293820058499f394b71e26148d5f
[]
no_license
Akari-T/M109-Implications
bacb91532506798a66e3bfb79238053bdf9f834f
9e88b297254e2d3a62679ba718c40ed71abe5bc2
refs/heads/master
2020-06-11T03:22:01.639581
2019-10-01T02:26:04
2019-10-01T02:26:04
193,837,129
0
0
null
null
null
null
UTF-8
C
false
false
3,184
c
/** * The Implications program implements an application * that returns the correct direction of the arrow for * the given mathematical implication. * * Author: Akari-T * Version: 1.0 * Since: 2019-09-14 * */ #include <ctype.h> #include <stdio.h> #include <string.h> #include "ImplicationsStrings.h" /** * ...
[ "Akari_Tajima@macbook-air-52.home" ]
Akari_Tajima@macbook-air-52.home
d26549e55c632c113a7a69a39323cc8fa0dea6ee
3fa50218d23a362259dc4bed8dad5122b097b13c
/sdk/KF615/BaseSdk-inc/sdkPPP.h
318b6291858f71b913c650e2a8933d180378c546
[]
no_license
dongdong-2009/sharedfolder
3d48b32d3033e6a97b7acbbf8343ba183b836906
4f8cb3ad105d916d0f9fad701d0ba8e69697876c
refs/heads/master
2021-05-30T04:25:32.146084
2015-10-05T10:44:39
2015-10-05T10:44:39
null
0
0
null
null
null
null
GB18030
C
false
false
1,693
h
/******************************************************************** 文件名 : 描 述 : 版 权 : 深圳长城开发 作 者 : 吴伟伟 修改记录: 日期 修改人 修改内容 2014-01-02 15:50 吴伟伟 创建 ********************************************************************/ #ifndef BASE_SDKPPP_H_ #define BASE_SDKPPP_H_ #ifdef __cplusplus extern...
[ "alinasrauf@gmail.com" ]
alinasrauf@gmail.com
84cd12058f90b55eb5058577457e5d69f552b4d3
7332743b7f73eae604832a90081be331d094598a
/Breakout/Temp/StagingArea/Data/il2cppOutput/t1131940708MD.h
64bd4de2a6af086fb525481039efdfe1f66b2db9
[]
no_license
westlundsoftware/unity
57457a2bf35eb6634153d99df21091adb095d87e
a3197a07a8dafe516841f3c8f957d2274fb54bb7
refs/heads/master
2021-01-10T02:15:09.708078
2016-02-02T22:04:14
2016-02-02T22:04:14
50,954,540
0
0
null
null
null
null
UTF-8
C
false
false
1,686
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" #include "t2262920707MD.h" #define m2796905642(__this, method) (( void (*) (t1131940708 *, const Method...
[ "westlund_software@live.com" ]
westlund_software@live.com
6290a4911f072f04665c72e9398c7299d544a711
0360d7e45fca58f619c7f92b36ea97e6632a7c88
/file_server.c
388dbe331235ead32d926fa0d6d6b6b2bf4612e6
[]
no_license
Annieday/UDP-Client-and-Server
aba41c4932d5a3e0a99b0aa9d7fd4f7bf7f996ae
5c1c3a293e31afcdd328320925ed583748a42d47
refs/heads/master
2021-03-12T23:27:32.580112
2016-09-12T04:33:18
2016-09-12T04:33:18
34,724,207
0
0
null
null
null
null
UTF-8
C
false
false
4,305
c
#include "file_server.h" int main(int argc,char *argv[]) { struct sockaddr_in si_server, si_client; struct sigaction sa; char *ep, *rec_time, buffer[BUFLEN]; int ss; socklen_t slen; pid_t pid; u_long p; u_short port; char *doc_dir, *log_dir; if (argc != 4){ usage(); errno = 0; } p = strtou...
[ "adai1@ualberta.ca" ]
adai1@ualberta.ca
04a680a4bd5d6366c75c2e3966835ce54b81e06e
320fdca2d75dc2db5c5c8fdf968126d0e893c6aa
/Pods/Headers/Private/PPManagers/PPColorManager.h
38a047720166dafa77a191e27fced3e69cd2942e
[]
no_license
z1835286176/TextCoderViewer
aa29b7796a22e48d2014c2b53e38dd1b934f3a15
b1c344b04fe6157290c20bd980cf65e4aa5320f4
refs/heads/master
2021-05-08T17:21:21.536814
2018-01-29T09:13:53
2018-01-29T09:13:53
119,469,970
3
0
null
2018-01-30T02:21:03
2018-01-30T02:21:03
null
UTF-8
C
false
false
53
h
../../../PPManagers/PPManagers/Color/PPColorManager.h
[ "garenge@outlook.com" ]
garenge@outlook.com
59fe74717645994bb6c91036ea830379844346bf
61caf09844b9c67832ce3036755a1e59c5cdfc2a
/Other/C Auto Kicker/q3dirtrav_res.h
2b9fa77d68106204bbfd2e7b2b77afe4eb03fd2a
[]
no_license
evan1715/JDFix-for-JK2
c57c639f75ec322fed7493871a96270a291bce4e
2d115d5871f97212c66cb39392bf79f78db278b3
refs/heads/master
2023-06-17T23:13:58.338112
2021-07-19T15:47:23
2021-07-19T15:47:23
null
0
0
null
null
null
null
UTF-8
C
false
false
334
h
#define VER "Quake 3 engine directory traversal PoC 0.2.1" #define IDD_MAIN 101 #define IDC_PROCNAME 102 #define IDC_PROCLIST 103 #define IDC_FILENAME 104 #define IDC_EXPLOIT 105 #define IDC_INFO 106 #define IDC_ABOUT 107 #define IDC_REFRES...
[ "evan1715@users.noreply.github.com" ]
evan1715@users.noreply.github.com
2fde882f0a627cb30126258c159f254e54bc152e
4fa3ffb1551dfe4867ccafbfbd88ff4fa9902b99
/android_code/third_party/libfreetype/src/sfnt/sfntpic.h
ae53155c2c4db102282dcf944358b910982f05f8
[ "FTL" ]
permissive
occamLab/tango_ros_bridge
8c8b7845691f7013ff20c7ed19a1d60ea76854c2
4d35cf18869a6b52654e467df41b60e18f56b2a2
refs/heads/master
2021-04-22T12:36:33.974577
2018-07-30T16:14:02
2018-07-30T16:14:02
31,181,150
10
9
null
2017-06-28T16:28:38
2015-02-22T21:21:08
C
UTF-8
C
false
false
3,515
h
/***************************************************************************/ /* */ /* sfntpic.h */ /* */ /* Th...
[ "paullundyruvolo@gmail.com" ]
paullundyruvolo@gmail.com
963a2d4b4e8e4100faa03724c7f23a2ccc4d847e
c4dec3758bec0f893d2c2a6ae6fe9f2b3399be5f
/hw09/barrier.c
a7dd81115d7d87fb9fdd34ba4818104ebc2f496e
[]
no_license
KshZh/6.828
225a0cd6469235332ade0e9ef7db47e5f395d028
59e65cf9ce2a53c5037c087173a8683db2d67ff3
refs/heads/master
2020-07-30T21:49:00.609577
2020-01-23T16:19:49
2020-01-23T16:19:49
210,369,257
2
0
null
null
null
null
UTF-8
C
false
false
1,976
c
#include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <assert.h> #include <pthread.h> // #define SOL static int nthread = 1; static int round = 0; struct barrier { pthread_mutex_t barrier_mutex; pthread_cond_t barrier_cond; int nthread; // Number of threads that have reached this round of th...
[ "fox456cold@gmail.com" ]
fox456cold@gmail.com
6a70678a5408403ae1ded4269d4622e8e135ac93
264cc34d1d5322c9c955f351e5ed710836f6a1a5
/cmake_targets/lte_build_oai/build/CMakeFiles/X2AP_R14/X2AP_UE-X2AP-ID-Extension.c
56fb103676a40ead9a1d83ac949be81ed8fc6b0e
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-generic-cla" ]
permissive
mr-ytseng/openairinterface5g
8d40a768b2046da8c521f58d34c0466226f1c154
54d541c22cdfcb774774089291c93e4e79294a1d
refs/heads/master
2021-10-27T20:56:33.843199
2019-04-19T15:37:55
2019-04-19T15:37:55
177,127,103
0
1
null
null
null
null
UTF-8
C
false
false
2,020
c
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "X2AP-IEs" * found in "/home/user/openairinterface5g/openair2/X2AP/MESSAGES/ASN1/R14/x2ap-14.6.0.asn1" * `asn1c -pdu=all -fcompound-names -fno-include-deps -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/cmake_targ...
[ "yuchia.tseng@irt-systemx.fr" ]
yuchia.tseng@irt-systemx.fr
613856bb871b999c5a5ac8d42d5c11e2817d32b6
b86f47dd0e5ada63991d9979c3d133a98f54c391
/examples/omp/apps/mpic2/mpush2.h
eaa5504239f6dd4e546574556d558fbb09d0e756
[ "BSL-1.0", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
STEllAR-GROUP/hpxMP
f55f5534b0c8fcf01b1cad389fc2c1c89ef31bc0
cc3b6419812d978c8af29640a31d3da08a6c7395
refs/heads/master
2022-08-16T10:50:41.544326
2022-08-04T18:50:58
2022-08-04T18:50:58
86,095,595
23
9
BSL-1.0
2022-08-04T18:50:59
2017-03-24T17:47:13
C++
UTF-8
C
false
false
3,505
h
/* header file for mpush2.c */ double ranorm(); void cdistr2(float part[], float vtx, float vty, float vdx, float vdy, int npx, int npy, int idimp, int nop, int nx, int ny, int ipbc); void cdblkp2l(float part[], int kpic[], int *nppmx, int idimp, int nop, int mx, int my, int m...
[ "jakemp@uh.edu" ]
jakemp@uh.edu
2e49506eb6920be130f48a9665191b9165065734
e14de0a148019648eab02da28a87537626c89b1a
/clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/non-policy/non-overloaded/vlsseg5e64.c
0319cc582dd0a6161033b2f6727612e6be169fda
[ "LicenseRef-scancode-unknown-license-reference", "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
romanovvlad/llvm
bd1e03bb7a0f0cd5819769d761b8327eac9547f1
9c7bd9ea046f189f322ae704ec004ccbb5377c74
refs/heads/sycl
2023-08-17T14:04:30.284831
2023-07-10T07:57:00
2023-07-10T07:57:00
180,324,735
0
0
NOASSERTION
2023-07-10T07:58:04
2019-04-09T08:49:37
null
UTF-8
C
false
false
14,080
c
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --version 2 // REQUIRES: riscv-registered-target // RUN: %clang_cc1 -triple riscv64 -target-feature +v -target-feature +zfh \ // RUN: -target-feature +experimental-zvfh -disable-O0-optnone \ // RUN: -emit-llvm %s -o - | opt -S ...
[ "yueh.ting.chen@gmail.com" ]
yueh.ting.chen@gmail.com
a267da4b5f54afe51303346d045798705dcad215
b84fc9021da8a331e0c157a231ea64f6eb207aa1
/source/libos/pcmin.c
63192b8eec98733159dc581404c1b5886de74484
[]
no_license
southdy/libvcd
e6ab4925f5cbeb99e6695510c7ad23a657f322f8
2bce6e30984b50403f909eeea9ef70d5d0df3330
refs/heads/master
2023-03-17T07:53:15.226254
2016-04-18T06:47:00
2016-04-18T06:47:00
null
0
0
null
null
null
null
GB18030
C
false
false
3,459
c
/**********seekfor libvcd v20.16.4.5********************************************* seekfor libvcd v20.16.4.5是免费的MPEG编解码软件,您可以自由使用和拷贝本程序! 在使用和拷贝时请注意保留原来的版权信息. 如果您有什么问题和意见,请和我联系! QQ:82054357 QQ群:24613876 MSN:sfrad32@hotmail.com Mail:Seek_for@163.com **********************************************************...
[ "root@ubuntu.(none)" ]
root@ubuntu.(none)
8839f12f104337f2d501c52e89d55ea8444757c7
f86bc101ac2d0f246aa0d241e32288b427e02192
/C/18085014.c
a9ea8207257d66151173a9569dde6cae9723389d
[]
no_license
ayush922000/hello-cops
4b53ddb6b9365d7ca1367b49cd20a7a49110fdb6
5eea5db2defc5954dce71143c9a5fe97592cab11
refs/heads/master
2020-04-02T18:43:19.902913
2018-10-25T17:27:04
2018-10-25T17:27:04
null
0
0
null
null
null
null
UTF-8
C
false
false
63
c
#include<stdio.h> int main() {printf("hello-cops"); return 0;}
[ "noreply@github.com" ]
ayush922000.noreply@github.com
cd9e12beb1be1343fbff3c57e360edd1bcbaad1f
2af283f8a587bcc3d2a744f7d86007ab2428f9bc
/src/http2/http2_internal.h
66130ac1a9213b80bb117bb6be054ddfeb2debea
[ "Apache-2.0" ]
permissive
aliyun/iotkit-embedded
bfda585c8a5db3fea215ad15fe7699cebde1dfc8
3010153fb53865ce3925f8e43900adbbfa358874
refs/heads/v3.0.1
2023-03-12T23:14:04.902446
2022-11-11T07:12:05
2022-11-11T09:01:43
106,364,205
544
289
Apache-2.0
2023-08-22T06:00:04
2017-10-10T03:30:08
C
UTF-8
C
false
false
6,753
h
/* * Copyright (C) 2015-2018 Alibaba Group Holding Limited */ #ifndef IOT_EXPORT_HTTP2_H #define IOT_EXPORT_HTTP2_H #ifdef __cplusplus extern "C" { #endif #include "http2_api.h" #include "http2_wrapper.h" #ifdef INFRA_LOG #include "infra_log.h" #define h2_emerg(...) log_emerg("h2", __VA_ARGS__) ...
[ "yusheng.yx@alibaba-inc.com" ]
yusheng.yx@alibaba-inc.com
cd31a9c90c7b6789547d3ae4f45a6c5d443db8be
57e6531eb7be8b1e4548bfda45f4aaef90bbee86
/main/main12.c
b38456ddcc9338a8d0caffe0f1ad9901eb71e41b
[]
no_license
So00/main_test_serviette
c97cce7bac2d31fdd8ba6864d185f53257e5531f
c623e00465773124d503ea53c68d3c7dbfc6fac9
refs/heads/master
2021-06-21T21:20:55.920631
2017-08-22T13:10:01
2017-08-22T13:10:01
null
0
0
null
null
null
null
UTF-8
C
false
false
500
c
#include "ft_list.h" #include <stdlib.h> int cmp(void *data, void *ref) { if (data == ref) return (0); return (1); } int main() { t_list *begin_list; int tab[6] = {0, -52, 54, 0, 78}; begin_list = ft_create_elem(NULL); for (int i = 0; i < 5; i++) ft_list_push_back(&begin_list, tab[i]); ft_list_re...
[ "atourner@e3r11p8.42.fr" ]
atourner@e3r11p8.42.fr
18fb24bc1167393f23dbe2e61182c1aa2290cb7a
444ddb8221a738e97ea668fc2a672df9418f992c
/photos/batch/badapple 2489.c
5a79f040a3fb9342702e3ff946ef7f1745d8779d
[]
no_license
our0boros/BadApple
4c9484f96f90c48ddf1e499cfc2510ac7448f5d8
b8a7526ee9266af5d98a786a000339eefc5c01a1
refs/heads/master
2023-01-12T22:41:23.548615
2020-11-18T12:16:13
2020-11-18T12:16:13
null
0
0
null
null
null
null
UTF-8
C
false
false
130
c
const unsigned char gImage_badapple 2489[8] = { /* 0X42,0X01,0X08,0X00,0X06,0X00, */ 0X1C,0X3C,0X7C,0XFC,0XEC,0X80,0XF8,0XFC,};
[ "863166709@qq.com" ]
863166709@qq.com
3993f4339dd67468597fc6b4a544e4fd01619334
1b949cdbd09772df0555846ac1f0f4de58adb61f
/Inc/Disk.h
083d5c003940cc6cbc52429fd8f8aa9269bc68df
[]
no_license
BG4RFF/TS100-1
92bc2c7e71e726fa16c5fea636e9039e421118fe
0e5681a9c94adc7c03581c06326445c34f26ec6e
refs/heads/master
2021-06-18T14:43:51.252371
2017-06-18T23:00:04
2017-06-18T23:00:04
null
0
0
null
null
null
null
GB18030
C
false
false
1,937
h
#ifndef __DISK_H #define __DISK_H #include "stm32f10x_lib.h" #include "stm32f10x_flash.h" #include "USB_scsi.h" #include "USB_regs.h" #include "USB_conf.h" #include "USB_bot.h" #include "USB_mem.h" #include "USB_lib.h" #include "USB_pwr.h" #define SECTOR_SIZE 512 #define SECTOR_CNT 4096 #define FAT1_SECTOR &gDisk_...
[ "x893.00@gmail.com" ]
x893.00@gmail.com
360e10b9eebab3827d9ed648a41037b5ec45a918
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.dg/tree-ssa/pr24990-1.c
ff2aed28314798bbf28256b519edd88ac11363bf
[ "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", "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
544
c
/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ int f(int x) { return ((~x) != 0); } int f1(int x) { return ((~x) == 0); } /* There should be no != 0 which is produced by the front-end as ~x != 0 is the same as x != -1 (or ~0). Likewise for ==. */ /* { dg-final { scan-tree-dump-times...
[ "rink@rink.nu" ]
rink@rink.nu
bb85ddf6e6bbd3983c7860b419f9bf80318f95df
5f3580ef0b6ebedf8aaa9d0fcedeb7b746c46f6f
/webservice/old/stdsoap2.cpp
898cec736a740c9425c9df737084faf07e4d722c
[]
no_license
iamzko/excel_import
cf2e4374dd7906c41d0362eca1bf92366bb60080
e2366bb5eac698435337d4851ad21e7bdc0ce7c7
refs/heads/master
2023-07-27T12:15:57.614155
2021-09-13T02:25:15
2021-09-13T02:25:15
405,805,217
0
0
null
null
null
null
UTF-8
C
false
false
639,668
cpp
/* stdsoap2.c[pp] 2.8.111 gSOAP runtime engine gSOAP XML Web services tools Copyright (C) 2000-2021, Robert van Engelen, Genivia Inc., All Rights Reserved. This part of the software is released under ONE of the following licenses: GPL or the gSOAP public license. --------------------------------------...
[ "iamzko@126.com" ]
iamzko@126.com
a5e57b8f66a1eb99a450aa9a0e20d969df2872cc
eec87746468761b7cb0f6defa07d0eefc331dc95
/bc/util.c
554432657a515b5b70230d76f747050cbe5c5bcf
[]
no_license
sixt06/BC-Mobile
6622669d27606a24ac3953a1204c7f1373f26961
9577591afdaf59a759cbd902fa8b2090edf130a7
refs/heads/master
2016-09-05T20:57:02.296379
2010-08-17T15:56:12
2010-08-17T15:56:12
null
0
0
null
null
null
null
UTF-8
C
false
false
17,853
c
/* util.c: Utility routines for bc. */ /* This file is part of GNU bc. Copyright (C) 1991-1994, 1997, 2000 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundat...
[ "sixt06@gmail.com" ]
sixt06@gmail.com
d1f23902fcc995a0816bb47fd8ebb5f79047a0f4
30c72a3dc557a5d56cb6782237043cda3c95ea08
/source/sys/utils.h
a275358386ffbac094f61b5a6f16fd8382b29617
[]
no_license
dmdware/dopamine
e730adec16e99a6eac840dac17554d360faf00c1
7602b93b56801f76eed2e372ca7bd4c372b20f27
refs/heads/master
2021-06-30T17:33:27.983724
2018-02-17T03:35:47
2018-02-17T03:35:47
96,445,918
1
0
null
null
null
null
UTF-8
C
false
false
1,048
h
#ifndef UTILS_H #define UTILS_H #include "inc.h" extern FILE *g_applog; void openlog(const char* file, int ver); int max2pow(int lowerbound); int maxpow32(int lowerbound); unsigned __int64 getticks(); void fullwrite(const char* file, char* full); void fullpath(const char* file, char* full); void filedatetime(char ...
[ "polyfrag@hotmail.com" ]
polyfrag@hotmail.com
4c856f959212c660ec30ddf07b6a826a5c77d15a
c9548bb0e24a133b28690f29abcc9622bcd5d1a3
/Plugin/juliaq.c
a688295960f487e601149ed686b0572b33f67053
[]
no_license
bravesoftdz/apophysis7x
4c159cf4b94ae5b1465d3724ee69f5e4b05938a5
cdebcf1fae25aa9dbee93a9885736fc547e7a160
refs/heads/master
2022-01-06T10:17:37.372991
2014-10-04T13:25:41
2014-10-04T13:25:41
null
0
0
null
null
null
null
UTF-8
C
false
false
1,875
c
/* Apophysis Plugin 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 your option) any later version. This program is distribute...
[ "xyrus02@a5d1c0f9-a0e9-45c6-87dd-9d276e40c949" ]
xyrus02@a5d1c0f9-a0e9-45c6-87dd-9d276e40c949
87e06518eac297acd1e66b33fe93ccdbb4a69251
d4c74a8001451840f3efb87f15856cdb9d5e9eb6
/rtos/mbed-os/targets/TARGET_GWT/TARGET_GAP9/driver/gap_udma.c
542e6e7b5e93bad63d15525db1b9d1e995ef87ca
[ "Apache-2.0", "BSD-3-Clause", "MIT", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
danieldennett/gap_sdk
3e4b4d187f03a28a761b08aed36a5e6a06f48e8d
5667c899025a3a152dbf91e5c18e5b3e422d4ea6
refs/heads/master
2020-12-19T19:17:40.083131
2020-02-27T14:51:48
2020-02-27T14:51:48
235,814,026
1
0
Apache-2.0
2020-01-23T14:39:59
2020-01-23T14:39:58
null
UTF-8
C
false
false
14,317
c
/* * Copyright (c) 2018, GreenWaves Technologies, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, this list...
[ "noreply@github.com" ]
danieldennett.noreply@github.com
c0ac6ecb99578e611b2842577697099c0d6368c7
4d86e4c927f91852d98437666a39cdf58dc7337c
/t9/fcntl.c
5aca6f192b202985d06f70bf92fd2783224beef6
[]
no_license
weiligang512/apue-test
b336cb7caddf133565c6789076b8fd4c8058515e
31f104183d645a963c8b22066c4f94c4f3f5c31c
refs/heads/master
2020-05-29T13:55:56.029721
2011-11-09T12:23:50
2011-11-09T12:23:50
2,741,273
0
0
null
null
null
null
UTF-8
C
false
false
578
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int main(int argc, char **argv) { //int open(const char *pathname, int flags); int fd; if((fd = open(argv[1], O_RDWR)) < 0) { ...
[ "weiligang512@gmail.com" ]
weiligang512@gmail.com
d669dda10f4361cdf2de978a25247cb5e3b0d0e8
eeadff1493326db73e286f47391ca92d57aa6813
/MSP430F6720 WH 2015_03_05(NEW TEMP NO WARNING)/source/App/Interrupt.c
9c6565f41b574028bb9d5dd3f3a80969a3904d98
[]
no_license
fourier49/Solar_JBC
0930440765db59e240f13ea02785be7451477ffa
23a81bd24874f60f11a4a689fd6575fb8ec88b22
refs/heads/master
2020-12-24T05:44:26.399576
2016-11-11T08:00:37
2016-11-11T08:00:42
73,455,501
0
0
null
null
null
null
UTF-8
C
false
false
8,644
c
#include "configuration.h" #include "msp430Lib/emeter-toolkit.h" #include "source/App/DCEmeter.h" #define sqac_voltage sqac64_24 #define sqac_current sqac64_24 #define div_dc_voltage(y,x) *y/x #define div_dc_current(y,x) *y/x typedef union { int16_t by16[2]; in...
[ "alex49_wang@argox.com" ]
alex49_wang@argox.com
5179ee4ce34c6c77381a00b39e8a692ef43cac75
9681e4cedd4cbb55716a0a743a72fa97c3a8a0fc
/实验源码/table.c
49871f8c979ab274087b7949557060108d01cb2e
[]
no_license
Jenny-zsy/complier
4d262197afcedcc5b71933ac6059145b67419429
408ddd767fac4d1fafe34272fc0818d059f8377a
refs/heads/master
2022-12-05T12:38:14.161007
2020-09-02T06:39:40
2020-09-02T06:39:40
292,171,547
1
0
null
null
null
null
GB18030
C
false
false
3,509
c
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include "table.h" #include "pascal_yacc.h" /* * 请在本文件中编写有关词法与语法分析中所需要用到有关符号表相关的函数 */ int VarCount = 1; int tempVarCount = 1; int NXQ = 1; static char KeyWord[][TABLE_MAX_IDENT_NAME_LEN] = { "PROGRAM", "BEGIN", "END", "VAR", "INTEGER", "REAL", ...
[ "1337139691@qq.com" ]
1337139691@qq.com
fbab39a5049d6ce88910a6554c6b2ada9b337a9f
b80d80faae20602675b001a2aac98f8bd60e09b2
/src/dependencies/libs/libzip-0.8/lib/zip_source_zip.c
5cfdf3dcae238c770bbd87b907a6a3caf8d0cdb5
[]
no_license
antonialoytorrens/TomPlayer
652e3e63e7d10d41e179e7fda72e1482f8ea0d1a
a317c5f9c7e21323906a5fa2a288a1c0c882537e
refs/heads/master
2023-08-28T16:52:53.199646
2021-10-17T23:22:25
2021-10-17T23:22:25
418,236,733
2
0
null
null
null
null
UTF-8
C
false
false
4,505
c
/* $NiH: zip_source_zip.c,v 1.6 2005/06/09 19:57:10 dillo Exp $ zip_source_zip.c -- create data source from zip file Copyright (C) 1999, 2003, 2004, 2005 Dieter Baron and Thomas Klausner This file is part of libzip, a library to manipulate ZIP archives. The authors can be contacted at <nih@giga.or.at> Re...
[ "srafin@2992784e-be46-0410-bb3d-b9c29436a3b8" ]
srafin@2992784e-be46-0410-bb3d-b9c29436a3b8
138ff364873169a278fecf5cfa6ed1b0f951f666
e89d833dd3351117d14508f29871e48158a41b26
/img/229-scanner.c
781e89300e420d3fd54e34a4586fac54a78a21fe
[]
no_license
rush-nguyen/teacher_system-by-Yii-Framework
1b36673884cb5271c85b542e6bda09f044842731
28d54199dafb8a8d195faf989f4bc10e2e25f619
refs/heads/master
2020-07-23T21:56:29.319620
2016-05-27T11:53:47
2016-05-27T11:53:47
null
0
0
null
null
null
null
UTF-8
C
false
false
9,934
c
#include <stdio.h> #include <stdlib.h> #include<conio.h> #include "reader.h" #include "charcode.h" #include "token.h" #include "error.h" extern int lineNo; extern int colNo; extern int currentChar; extern CharCode charCodes[]; /***************************************************************/ void skipBlank() {...
[ "HUT Rush Lives" ]
HUT Rush Lives
4d62777776e77b120600be24722afd3ccd558790
74eef2686eb964bd12b58b698d25df59ea5b37d2
/source/ExtFlash/ExtFlash.c
41af830720bc2ccea2cd0df578e3ddf0704fc8e2
[]
no_license
Famexie/test1
e802785507b83687c20bcc6c3a5df92111b093ea
2dbfa3431621a70e8b373c5fa382f9cab00365af
refs/heads/master
2023-06-15T01:58:56.770032
2021-07-12T05:39:44
2021-07-12T05:39:44
385,094,377
1
3
null
null
null
null
UTF-8
C
false
false
3,476
c
/* Copyright Statement: * * (C) 2017 Airoha Technology Corp. All rights reserved. * * This software/firmware and related documentation ("Airoha Software") are * protected under relevant copyright laws. The information contained herein * is confidential and proprietary to Airoha Technology Corp. ("Airoha") and/or...
[ "fame.xie@tymphany.com" ]
fame.xie@tymphany.com
b05a36df691c7698b956ee9cabeb2f4b3f8b0051
07f7b5c4c19b173a569c4b547bd0e20a47ce97d9
/dirs_links/t_unlink.c
985396a39cd499369911032e790258e50ab939ee
[]
no_license
hqlyz/tlpi
a4c01fa62f0b001927cbb9478c16586152119dc5
ae3b67fe3b050623ffbf2f0f8f5cd7e5da40ef24
refs/heads/master
2020-03-29T21:21:17.845553
2018-10-31T20:57:22
2018-10-31T20:57:22
150,362,124
0
0
null
null
null
null
UTF-8
C
false
false
973
c
#include <sys/stat.h> #include <fcntl.h> #include "../lib/tlpi_hdr.h" #define CMD_SIZE 200 #define BUF_SIZE 1024 int main(int argc, char const *argv[]) { int fd, j, numBlocks; char shellCmd[CMD_SIZE]; char buf[BUF_SIZE]; if(argc < 2 || strcmp(argv[1], "--help") == 0) usageErr("%s temp-file [n...
[ "hqlyz112@163.com" ]
hqlyz112@163.com
6fa4b50887aff79c0760d5796f001861a01a5da0
f77a1f9d4a860dfd5154666dc4117e24627d835d
/gecko_sdk_suite/v2.5/protocol/flex/connect/plugins/stack/config/token-stack.h
68d57011ccb6e5051f9468afa26c2dc35d2d1b3d
[]
no_license
eosnewyork/gecko_sdk_suite
9e93da499173edede02c3a986bfb233cf7b528e2
9678065284fc0faa89fe8206d51dcde5dcf632c1
refs/heads/master
2020-05-18T02:36:02.504381
2019-04-29T15:56:40
2019-04-29T15:56:40
184,101,402
3
0
null
null
null
null
UTF-8
C
false
false
9,509
h
/***************************************************************************//** * @brief Definitions for stack tokens. * See @ref token_stack for documentation. * * The file token-stack.h should not be included directly. * It is accessed by the other token files. *************************************************...
[ "warrick@eosnewyork.io" ]
warrick@eosnewyork.io
4eb16461d3cfc28280187a688d19f6700ec5fd6f
c74e879fd6de2f50fe1c1b1203f1f66842e64649
/net_sysv_tcp.c
6a8e8bfc38506576df207eead8ad9009b18ef6ed
[ "LicenseRef-scancode-mit-specification-disclaimer" ]
permissive
quadagh/TauMOO
9d7d92a70fbffeaa8c449585c29d1259d50840ab
e4b9be7a0f4f25643670a65c71fa24332976e09d
refs/heads/master
2020-03-29T10:10:58.586818
2011-08-06T07:52:34
2011-08-06T07:52:34
2,122,522
2
0
null
null
null
null
UTF-8
C
false
false
12,480
c
/****************************************************************************** Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved. Portions of this code were written by Stephen White, aka ghond. Use and copying of this software and preparation of derivative works based upon this software ar...
[ "somers.luc@gmail.com" ]
somers.luc@gmail.com
c062e667a825539f42ebe8785a8d49abad15945a
0bdcbb6d0cf2d7d4092e39ab5f7bd7882f20cac7
/vscode/codes/heap2.c
2f3c0bdda4928ae3846203c8aa657bdc75aac73b
[]
no_license
varun7882/Programs_C-CPP
3eafd69790c44e57bd9c73621301142e43b148cc
950d44352b120af8c1df4c03bf2e682911bafc9e
refs/heads/master
2022-03-08T12:37:42.383120
2019-11-15T08:59:51
2019-11-15T08:59:51
105,902,950
0
0
null
null
null
null
UTF-8
C
false
false
1,103
c
#include<stdio.h> #include<conio.h> void makeheap(int a[],int n) { int i=1,t,temp; for(i=1;i<=n;i++) { if(a[i]>a[2*i]) { temp=a[i]; a[i]=a[2*i]; a[2*i]=temp; t=i; while((t>=2)&&(a[t/2]>a[t])) { temp=a[t/2]; a[t/2]=a[t]; ...
[ "varun.srivastava@payufin.com" ]
varun.srivastava@payufin.com
2dabc64a876a6e4f2945d5715ac3c3d0b0bb0605
1938164b3808d22c8dd0ccd08aa50c8ec92731ec
/CA-Synth/load.c
b1f19198bb00078e4e3021d0e6a1e686638022a5
[]
no_license
critterandguitari/Video-Critter-Mini-Examples
f9aab681f022e6df9abc9e434b1c8fae8d30df6b
9a342297d1a49993ec9cbcf3017ac2e5aa693292
refs/heads/master
2020-05-20T02:24:15.666834
2013-04-22T16:05:53
2013-04-22T16:05:53
9,602,905
1
0
null
null
null
null
UTF-8
C
false
false
9,089
c
/********************************************* * : Video Critter Mini example program * (c)owen osborn, Copyright: GPL * * do a 1D cellular automata * * * * Chip type : ATMEGA8 * Clock frequency : color carrier * 4 *********************************************/ #include <avr/io.h> #includ...
[ "owen@critterandguitari.com" ]
owen@critterandguitari.com
3ea28394f93cdef24efb8912db180eeda7d432b4
bd69a9d3db41771f04e55a0c90d7a9a5eff2a9ad
/script_rel/winter2_intro.c
e60eddbe393ded4d41ec5dd34efb6814b0833e81
[]
no_license
scx1125/RDR2-Decompiled-Scripts
29ace5d22d874534b88f098fc68072e9222fe2c0
2d23c1103bf8e7ca789aeadd4cd174e198e7b920
refs/heads/master
2022-09-21T22:54:17.126994
2020-05-27T11:41:25
2020-05-27T11:41:25
null
0
0
null
null
null
null
UTF-8
C
false
false
384,547
c
#region Local Var var uLocal_0 = 0; var uLocal_1 = 0; var uLocal_2 = 0; var uLocal_3 = 0; var uLocal_4 = 0; var uLocal_5 = 0; var uLocal_6 = 0; float fLocal_7 = 0f; float fLocal_8 = 0f; var uLocal_9 = 0; var uLocal_10 = 0; var uLocal_11 = 0; var uLocal_12 = 0; var uLocal_13 = 0; int iLocal_14 = 0; var u...
[ "jaykoza@jaykoza.de" ]
jaykoza@jaykoza.de
d9024b911d93cfd1c1461c2bdcb9711c3649f4f1
c0df10d6259305000e43e4b6bc63fe3da4ecf7c6
/Problems On File Handling/Read_FIle_Sys.c
3bdbd315e6da4c90cddacbee01045bed48f10af5
[]
no_license
PhoeniX-d/C-CPP
61b3fe224eceb973f74f533765138320f8c3c3ad
fb40827f1fea970ea4dad55d329ceefb4931c8cb
refs/heads/master
2023-06-14T12:20:21.405687
2021-07-08T01:09:57
2021-07-08T01:09:57
281,208,380
1
0
null
null
null
null
UTF-8
C
false
false
1,201
c
/* * Program to accept name from user and Open a file * and read first 10 bytes * int read(int fd, char* buffer, int size) */ #include<stdio.h> #include<fcntl.h> #define BLOCKSIZE 10 #define NAMESIZE 16 int main(int argc, char** argv) { int iFd = 0, iRet = 0; char cFname[NAMESIZE] = {'\...
[ "prnv24choudhary@gmail.com" ]
prnv24choudhary@gmail.com
25b49e348b39ff2badc901224da91eb797ed2965
da0e5b6aab262d03e3621e05db0b4648c7b0c379
/codigoifwhile.c
8007960f1d59802f4368a7db3fa1ac48ff3ee250
[]
no_license
GekOrd/TP1-Paulo-Pedro
1969e8ae8cd5811d05a35684acb33367320efa5e
c65cd43ce856a8b30b08405f0de2d25ddc75125d
refs/heads/master
2023-04-13T16:11:24.299419
2019-07-04T13:42:34
2019-07-04T13:42:34
null
0
0
null
null
null
null
UTF-8
C
false
false
421
c
#include <stdio.h> int main() { printf("Digite um numero de 1 a 5:"); int x; scanf("%d",&x); if(x==1){ printf("olá"); } if(x==2){ printf("olá"); } if(x==3){ printf("olá"); } if(x==4){ printf("olá"); } if(x==5){ printf("olá"); } while(x<1|...
[ "pauloiff2018@gmail.com" ]
pauloiff2018@gmail.com
86791070e1d2003f727fa1ccd053a0a9006c2409
002902560639e77c5c9606af0fad90ff2334db1e
/454A.c
d5a64657a7102c869588edc26483b7ba28d21449
[]
no_license
Hasanzakaria/CODEFORCES
8662b464133d6058b74ea6bbbe0c6fd78366df9d
da08f70a3eae047e2da610b8a7aa3cc704b10202
refs/heads/master
2022-11-08T16:59:31.128716
2020-06-26T14:18:15
2020-06-26T14:18:15
275,172,665
0
0
null
null
null
null
UTF-8
C
false
false
716
c
#include<stdio.h> int main () { int n,i,c,j,k,l,m; scanf("%d",&n); c=(n/2)+1; for(i=1;i<=c;i++) { for(j=c-i;j>0;j--) { printf("*"); } for(k=2*i-1;k>0;k--) { printf("D"); } for(l=c-i;l>0;l--) { printf(...
[ "hasanxack@gmail.com" ]
hasanxack@gmail.com
366f54e9bca503c03605bd7f105448e409b461ce
4211a67ae7d71b54d3c589655370d1b3364c56a2
/Lab 09/Es. 2/invArray.c
c3b0a181d2455fb9c6dc9b893e143477bb8a8e60
[]
no_license
Borzoneg/Lab-Algoritmi-e-programmazione-a.a-2019-2020
9844eaeeee512d71f82b198ddcc5b3aac1154ea1
fad58a3555977a5d0125692d6b3db74ed6412392
refs/heads/master
2022-12-02T17:08:46.293817
2022-11-16T20:02:10
2022-11-16T20:02:10
212,146,198
0
0
null
null
null
null
UTF-8
C
false
false
1,589
c
#include "invArray.h" typedef struct invArray_s{ int nmax; int n; inv_t *invArr; }invArray_s; // creatore invArray_t invArray_init(){ invArray_t newEl = malloc(sizeof(invArray_s)); newEl->nmax = 0; newEl->n = 0; newEl->invArr = malloc(sizeof(inv_t)); return newEl; } // distruttore v...
[ "borzoneg@gmail.com" ]
borzoneg@gmail.com
bac098156478d43845330f27992e15fcb7bfbc47
16fbc5ec3bdf1221e5c807a2ae11960344274e16
/modules/lib/loramac-node/src/boards/SKiM881AXL/rtc-board.c
3ac2e2b6b179373e12ecdc9c90e0323939c90a0e
[ "BSD-3-Clause" ]
permissive
marceluphd/pebble-firmware
e56fcb2e4fc09102fd1d5f3c7c869afcbe997ab4
e18c044c6792cc83f05b087676e354b8d0e3588e
refs/heads/master
2023-02-26T22:16:14.461629
2021-01-15T05:50:26
2021-01-15T05:50:26
null
0
0
null
null
null
null
UTF-8
C
false
false
17,276
c
/*! * \file rtc-board.c * * \brief Target board RTC timer and low power modes management * * \copyright Revised BSD License, see section \ref LICENSE. * * \code * ______ _ * / _____) _ | | * ( (____ _____...
[ "taegukusa@gmail.com" ]
taegukusa@gmail.com
f903a29a5a93486a42665b46929f5e49df0d78e9
764d576236039d5e43fa06dd3a48b99c758d4f8e
/ext-libs/STM32Cube_FW_F7_V1.2.0/Projects/STM32756G_EVAL/Examples/DAC/DAC_SimpleConversion/Inc/main.h
0e165033e7156aff711a5030607f6a63200916f4
[ "BSD-2-Clause" ]
permissive
pellepl/verisure1612
7740321ebb48d947a09237ced3d28cbf45581384
0943e2b5701fe6a2d38c3bdb2c983a30292ffe5d
refs/heads/master
2023-06-11T15:57:40.181756
2016-12-29T18:25:39
2016-12-29T18:28:38
76,242,972
1
1
null
null
null
null
UTF-8
C
false
false
3,495
h
/** ****************************************************************************** * @file DAC/DAC_SimpleConversion/Inc/main.h * @author MCD Application Team * @version V1.0.1 * @date 21-September-2015 * @brief Header for main.c module ******************************************************...
[ "pelleplutt1976@gmail.com" ]
pelleplutt1976@gmail.com
0f808c5db095f4b89cba726a27e4704b1e94037f
27906a69abfab062a443fe2b0e1ab0d6f4b544d4
/Week_7/q1.c
cbdd090760fc3300d07055bfda21cff46739da44
[]
no_license
Khushi1312/DSAL
cb58441579cee4f8f61d5b8def05ea7fa7682ae5
0ffe98c202d264318fd376487ad5184352f1c057
refs/heads/master
2020-08-17T20:03:58.954686
2019-10-24T05:45:30
2019-10-24T05:45:30
215,705,506
0
0
null
null
null
null
UTF-8
C
false
false
1,930
c
#include <stdio.h> #include <string.h> #define MAX 4 typedef struct { char ar[MAX][100]; int front; int rear; }QUEUE; void insertcq(QUEUE* q, char* string) { if((q->rear + 1)%MAX != q->front) { q->rear = (q->rear + 1)%MAX; strcpy(q->ar[q->rear],...
[ "khushiajaygarg@gmail.com" ]
khushiajaygarg@gmail.com
868425799dcd9db73d357a2239977ca97107aeb0
73592d7475be248201b7163b70ebdcd5eb527f4c
/Core/HARDWARE/TOUCH/ctiic.h
afbe021cba7599550c67d6f8291469f465bd5998
[]
no_license
jeremyvirtue/ST_F4
36a91b71e38b53b4d29d2a4595a5d6301cd13f47
56ae9452b9b03ae07176529d85ca658e53737b79
refs/heads/master
2023-02-19T23:10:49.547031
2021-01-13T03:55:53
2021-01-13T03:55:53
329,179,029
0
0
null
null
null
null
GB18030
C
false
false
885
h
#ifndef __CTIIC_H #define __CTIIC_H #include "main.h" //IO方向设置 #define CT_SDA_IN() {GPIOF->MODER&=~(3<<(2*11));GPIOF->MODER|=0<<2*11;} //PF11输入模式 #define CT_SDA_OUT() {GPIOF->MODER&=~(3<<(2*11));GPIOF->MODER|=1<<2*11;} //PF11输出模式 //IO操作函数 #define CT_IIC_SCL PBout(0) //SCL #define CT_IIC_SDA PFout(11) //...
[ "45451508+jeremyvirtue@users.noreply.github.com" ]
45451508+jeremyvirtue@users.noreply.github.com
7ac5d474e14257bad3ecc5cbdae0329703ee0134
22215c891a2f376c978e2257ea96fead98cb1715
/emos/V1.2/driver/lcd/V1.2.0---/inc/lcd_init.h
6c4e87850394bc7e976df21076c6d426b2fafee4
[]
no_license
chenbocome/asp
f5dbf871c9f5f498a2fcb54320ba170aac0cb362
8b7240efa91adc54ac79713d6fe1364ad94974c3
refs/heads/master
2020-12-25T02:50:01.853869
2013-12-22T14:50:14
2013-12-22T14:50:14
null
0
0
null
null
null
null
GB18030
C
false
false
5,282
h
#ifndef _LCD_INIT_H_ #define _LCD_INIT_H_ #ifdef __cplusplus //定义对CPP进行C处理 //开始部分 extern "C" { #endif /* 以下为LCM的驱动层,主要负责发送T6963C的各种命令,提供设置显示地址等功能 在发送命令前会检测其状态字 带参数命令的发送模式: 先参数->后命令; 操作模式: 先命令->后参数; T6963C命令的定义 ********************************************************************/ //...
[ "wangchen2011@gmail.com" ]
wangchen2011@gmail.com
e1aff121d8227ac9d7b9bd26c0bbcec667e2ebcd
f2eabc5e983bb09baccb7aeb78e32cced54e2b10
/专业实践报告/src/marvelmind.h
ca20636439c7f0701080fca7c37b48b2a6a1d573
[]
no_license
RainCruise/MyFiles
f40b93fa8a3bfa90f5ca95130fea1f4e91f6d04a
b7baca34851c5881f70749e4c3b846fbe07354c0
refs/heads/master
2021-04-28T23:14:47.737341
2018-02-28T00:35:32
2018-02-28T00:35:32
77,738,043
0
0
null
null
null
null
UTF-8
C
false
false
2,419
h
#pragma once #include <stdint.h> #include <stdbool.h> #include <stddef.h> struct PositionValue { uint32_t timestamp; int16_t x, y, z; }; struct MarvelmindHedge { // serial port device name (physical or USB/virtual). It should be provided as // an argument: // /dev/ttyACM0 - typical for Linux / Raspberry Pi //...
[ "ganyt14@mails.tsinghua.edu.cn" ]
ganyt14@mails.tsinghua.edu.cn
d881d16750ecd1a81520be30e62a8f20cb70d607
98c8f7eb387f328008ea7a9f9aad10778cca16c7
/2-Moderate level/Texts for programs/Arithmetic pointers.txt
16adfda9b0365c1e574bb49a59a62fa2780b0e0c
[]
no_license
Coder-X27/C-Learning
83b2e0a7bdc8dc1afcfa1658005eb75ad9fa8b42
e576e3a085ffa43eb72103137a0294dbdda26102
refs/heads/master
2023-07-03T06:19:33.008710
2021-08-11T22:56:34
2021-08-11T22:56:34
394,996,737
1
0
null
null
null
null
UTF-8
C
false
false
180
txt
#include <stdio.h> int main() { int i=34; int *ptr=&i; printf("The value of ptr is %u\n",ptr); ptr++; printf("The value of ptr is %u\n",ptr); return 0; }
[ "84677110+Karansh99@users.noreply.github.com" ]
84677110+Karansh99@users.noreply.github.com
79d852ba6fa6693d60569a882f3a9bb1d7364df3
88b704746d66a76d9ef1470ceff9a523aa9882e4
/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.InputLegacyModule_CodeGen.c
f9bf38ffc36ba2aa16ece0525baba578347a69c9
[]
no_license
larryjustin/SVARx86
11356e5009ad1c9a9189ecd159357c40e8f51599
1564363c06011d2412b4d3961432ea6198730a56
refs/heads/master
2020-12-15T21:23:53.331861
2020-01-21T04:35:55
2020-01-21T04:35:55
235,256,820
0
0
null
null
null
null
UTF-8
C
false
false
12,556
c
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "codegen/il2cpp-codegen-metadata.h" IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END // 0x00000001 System.Int32 UnityEngine.Touch::get_fingerId() extern void Touch_get_fingerId_m2EF0EF2E6E388C8D9D38C58EF5D...
[ "eckertl@oregonstate.edu" ]
eckertl@oregonstate.edu
646ec1a2035429d0cd0c333c4ebb95732f6fc1f7
69be6e821ba8ca805cd2459f2c16527d87d4bbe5
/C05/Attempt00/ex00/ft_iterative_factorial.c
1c6121f64845325d2dad18a26b16cce2977e5d20
[]
no_license
alexrowe99/42-piscine
c01e575e0f6b5d736b191e3a356015ca668ffd2c
64c1beac45c7c13ddc25717e1bfe41959e0785ce
refs/heads/main
2023-06-16T22:32:00.748099
2021-07-13T07:17:44
2021-07-13T07:17:44
null
0
0
null
null
null
null
UTF-8
C
false
false
144
c
int ft_iterative_factorial(int nb) { int res; res = 0; while (nb > 0) { if (res == 0) res++; res *= nb; nb--; } return (res); }
[ "arowe890@gmail.com" ]
arowe890@gmail.com
5479fd9ef53ea24b9d6903f7b043af0d22e31bb2
f811244ce15308f2e2bc4509e0fe18025a06ff87
/tool/autoPlatform/tools/autoCode/tmp/__regs_digrfrxgpb.h
64c594bdbb66075f4bb9e8e2c1226e2a79d0afa2
[]
no_license
autoCore/autoTest
cb21118374d69897ee9a363921fce4ff230bfb4c
6b778aafca1fb170201813c4a1fda315fc6322ef
refs/heads/master
2023-06-12T04:51:22.266677
2021-07-01T06:42:03
2021-07-01T06:42:03
112,465,116
7
2
null
null
null
null
UTF-8
C
false
false
1,527
h
/* * Copyright (C) 2016 ASR MICROELECTRONICS Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This pro...
[ "binwu@asrmicro.com" ]
binwu@asrmicro.com
b5f0dcf51dc78b225bb6a8775363eeca48b3acc0
5eb7eb4bbac5e919be293a7bb384f35d1030e823
/car.cydsn/Generated_Source/PSoC5/UART_LIDAR_INT.c
af97d8628ff651ab51b166e4486afe56923fad6f
[]
no_license
pxclihai/robot_car
3f9fc1a356dce978569a53bcf0bf816d38f19c92
97492b5d32ad7d740a62857f57cddf7725eae0ab
refs/heads/master
2020-07-29T04:06:54.413505
2016-11-28T02:40:19
2016-11-28T02:40:19
73,684,709
0
0
null
null
null
null
UTF-8
C
false
false
10,320
c
/******************************************************************************* * File Name: UART_LIDARINT.c * Version 2.50 * * Description: * This file provides all Interrupt Service functionality of the UART component * ******************************************************************************** * Copyright 200...
[ "pxclihai@126.com" ]
pxclihai@126.com
34b236fdf6709113125312258aa45a10d12b2d1e
1f8c9e4acf48da90e6027915dd902401ce07a71c
/iOS/SnapWatch/Pods/Headers/Public/png/pnglibconf.h
e25e51a7af4390ee1fc3bc3ddc48a65025fdac69
[ "MIT" ]
permissive
gitizenme/WatchCamPebble
f082c94336cacf6369a6c22880f298e8c2ad2684
b193f612ed2315f111a079eae82655811fbc74db
refs/heads/master
2021-04-29T00:11:48.177865
2019-03-15T21:16:11
2019-03-15T21:16:11
77,714,732
2
1
null
null
null
null
UTF-8
C
false
false
45
h
../../../ImageMagick/include/png/pnglibconf.h
[ "joe@convergencehealth.com" ]
joe@convergencehealth.com
ae6ae8bbd84f7437d834f4c7be3c12640dd3c7a6
b1d500a451cd9852089bf3d97e829df069daa9c8
/Images/MC/dMu/5.4e-18/MomBinnedAna/S12S18_Ag2_vs_p_A_trackReco_WORLD_250MeV_BQ_noVertCorr_0.C
7cd3ab179bac9c6ea9113b2345ec0303502b2eef
[]
no_license
sam-grant/EDM
486ea029bf766c968a3c7b41198ffcf9bc3c9b8a
525e41de5f675c39014488c79144f47562910736
refs/heads/master
2022-10-30T22:35:42.979799
2022-10-19T18:44:54
2022-10-19T18:44:54
296,421,806
0
1
null
null
null
null
UTF-8
C
false
false
3,230
c
void S12S18_Ag2_vs_p_A_trackReco_WORLD_250MeV_BQ_noVertCorr_0() { //=========Macro generated from canvas: c/c //========= (Tue Jun 7 22:41:33 2022) by ROOT version 6.24/06 TCanvas *c = new TCanvas("c", "c",0,0,800,600); c->SetHighLightColor(2); c->Range(-163.6875,-1.962944e-05,3375.235,4.023944e-06); c->S...
[ "samuel.grant94@gmail.com" ]
samuel.grant94@gmail.com
bd38eab8a145b5d12782c860e3a02cc1f0a6622c
f9c4c39217a244ec4d4d11c5a830eced45425d7f
/em35x/app/builder/Ha_sleep_end_device_sample/Ha_sleep_end_device_sample_tokens.h
0b32e517a399be8d3bef0e98cdce485c615180e5
[]
no_license
freechw/EmberZNet5.3.0-GA
48d64513595433ae9451cdce8a6e619fe427bb14
ce8eb024f2ea536832a0d849c3808c6f21131155
refs/heads/master
2023-01-03T04:44:41.200911
2020-10-26T11:42:29
2020-10-26T11:42:29
null
0
0
null
null
null
null
UTF-8
C
false
false
1,452
h
// This file is generated by Ember Desktop. Please do not edit manually. // // // This file contains the tokens for attributes stored in flash // Identifier tags for tokens // Creator for attribute: on/off, endpoint: 1 #define CREATOR_ON_OFF_1 0xB000 // Types for the tokens #ifdef DEFINETYPES typedef int8u tokTy...
[ "1048267279@qq.com" ]
1048267279@qq.com
c59d320d456056663bd57b9b70dcbfaad49b0c27
726d8518a8c7a38b0db6ba9d4326cec172a6dde6
/1798. Maximum Number of Consecutive Values You Can Make/Solution.c
2d32b1209c02dfd9453f4da72003249b4134ba62
[]
no_license
faterazer/LeetCode
ed01ef62edbcfba60f5e88aad401bd00a48b4489
d7ba416d22becfa8f2a2ae4eee04c86617cd9332
refs/heads/master
2023-08-25T19:14:03.494255
2023-08-25T03:34:44
2023-08-25T03:34:44
128,856,315
4
0
null
null
null
null
UTF-8
C
false
false
345
c
#include <stdlib.h> int cmp(const void* pa, const void* pb) { return *(int*)pa - *(int*)pb; } int getMaximumConsecutive(int* coins, int coinsSize) { int max_val = 0; qsort(coins, coinsSize, sizeof(int), cmp); for (int i = 0; i < coinsSize && max_val + 1 >= coins[i]; i++) max_val += coins[i]; ...
[ "faterazer@outlook.com" ]
faterazer@outlook.com
b44d2e405a7418c3242519eccebb1e72b0f2d272
35fad071388801814b7afe5d1506d223833b0f83
/notes/09.mpi-io/comm.c
8f0038546ca66301ecfd10f3644a18430c8d4b59
[]
no_license
monicakp/tma4280
c40369c5469dc5f833e4f15f26672d49874d28c2
f17733d3fe66cbf853a1966e54a1cd751ce86fa0
refs/heads/master
2020-05-29T11:42:23.928837
2015-03-12T08:17:52
2015-03-12T08:17:52
null
0
0
null
null
null
null
UTF-8
C
false
false
137
c
int periodic[2]; periodic[0] = periodic[1] = 0; MPI_Comm comm; MPI_Cart_create(MPI_COMM_WORLD,2, dims,periodic,0,&comm);
[ "arne.morten.kvarving@sintef.no" ]
arne.morten.kvarving@sintef.no
7c105b39d20bfb82ecfe439846d2542370eec3c6
3d4a190bd9ef8dc01874678c93b879b0c7e0d26b
/3rdparty/genFiles/ULInformationTransfer-NB-r13-IEs.c
1b19f0e6f60360d0a081ea393ab7bdcf04d6b5a3
[]
no_license
ariepodga/RRC
860b1fc874a863b067dac5f90f5f9ed5f1e9e567
67642a455a1e95b8532bcfed2fd75bc8152e3dab
refs/heads/master
2020-12-15T16:20:48.309960
2020-01-13T17:26:50
2020-01-13T17:26:50
null
0
0
null
null
null
null
UTF-8
C
false
false
3,998
c
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NBIOT-RRC-Definitions" * found in "../asnFiles/36331-f60-ASNfunctions.asn" * `asn1c -fcompound-names -fincludes-quoted -fno-include-deps -findirect-choice -gen-PER -no-gen-OER -D.` */ #include "ULInformationTransfer-NB-r13-IEs.h" st...
[ "aa7133@att.com" ]
aa7133@att.com
b77fb5c301ee25f872792976cd894facbb056a83
874c09006d62e8cbb68998feb017c7b91e7e440f
/Unity Project/iOS Build/Classes/Native/UnityEngine.CoreModule_CodeGen.c
9bcc7cb5f04f554796dda5687f2a7190797b5353
[]
no_license
diegomeire/EmbeddedUnity
211444ce7838f07aa333d6617315276e0f41e0ba
d5520713352d796bc78e3a4cd888b5d263cde8d9
refs/heads/main
2023-08-19T11:19:57.426372
2021-09-19T18:08:01
2021-09-19T18:08:01
304,991,000
0
0
null
null
null
null
UTF-8
C
false
false
370,087
c
#include "pch-c.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "codegen/il2cpp-codegen-metadata.h" IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END // 0x00000001 System.Void UnityEngineInternal.MathfInternal::.cctor() extern void MathfInternal__cctor_mB7CF38BBE41ECBC62A4457C91...
[ "diego.meire@outlook.com" ]
diego.meire@outlook.com
d098bbaea288925ce88cc6990254bb8dc34b0135
d25ddc81ad534b6824efb40a2c5811a1894993e1
/srcs/push_swap/stack_a_to_b.c
1d66cba1c3f60040742d6e4bce53fc70122d96eb
[]
no_license
quentinbragard/Push_Swap
76a296ba07cf0835fd8a0e5cc13f412a39b806b6
64b6855be62a31eb0365c72824da9dd26002bf44
refs/heads/master
2020-08-30T08:17:28.416381
2019-10-29T15:32:49
2019-10-29T15:32:49
218,316,888
0
0
null
null
null
null
UTF-8
C
false
false
2,492
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* stack_a_to_b.c :+: :+: :+: ...
[ "qbragard@e1r13p2.42.fr" ]
qbragard@e1r13p2.42.fr
53d70913f1e421f42362053d7fc4a10543dc4b36
70f63f6b356c665842e359469a89287106a5a754
/src/mudlib/d/simauria/comun/habitacion/simauria/rhoemas/cylin/bosque_068.c
d917e1a1801bfee73481ec535d84493a4510dd89
[]
no_license
DPrenC/endor-mud
2aebc7af384db692c7dbc6c0a0dbb3c600e93ecc
3ca7605715ce2c02734c68766470f5d581b9fc98
refs/heads/master
2021-01-21T18:53:26.493953
2017-05-21T23:04:36
2017-05-21T23:04:36
null
0
0
null
null
null
null
UTF-8
C
false
false
481
c
/*************************************************************************************** ARCHIVO: bosque_068.c AUTOR: [z] Zomax FECHA: 14-11-2001 COMENTARIOS: Bosque Cylin, en Koek ***************************************************************************************/ #include "path.h" inherit RHOESTD("bosque...
[ "ea5gna@gmail.com" ]
ea5gna@gmail.com
a8294cbcbe104c3039ec3156b00e5a565b7c4eb0
61abd9c434fe5e4b6e63efdcfc78c36ce448d9b4
/exam/bitfield.c
35ae4d4542b0c463acda3c813bacbc8cf8b936fb
[]
no_license
kalpanavalaji/sony
c294ee201d9a053a014a82a12cb96b4ccc41e33f
ba882d6ee8239a8cf1f92a172f11aac7d328fd5e
refs/heads/master
2020-07-01T03:07:31.341502
2019-08-07T11:26:06
2019-08-07T11:26:06
201,027,460
0
0
null
null
null
null
UTF-8
C
false
false
142
c
#include<stdio.h> struct field { unsigned int a:3; unsigned int b:2; }; int main() { struct field f; f.a=7; f.b=2; printf("%d %d",f.a,f.b); }
[ "tarani.nomula@votarytech.com" ]
tarani.nomula@votarytech.com
8471de9d9e19d8946f082fb9f6b4dae4cdc26768
468a150c0af53ff30a629c0d68d41d590cd838c9
/main_p001.c
6088ff7b730fd10eba583b6328d777d940ab5f9d
[]
no_license
pxor/PE
3d3e5ae9c7b08481050e6a066c362ff625ec469e
4a094e266d8e6a6bf0700b9714d73595ca03ecd0
refs/heads/master
2022-11-20T01:43:07.955903
2020-07-21T08:32:01
2020-07-21T08:32:01
null
0
0
null
null
null
null
UTF-8
C
false
false
382
c
#include <stdio.h> int main() { int val = 0; int i; for (i = 1; i < 1000; i++) { if (i % 3 == 0) { val += i; printf("3 = %d\n", i); } else if (i % 5 == 0) { val += i; printf("5 = %d\n", i); } else...
[ "jordanMiladinov@gmail.com" ]
jordanMiladinov@gmail.com
07b5d6d201bcde62c8164e7916d21b3a417ddb19
068188998f7b6bb1f0eb3ee6fe12aa0526ffa386
/ft_print_words_tables.c
707dc7702521baa692c426cc8810df448c62614b
[]
no_license
CloeLegoube/libft
e3f104c26a060b7cfdcb7e5c5675f5b9bb739f89
90962c59b3ce9e87cca8e93ef68c46a0fa4991b1
refs/heads/master
2021-05-01T16:25:56.606248
2017-03-16T07:49:46
2017-03-16T07:49:46
72,561,664
0
0
null
null
null
null
UTF-8
C
false
false
1,038
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_print_words_tables.c :+: :+: :+: ...
[ "clegoube@e2r8p8.42.fr" ]
clegoube@e2r8p8.42.fr
595f1a7137cb236accc6f308a0acd76732c6c681
e000dfb2e1ddfe62598da937d2e0d40d6efff61b
/plutommi/MtkApp/AudioPlayer/AudioPlayerInc/AudioPlayerDef.h
e8bb75d9005bf649df30ef245f74dc4f6e2580e5
[]
no_license
npnet/KJX_K7
9bc11e6cd1d0fa5996bb20cc6f669aa087bbf592
35dcd3de982792ae4d021e0e94ca6502d1ff876e
refs/heads/master
2023-02-06T09:17:46.582670
2020-12-24T02:55:29
2020-12-24T02:55:29
null
0
0
null
null
null
null
UTF-8
C
false
false
26,552
h
/***************************************************************************** * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained * herein is confidential. The software may not be copied and the information * contained herein may not be used or dis...
[ "3447782@qq.com" ]
3447782@qq.com
fc4661ad9c4947476e8fa22bc66d508ab6f67f5a
a111532b880fea07f4055cfbea9bb7e97477a0e5
/Pods/Headers/Private/Branch/BranchLogRequest.h
b42633963d351b901ab96745d45016828ed9abdc
[]
no_license
fahzee1/choose
513b6292e9fe658f5a088ad449338cd0d9f306e4
72fcebbdb2cee9bd0bc872b82daf76e6db49f09e
refs/heads/master
2021-01-10T12:14:08.190727
2016-03-11T22:20:31
2016-03-11T22:20:31
53,700,091
1
0
null
null
null
null
UTF-8
C
false
false
65
h
../../../Branch/Branch-SDK/Branch-SDK/Requests/BranchLogRequest.h
[ "fahzee1@gmail.com" ]
fahzee1@gmail.com
9e2938b2036e33aa2b35ebebf38274b4743b7ada
2b5d7baa0f269d5c5de30cf5599b865d96e97c85
/e_c/word/lib/dict/words_dict_TestRunner.c
789f59b90c532c143ebeaa3a98b58b61c3697cd0
[]
no_license
salkicky/PracticalC
36a096bc39a213a501379cb411004263c27d8308
db23fed3820cdf4749d3c4a8a5e2ce6f2aed8ad7
refs/heads/master
2021-01-10T22:00:17.028427
2014-03-20T09:05:14
2014-03-20T09:05:14
null
0
0
null
null
null
null
UTF-8
C
false
false
227
c
#include "unity_fixture.h" TEST_GROUP_RUNNER(WordDictionary) { RUN_TEST_CASE(WordDictionary, CreateContextTest); RUN_TEST_CASE(WordDictionary, RegisterOneWord); RUN_TEST_CASE(WordDictionary, TestMain); }
[ "salkicky@gmail.com" ]
salkicky@gmail.com
fd72de125cdbca31cd2e61bef39ce6c8fdc31403
fbdb3e4df3925b330739e599d7f539a5aea4f163
/d/taishan/longmen.c
6c7603afa94b353b3ee73fbbbbcd5254ad8db84f
[]
no_license
MudRen/ZHLib
2be4566998800d1a8ed50bf379d0e43a7c97e8ac
73111626fed37f302ca433dd1628730ca07e7dc2
refs/heads/master
2020-04-04T15:43:26.136616
2018-11-04T04:42:20
2018-11-04T04:42:20
156,049,634
2
3
null
null
null
null
GB18030
C
false
false
1,111
c
// Room: /d/taishan/.c // Date: CSWORD 96/03/25 #include <ansi.h> inherit ROOM; void create() { set("short", "龙门"); set("long", @LONG 这里便是泰山十八盘的起点。此处山势陡峭,登山的人一个不 小心很容易便会跌堕到崖谷之中。 LONG ); set("exits", ([ "northup" : __DIR__"shengxian", "southdown" : __DIR__"wudafu", ])); se...
[ "i@oiuv.cn" ]
i@oiuv.cn
abf70984a15c752c9e0116ce36da4d5845d32670
f34e350ad3f0a0fdc125a48697f350384d13e5cb
/examples/simple-http-server/http.c
34aefb4c290c65ecf58455c195176bcc5c3812e9
[]
no_license
her-cat/event-loop-for-redis
84d89f479d95ed89ae53349c531da90ddb917d40
2567cabdfc886eb813b8d07d40ce866bcce101d3
refs/heads/main
2023-02-04T03:40:45.931772
2020-12-28T09:41:01
2020-12-28T09:41:01
307,986,898
0
0
null
null
null
null
UTF-8
C
false
false
1,857
c
#include <string.h> #include <stdio.h> #include <stdlib.h> #include "http.h" #include "until.h" int httpCheck(connection *conn, char *buffer) { int crlfPos, headerLen, bodyLen; /* 没有 \r\n\r\n 说明 header 不完整。 */ if ((crlfPos = strpos(buffer, HTTP_CRLF_CRLF)) < 0) { /* 判断包长度是否超出限制。 */ if (str...
[ "i@her-cat.com" ]
i@her-cat.com
cce9a8ba19526b6475643891d397c4afe1eb65a1
cb169894f4fa76e2e9415a4863d09972ced8522b
/cplus/c-gist/array.c
b82d4caf8ea0510a9ea8ab1f79bad58349c8408e
[]
no_license
whatot/base
655af7991ab09d9188d65fb633a96d4adcbc9901
8b73cedc82f5feec035c5614c7bdf5d06c9058a1
refs/heads/master
2023-08-19T10:15:59.302759
2023-08-12T09:03:27
2023-08-12T09:03:27
9,237,605
5
1
null
2020-11-15T15:22:15
2013-04-05T09:05:29
C
UTF-8
C
false
false
1,691
c
#include <stdio.h> int main() { int i; int arr[] = { 0, 3, 4, 28, 1198}; for(i = 0; i < 5; i++) { printf(" arr[i] %p\n" , (void *) (arr+i)); } printf(" *******************\n"); printf(" %p\n",(void *) (&arr+1)); return 1; } /* output likes arr[i] 0xbf8d9c4c arr[i] 0xbf8d9c50 a...
[ "whatot2@gmail.com" ]
whatot2@gmail.com
380d0df655b49741c29413ad6db00162add08cf9
35c2426a05795985b0f6950a1014978ea7ec33fb
/A7-Socket-Programming-II/q10/server.c
6a337bae9e36aefad6408318e23d15240c111f27
[]
no_license
sahilbansal17/CSL334-Assignments
48f9ee45a20ca851a67f2104d7e43e307b58b555
adde21fed6a27206fb7cb0e12a5211211825f4f1
refs/heads/master
2020-03-26T16:25:31.786065
2018-11-15T12:08:23
2018-11-15T12:08:23
145,100,841
1
0
null
null
null
null
UTF-8
C
false
false
2,070
c
// simple stream server which sends "Hello, World" to the client // UDP concurrent server #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <string.h> #include <netinet/in.h> #include <netdb.h> #include <errno.h> #include <stdlib.h> #include <unistd.h> #include <time.h> #define SERVPORT 3993 ...
[ "shlbnsl843@gmail.com" ]
shlbnsl843@gmail.com
0f763dc3888d2f9fa199e6f2b678b076c5ed59f1
5b7412a3b1a52215b37ae4372eb77f5517b97bdb
/LaseriOSBuildv1/Classes/Native/mscorlib_System_Runtime_CompilerServices_CompilationRelaxati.h
b47a1cb57bf2126b9eb0f6cb1c5aac52cee96f7f
[]
no_license
MishMick/Laser-Defender
54dd553143c16fa3e56f7c0e225e79d0832c2bb6
db796e2b197a0628bac5ddc7927264b834be00de
refs/heads/master
2021-05-04T10:20:55.305230
2016-01-12T09:55:48
2016-01-12T09:55:48
43,044,445
0
0
null
2018-10-17T07:09:24
2015-09-24T04:19:01
C++
UTF-8
C
false
false
422
h
#pragma once #include <stdint.h> // System.Enum #include "mscorlib_System_Enum.h" // System.Runtime.CompilerServices.CompilationRelaxations #include "mscorlib_System_Runtime_CompilerServices_CompilationRelaxati.h" // System.Runtime.CompilerServices.CompilationRelaxations struct CompilationRelaxations_t1334 { // Sys...
[ "mishallovic@gmail.com" ]
mishallovic@gmail.com
b4a90be97ee1c596481ca28d3616b7101045a65b
fbfffe36d7cdf945acb317a6c97cb93cde406c15
/examples/gl/gl2.c
78f4e0ea1e902f00e7f2ebf426d46fd8e7eaba18
[ "Zlib", "MIT" ]
permissive
jpcy/WidgetZero
aa11d2b5ca41bf02c8052e40c3df80ae0446ef45
8feb3e293ef5f1bf920e4361a7a0b0bf408344a1
refs/heads/master
2020-12-24T17:54:15.579617
2015-03-31T12:17:39
2015-03-31T12:17:39
19,201,785
7
0
null
null
null
null
UTF-8
C
false
false
130,633
c
#include <stdlib.h> #include <string.h> #include <stddef.h> #include "gl2.h" #if defined(__APPLE__) #include <mach-o/dyld.h> static void* AppleGLGetProcAddress (const GLubyte *name) { static const struct mach_header* image = NULL; NSSymbol symbol; char* symbolName; if (NULL == image) { image = NSAddImag...
[ "young.jpc@gmail.com" ]
young.jpc@gmail.com
1919367a03633ac3a4c76d3ec16209951112662c
d2917ab14e54cd65be1a345807377575044e5a09
/benchmarks/tr2018/Overflow-WrapAround-Mode/K=5/ESBMC/TDFII/ds-07-impl3.c
d6513f2cfa4e1cc6e4e77181ee47bc9a9a1ba3d9
[ "Apache-2.0" ]
permissive
YashChopda/COMP30040_YashChopda
73eafa60b42b76feec0d978a07fc722998f2fe90
a88b75309a402d240630365d68accdfd988e330c
refs/heads/main
2023-04-02T13:42:12.959209
2021-04-15T22:08:30
2021-04-15T22:08:30
302,636,541
0
0
null
null
null
null
UTF-8
C
false
false
404,888
c
# 1 "benchmarks/ds-07-impl3.c" # 1 "<built-in>" # 1 "<command-line>" # 1 "/usr/include/stdc-predef.h" 1 3 4 # 1 "<command-line>" 2 # 1 "benchmarks/ds-07-impl3.c" # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 1 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/b...
[ "yash.chopda7@gmail.com" ]
yash.chopda7@gmail.com
bce005300dad647bbfb71d1d04d2a24284dacf37
32f49ddb0b56b8880d16928181eb5902d5eb7174
/test/srzstdfilter.test.c
630bb9b5898cfbc4c6d337230148a70937da8564
[ "BSD-2-Clause" ]
permissive
cautonwong/sophia
83653d6a63ea89a115729dd9419a3fa92f033d37
747883021ee74864a6bc3f8ecb595a1da0e43050
refs/heads/master
2020-07-11T04:51:03.537564
2015-04-15T15:43:22
2015-04-15T15:43:22
null
0
0
null
null
null
null
UTF-8
C
false
false
2,454
c
/* * sophia database * sphia.org * * Copyright (c) Dmitry Simonenko * BSD License */ #include <libsr.h> #include <libst.h> static void srzstdfilter_compress_decompress(stc *cx srunused) { sra a; sr_aopen(&a, &sr_stda); sr r; sr_init(&r, NULL, &a, NULL, NULL, NULL, NULL, NULL); char text[] = "The Early En...
[ "pmwkaa@gmail.com" ]
pmwkaa@gmail.com
ef19039ede628742377f98509764cfae83a287cb
3aa949ede28398303c750bedfe66e9f19cd0a206
/lib/my/my_swap.c
c827ff2625532bafe5e15a967dd94f66e4a45b9d
[]
no_license
Azzzen/Box-pusher
6cf2ebe00cb2de363fde92995aa45b6843c414f2
05f10d43473eff4239bcbe71e004947b70d3de68
refs/heads/main
2023-06-30T19:26:14.401600
2021-07-29T11:41:27
2021-07-29T11:41:27
386,709,901
0
0
null
null
null
null
UTF-8
C
false
false
157
c
/* ** EPITECH PROJECT, 2020 ** my_swap ** File description: ** task01 */ void my_swap(int *a, int *b) { int c; c = *a; *a = *b; *b = c; }
[ "72028696+Azzzen@users.noreply.github.com" ]
72028696+Azzzen@users.noreply.github.com
e01d091cc399be2f2a1ff2d680a7fd7f86d48290
f5db974da4f710b1edfaca8058776c19e8e853e3
/drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_hal_pcd.c
7beb47275d43a5988dc2c8f1de63d5164e862b00
[ "MIT" ]
permissive
MaJerle/stm32-usart-uart-dma-rx-tx
f4a1ace0154cb182d87c836608cd2d05439d36e5
17bff731d58c5d009b3d073e6ae8e48d518b0d21
refs/heads/main
2023-05-25T13:57:25.447390
2023-05-20T19:17:45
2023-05-20T19:17:45
153,930,005
867
233
MIT
2022-05-07T23:22:19
2018-10-20T17:21:01
C
UTF-8
C
false
false
47,783
c
/** ****************************************************************************** * @file stm32wbxx_hal_pcd.c * @author MCD Application Team * @brief PCD HAL module driver. * This file provides firmware functions to manage the following * functionalities of the USB Peripheral Contro...
[ "tilen.majerle@gmail.com" ]
tilen.majerle@gmail.com