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
ebf0ac6948a07b41e4056cf25e8f24aa26d3342b
84ecba5d90fd7e95ec0fbd79f17643e389fe8266
/Pods/BuildHeaders/TesseractOCRiOS/tfacepp.h
cb4a291c855d3a66f9d90e45b515b2e237df1018
[ "MIT" ]
permissive
kakaruchi/ScanCard
3a0ac4bbac3e91ad4d12f482754e8fe99609f57e
24ad65250a719641f204eb9450a2aa04bd3676a3
refs/heads/master
2021-01-19T01:27:09.312021
2016-08-17T02:27:58
2016-08-17T02:27:58
65,792,316
0
0
null
null
null
null
UTF-8
C
false
false
62
h
../../TesseractOCRiOS/TesseractOCR/include/tesseract/tfacepp.h
[ "longlq.uit.vn@gmail.com" ]
longlq.uit.vn@gmail.com
4256d2829e114242345ffff5dddcc0b4b2a4c342
65aaac72465879f8b193e9c191011357d03b3d92
/cpi.c
bf3944e63284b7965ade9eca4d2ea38cae400632
[]
no_license
sankaaa62/Parallel_lab_8
c35725cd83d16a7b6036a87b83950c901cbd20da
39308e12c2cca76e14e5100fdc51ea584228f674
refs/heads/master
2020-05-25T22:20:25.359096
2019-05-22T17:11:29
2019-05-22T17:11:29
188,014,214
0
0
null
null
null
null
UTF-8
C
false
false
1,561
c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ /* * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */ #include "mpi.h" #include <stdio.h> #include <math.h> double f(double); double f(double a) { return (4.0 / (1.0 + a * a)); } int main(int argc, char ...
[ "kandakov.sasha@gmail.com" ]
kandakov.sasha@gmail.com
85e72b1a84222ebc2ca70eb1028fb09fc79b4bcc
5c255f911786e984286b1f7a4e6091a68419d049
/code/991f0124-2de8-49d9-ab84-a469978a54a6.c
f02d7e7c048683ed02423e67bb3c48ce5c44f493
[]
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
243
c
#include <stdio.h> int main() { int i=0; int j=122; int k; int l; k = 533; l = 64; k = i/j; l = i/j; l = j/j; l = i%j; l = l-j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
8b0d132c09aa3ad2318d1f4426a7965f00f498db
be74670c760de9c5bb587cf4a8c1f8e94909aef9
/src/ft_memdel.c
1b55d5445b9ae70b8687ec515f77d2b6b282ac94
[]
no_license
sdelhomm/libft
da74e61fbbc8f35bad8c6f61b6c0917956d9f1f0
3d04d6612af70bd9638442c1fe97691fde8b2791
refs/heads/master
2020-04-15T04:13:09.260494
2019-01-07T03:49:20
2019-01-07T03:49:20
164,375,028
0
0
null
null
null
null
UTF-8
C
false
false
1,007
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memdel.c :+: :+: :+: ...
[ "sdelhomm@e2r8p2.42.fr" ]
sdelhomm@e2r8p2.42.fr
8917bfcd16139dcfd57da5c4e3c198f8f425533f
19048f0a2d5e31402bd791b2dd594362de44afe3
/c/TutorialsPoint/src/Function.c
bd7495d00a437c8a13086ec0881d90cac15219bb
[]
no_license
humbertoperdomo/practices
f5f2288f4375cbc507f5d9c5ebf80064b4e946a0
ddc8dd587015e450858e851a2879026c7534f665
refs/heads/master
2021-01-24T06:30:00.405750
2018-11-11T01:57:30
2018-11-11T01:57:30
29,109,838
0
0
null
null
null
null
UTF-8
C
false
false
329
c
#include <stdio.h> // function declaration int max(int num1, int num2); int main() { int a = 100; int b = 200; int ret; ret = max(a, b); printf("Max value is: %d\n", ret); return 0; } int max(int num1, int num2) { int result; if(num1 > num2) result = num1; else result = num2; return r...
[ "humberto@localhost.localdomain" ]
humberto@localhost.localdomain
5a4dda1610ed083138289cd7a0f00264c5a66762
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14689/function14689_schedule_10/function14689_schedule_10_wrapper.h
98822620690f7b96be33303287ea6d31179731d8
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C
false
false
306
h
#ifndef HALIDE__generated_function14689_schedule_10_h #define HALIDE__generated_function14689_schedule_10_h #include <tiramisu/utils.h> #ifdef __cplusplus extern "C" { #endif int function14689_schedule_10(halide_buffer_t *buf00, halide_buffer_t *buf0); #ifdef __cplusplus } // extern "C" #endif #endif
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
dfd70d6cd5a85788ca18944eb2eb0a4e1a5bd05a
156b427f01fea6d396098e0a8cf10ded831d9860
/projects/aos/libadt/include/adt/priority_q.h
b002ebbb42ebcf20d2d4a1e2da7381f616cbb682
[]
no_license
tecty/COMP9242
0f3dec408cce2bd3d84af86cf96057452238d6f0
1ee60ad6b2735661401f0f26fa184e115f2686c6
refs/heads/master
2020-08-02T21:24:18.707458
2019-07-19T08:22:42
2019-07-19T08:22:42
142,781,087
0
0
null
null
null
null
UTF-8
C
false
false
468
h
#if !defined(PRIORITY_H) #define PRIORITY_H #include <stdlib.h> #include <string.h> typedef int (*compare_fun_t)(void * a , void * b); typedef struct PriorityQueue_s * PriorityQueue_t; PriorityQueue_t PriorityQueue__init(compare_fun_t compare); void PriorityQueue__add(PriorityQueue_t pq, void* data); void* PriorityQ...
[ "619058900@qq.com" ]
619058900@qq.com
adc442331a547b6fc7a69dc07d9da846bb55edce
c9a57700fbda4ff49279547b28eed8a97174a33a
/module-1/extras/JNI/TextCase/TextCase/TextCase/com_archsoft_TextCase.h
48dc50be84121d7657825d46f2aef13b4e35361f
[]
no_license
mistermagson/archsoft-training-code
cac551575d822515424ef29d0e04e05e86981553
bf22adbbf853e0eb04f453c16656712f10ee77e1
refs/heads/master
2023-01-29T02:53:23.209540
2022-01-08T12:28:00
2022-01-08T12:28:00
295,813,460
0
0
null
2020-09-15T18:18:32
2020-09-15T18:18:32
null
UTF-8
C
false
true
693
h
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class com_archsoft_TextCase */ #ifndef _Included_com_archsoft_TextCase #define _Included_com_archsoft_TextCase #ifdef __cplusplus extern "C" { #endif /* * Class: com_archsoft_TextCase * Method: upcase * Signature: (Ljava/lan...
[ "filosofisto@hotmail.com" ]
filosofisto@hotmail.com
633e997cd66d64c60fb9f72de7ce2de2ba426588
7774f5fa84edbe372df5bbb536e8b07b51306681
/Temp/StagingArea/Data/il2cppOutput/t688MD.h
cc8b480a5668dc7f5ce5b1ef221a19b5a4702210
[]
no_license
1jeffcohen/Mr-Turtle-Breaks-Free
677f4792b30ac3041e1454e6027a64478ec18a05
360506196b46e3b8234cf732230b266e655975e1
refs/heads/master
2016-09-01T16:24:29.294516
2015-10-08T21:46:23
2015-10-08T21:46:23
43,917,971
0
0
null
null
null
null
UTF-8
C
false
false
1,101
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> struct t688; struct t182; struct t14; struct t689; struct t326; struct t738; #include "codegen/il2cpp-codegen.h" extern "C" void m3548 (t688...
[ "1jeffcohen@gmail.com" ]
1jeffcohen@gmail.com
5bf1eff4e1e0c8f3fada105501aeccc8b1bc631d
814e1f7e7394604bd72567fd611e72312fe5d447
/printf/src/ft_check_prec.c
08474ac35190c10fdc99788799b672db12a26032
[]
no_license
cseabela/ft_printf
20810bd8097545b33b08f91d7c894cc9c99a8823
ead1a6ade75178701f29d505bf7bde8bd1106be3
refs/heads/master
2020-03-28T23:10:31.900751
2018-08-12T08:43:50
2018-08-12T08:43:50
149,279,918
0
0
null
null
null
null
UTF-8
C
false
false
1,114
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_check_prec.c :+: :+: :+: ...
[ "cseabela@e5r11p3.wethinkcode.co.za" ]
cseabela@e5r11p3.wethinkcode.co.za
ccf02bb68b9e330a20790fa9ad3fc5b26304d546
5a8c9d7b229267b9dffabf36a22f27fbaece01e7
/fibonacci/fibonacci.sim/sim_1/behav/xsim/xsim.dir/tb_fibonacci_behav/obj/xsim_1.c
05bbd2106bcfe34ae9611f5dbad52a546688a867
[]
no_license
Matrsz/Electronica-Digital-IB
a91f029abe570adf724c7340e7072a18b1ca419c
40b06dc746dfe303eab7923f5e5e48ad9dc0dab7
refs/heads/master
2023-04-11T09:27:58.358010
2021-04-19T23:23:03
2021-04-19T23:23:03
349,462,037
0
0
null
null
null
null
UTF-8
C
false
false
5,071
c
/**********************************************************************/ /* ____ ____ */ /* / /\/ / */ /* /___/ \ / */ /* \ \ \/ ...
[ "matias.roqueta.sz@gmail.com" ]
matias.roqueta.sz@gmail.com
e2a904694c879da7d28f7238291ca7c1990bc7ce
61c8b1acc3cbbf678dced1cae359f325929b5d20
/ArcanaEngine/Clients/FramebufferClient/Resource.h
0bb771ec550bbe052c6867768b0ba39b9667e9f8
[]
no_license
Nick-Jordan/ArcanaEngine
df4fa949c32a516a9267d8e270cb7eb97fd91c93
81e8f27c3bec82748c8ef187f0ec4bf60d88f245
refs/heads/master
2021-06-02T18:10:37.880923
2020-03-01T03:58:07
2020-03-01T03:58:07
131,555,762
7
0
null
null
null
null
UTF-8
C
false
false
744
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by FramebufferClient.rc // #define IDS_APP_TITLE 103 #define IDR_MAINFRAME 128 #define IDD_FRAMEBUFFERCLIENT_DIALOG 102 #define IDD_ABOUTBOX 103 #define IDM_ABOUT 104 #define IDM_EXIT 105 #define IDI_FRAMEBUFFERCLIENT 107 #def...
[ "arcaneenforcer@gmail.com" ]
arcaneenforcer@gmail.com
a75abcc49cf7b2a00cbdc9bfa80bf4cb32781118
e65a4dbfbfb0e54e59787ba7741efee12f7687f3
/textproc/sphinxsearch/files/patch-src_llsphinxql.c
39218873fc83988f03ceafddaa5964fcbf862ac7
[ "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports
86f2e89d43913412c4f6b2be3e255bc0945eac12
605a2983f245ac63f5420e023e7dce56898ad801
refs/heads/main
2023-08-30T21:46:28.720924
2023-08-30T19:33:44
2023-08-30T19:33:44
1,803,961
916
918
NOASSERTION
2023-09-08T04:06:26
2011-05-26T11:15:35
null
UTF-8
C
false
false
2,884
c
--- src/llsphinxql.c.orig 2018-02-03 15:30:11 UTC +++ src/llsphinxql.c @@ -1142,9 +1142,9 @@ extern int yylex (yyscan_t yyscanner); */ YY_DECL { - register yy_state_type yy_current_state; - register char *yy_cp, *yy_bp; - register int yy_act; + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; ...
[ "matthew@FreeBSD.org" ]
matthew@FreeBSD.org
a46ec8032aa39c32c26bb13662293c33ba3066bb
ea4e3ac0966fe7b69f42eaa5a32980caa2248957
/download/unzip/configd/configd-84/scutil.tproj/cache.h
3f1ad92d42cd8d5b88303a6bb1c2d5e88ed3efcd
[]
no_license
hyl946/opensource_apple
36b49deda8b2f241437ed45113d624ad45aa6d5f
e0f41fa0d9d535d57bfe56a264b4b27b8f93d86a
refs/heads/master
2023-02-26T16:27:25.343636
2020-03-29T08:50:45
2020-03-29T08:50:45
249,169,732
0
0
null
null
null
null
UTF-8
C
false
false
1,674
h
/* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source L...
[ "hyl946@163.com" ]
hyl946@163.com
760687eb8ad6b3a2b796013bb566b92f354751b8
15529482cbe32e986819c5dd6116b537529e5856
/tp10/main_fifo.c
a4c4b7b3cafb51be8284f0d4ef0effb8c40be89a
[]
no_license
upmc-rambo/archi2
e9f4736bd2cbff31f7e4968174b95e0d6e1414c0
9edff0f4dc98b197b5c821e73ad6112259ff6505
refs/heads/master
2021-09-15T09:15:01.569579
2018-05-29T16:19:10
2018-05-29T16:19:10
81,697,562
1
1
null
null
null
null
UTF-8
C
false
false
3,586
c
#include "stdio.h" #define DEPTH 4 #define NMAX 100 typedef struct fifo { int buf[DEPTH]; int ptr; int ptw; int sts; int lock; int depth; } fifo_t; volatile fifo_t fifo = { {},0,0,0,0,DEPTH }; /***********************************/ inline void lock_acquire(int* lock) { unsigned int del...
[ "noreply@github.com" ]
upmc-rambo.noreply@github.com
1fcab68211db1994180c3066954bd765cb3f911c
3d997dbe4d8879db0d43e68bf14b801ed90eb8a2
/multi2.c
deeda2d1cb38b6a2997dd1c7d1ef4043e516773b
[]
no_license
vidhyams/1234
e138c9644e6da9c609b658057f293b025bac6dbb
3ac464533e4a9d490a5362f23c2d5422a9175717
refs/heads/master
2021-01-01T19:03:03.985464
2017-07-27T08:48:54
2017-07-27T08:48:54
98,491,092
3
0
null
null
null
null
UTF-8
C
false
false
150
c
#include<stdio.h> void main() { int i,j; printf("enter the table you want"); scanf("%d",&i); for(j=1;j<10;j++) { printf("%d * %d = %d",i,j, i*j); } }
[ "noreply@github.com" ]
vidhyams.noreply@github.com
061b3ec50249e383e15e95cbd11794f636490bf5
b6aad23166f29eff041d7c74c6ea81ccaa4b37e3
/C_Training/T03_Osnovni_tipovi_na_podtoci.h
130155354ec87b54d64e8b3555c3d32cfb649115
[]
no_license
AndrejVelevski/QtWinSoft-Training
668138d47b2a8ea25011e85ea07d3c6e125afd2f
2ff83942ee712d960b80ac480398f0ff91ffb618
refs/heads/master
2023-02-13T12:49:51.213969
2021-01-07T08:02:01
2021-01-07T08:02:01
316,559,672
0
0
null
null
null
null
UTF-8
C
false
false
2,665
h
#ifndef T03_OSNOVNI_TIPOVI_NA_PODTOCI_H #define T03_OSNOVNI_TIPOVI_NA_PODTOCI_H #include <stdio.h> void zadaca03_01() { int num1, num2; printf("Vnesi dva celi broja:\n"); scanf("%d %d", &num1, &num2); if (num1 == num2) printf("Broevite se ednakvi\n\n"); else printf("%d e pogolem ...
[ "andrej_velevski@hotmail.com" ]
andrej_velevski@hotmail.com
78ecdabc42abe6dc79fccc59b4fcc8e72272e178
148009d09df3c513d56970d6dbbe9a27c99c032d
/Firmware/main.c
7b69fb5afecf323b704f45319c3c5396b707ca06
[]
no_license
xioTechnologies/Human-Harp-Player
6aa266a92c69c4e9f8785fc7c6caba4bfa5fffe0
20ff03c13e7986bde313d7f3f01fad31da08aa4f
refs/heads/master
2020-05-15T05:00:43.551286
2015-04-14T12:31:39
2015-04-14T12:31:39
21,579,292
1
0
null
null
null
null
UTF-8
C
false
false
3,018
c
/* * @file Main.h * @author Seb Madgwick * * Device: * dsPIC33EP512GM604 * * Compiler: * MPLAB XC16 v1.24 * * Peripherals used: * INT1 Imu.c * Timer 4,5 Timer.c * QEI1 Encoder.c * I2C1 I2C1.c * UART1 Uart1.c * * Interrupt priorit...
[ "social@x-io.co.uk" ]
social@x-io.co.uk
92ea835c960639807cf5658d0ff3b2ba28e62515
59ece90f04cc7273c07b85226b6fb13a304c060d
/ra/fsp/inc/api/r_usb_basic_api.h
41e6bd2468c5142c9a5eaca6cbec78666bb9d8a8
[]
no_license
xingsongyin/fsp
4ad418fb7f4adba4424047b618784debfa2d92bd
fc3e3e5cd1c98575f132e11e2e27b35f87525d2a
refs/heads/master
2022-08-04T17:59:35.686792
2020-05-29T16:39:04
2020-05-29T16:39:04
null
0
0
null
null
null
null
UTF-8
C
false
false
31,964
h
/*********************************************************************************************************************** * Copyright [2020] Renesas Electronics Corporation and/or its affiliates. All Rights Reserved. * * This software and documentation are supplied by Renesas Electronics America Inc. and may only be...
[ "flexdev@renesasgroup.onmicrosoft.com" ]
flexdev@renesasgroup.onmicrosoft.com
71fcd3de5f8f8ebdcb08cf3f99039d422dfc7650
9c9d1df368949d781750c53234a81b00acaa0655
/Arquivos/ex4.c
eb340c211af1eea80402dbf5f5851f1d8d2452c6
[]
no_license
marialuisamoreno/AED1
10a127d2afc66d5cc61091d63cd16713c24fedec
1ef9674a11ddba5d68a934649bdf9cfde77050cc
refs/heads/master
2020-03-29T14:40:39.945972
2019-09-04T14:08:45
2019-09-04T14:08:45
150,028,912
0
0
null
null
null
null
UTF-8
C
false
false
687
c
#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { FILE *f1, *f2, *f3; char c, d; f1 = fopen("ex4-arq1.txt", "r"); if (f1 == NULL) printf("Nao foi possivel abrir\n"); f2 = fopen("ex4-arq2.txt", "r"); if (f2 == NULL) printf("Nao foi possivel ...
[ "noreply@github.com" ]
marialuisamoreno.noreply@github.com
d9640619a443b0488896d9452a432f6635e1fa01
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/video/fbdev/extr_neofb.c_neofb_fillrect.c
fc25cb3f75db289ff0c414c733449715ff3a05f1
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,217
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
79b5ca110bd5c04b3b51878d3c84a9b7d12a8410
23cca0149362447d0e1b365c9e1de39a1cf5b053
/darling/include/bmalloc/PerProcess.h
04ba45de8618f99986b26a4a6d04482cb79dbdcb
[]
no_license
darlinghq/darling-bmalloc
d9f15ed959f1d41e5137217c7cc62bca8a683ee8
66c88bc0b977ef843a9eaa706d586d9cec2608da
refs/heads/master
2023-05-14T00:52:48.186937
2023-05-12T05:26:03
2023-05-12T05:26:03
100,127,335
3
1
null
2023-05-12T05:26:04
2017-08-12T17:24:33
C++
UTF-8
C
false
false
29
h
../../../bmalloc/PerProcess.h
[ "curioustommy@protonmail.com" ]
curioustommy@protonmail.com
2c1d0639e51532da3ecbbb79ca81e65e16c1a807
d5a7f334cf04c59cafbb96c5ae1d9b95d095e169
/lns_gradientStop.c
b85347c0fbafc1f0c7b0f2c93a7c3c44dd4a98a9
[ "Zlib" ]
permissive
echo-Mike/lnanosvg
818630fe2f3f24faa459172d58d7a7e721320caf
79fe5f5f224a01e36fdeeed9120b3772b61422f3
refs/heads/master
2020-04-05T17:30:42.706018
2018-11-18T14:33:27
2018-11-18T14:33:27
157,064,361
0
0
null
null
null
null
UTF-8
C
false
false
3,085
c
#include "lns_constructors.h" LNS_GEN_STRUCT_DEF_STRING(gradientStop); //$------------------------------------------------------------------------------------------------ // CONSTRUCTORS //#------------------------------------------------------------------------------------------------ LNS_CONSTRUCTOR(gradientStop, ...
[ "mdemchenko@upto7.solutions" ]
mdemchenko@upto7.solutions
6843595e29979fba4f71fe0bb9166c16e8fa9947
2e288aedc06c5da26f14713ce69b6aad58ba0f34
/04-Apllication/main.c
e7b759d6cd5ae02276e5bdc4451d88d49ce1520f
[]
no_license
karimanzakzouk/CA_project
b07276efb4c5ab683eed50704d1dc7459eaeecf1
3aac9149b8ce920a1c98566dc675ca73a041153c
refs/heads/master
2022-04-16T04:15:36.667779
2020-04-09T15:27:22
2020-04-09T15:27:22
null
0
0
null
null
null
null
UTF-8
C
false
false
1,768
c
#include <stdio.h> #include <stdlib.h> #include "diag/Trace.h" #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" #pragma GCC diagnostic ignored "-Wmissing-declarations" #pragma GCC diagnostic ignored "-Wreturn-type" #include "STD_TYPES.h" #include "RCC_interface.h" #include "GPIO_interf...
[ "basmaabdelhakim95@gmail.com" ]
basmaabdelhakim95@gmail.com
80af14ba12b8ed19d9c8409732b49a9039a14e35
3e2a0a09bb78b5e0194f091449f5a53036bf1709
/Timer0.h
9220a761d5f8bc66e8b23a19b26389e8ead07aa7
[]
no_license
srinjoym/target-lab10
f6b815d3ac314ca737cfe5bf654ced9f6167e106
f87a3165641c13e91f5dc8fffc44c4370146bac3
refs/heads/master
2021-01-20T08:01:01.910174
2017-05-05T08:57:55
2017-05-05T08:57:55
90,081,108
1
0
null
null
null
null
UTF-8
C
false
false
1,439
h
// Timer0.h // Runs on LM4F120/TM4C123 // Use Timer0 in 32-bit periodic mode to request interrupts at a periodic rate // Daniel Valvano // March 20, 2014 /* This example accompanies the book "Embedded Systems: Real Time Interfacing to Arm Cortex M Microcontrollers", ISBN: 978-1463590154, Jonathan Valvano...
[ "srinjoymajumdar@wireless-10-146-69-255.public.utexas.edu" ]
srinjoymajumdar@wireless-10-146-69-255.public.utexas.edu
f9662543e315578f520126f1ecf153feadb364e6
566c7682059d0b46ffba147e7a9d4e633b83a5ff
/src/libelf/gelf.h
b6e07f97903a7481594a8d25f566a7af52a0a454
[ "MIT" ]
permissive
Leseratte10/brainslug-wii
46d4f02bbfee403a697f8e1d9a588c44b172f5aa
f768d32b672bc3561c0d120fd18a03fc1522b2eb
refs/heads/master
2023-04-07T06:09:50.604944
2021-02-02T10:45:43
2021-02-02T10:49:53
335,254,317
1
0
MIT
2021-02-02T10:41:55
2021-02-02T10:41:54
null
UTF-8
C
false
false
4,958
h
/*- * Copyright (c) 2006,2008 Joseph Koshy * 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, this list of c...
[ "awc32@cam.ac.uk" ]
awc32@cam.ac.uk
3e7d2cfd1272fd37e05400fcf5302f86b00da226
242b36fa359cb320097b7482f5ec0b4eb3fa13f2
/GPIOEx05/src/main.c
1a3a69c451666b33ae0dacffe693f95b887f1b82
[]
no_license
elecage/FOS_Cortex_M_Educenter
5ed8cb81ebd4ea8ab46c7e445c8d134ba3eaf573
8d9d77ef336de5b9cab6d22aff8077234e56654e
refs/heads/master
2021-01-19T09:55:09.555513
2017-03-03T09:16:12
2017-03-03T09:16:12
82,150,816
0
0
null
null
null
null
UTF-8
C
false
false
2,485
c
/* * @file GPIOEx05/src/main.c * @author Hyeon-min Shim * @version V1.0 * @date 26-November-2016 * @brief GPIO 사용 예제 1 */ /* Includes ------------------------------------------------------------------*/ #include <stdio.h> #include <stdlib.h> #include "diag/Trace.h" #include "stm32f4xx_hal.h" ...
[ "hmshim@du.ac.kr" ]
hmshim@du.ac.kr
69ab44632b7249616e42aef97bfa07583720dc5f
feb07f2ba98e90064ff2927d35d15b38c6b2ecd4
/src/main.c
538fd37c7d513a2e34f466f60078ed1c79a64bee
[]
no_license
wenjiedou/SCGW_2
220ba3ae0dc9352de067a240a9c31283ce89756f
b533a7320a54cf6a8075c1ab15a022575481ec8e
refs/heads/master
2020-08-28T16:50:06.868622
2020-01-07T20:16:18
2020-01-07T20:16:18
217,759,489
0
0
null
null
null
null
UTF-8
C
false
false
670
c
#include <stdlib.h> #include <stdio.h> #include <math.h> #include <mpi.h> #include "gw.h" int main(int argc, char *argv[]){ GWPARAM *gwParam = NULL; int numProc; int myid; // printf("I am here! haha\n"); MPI_Init(&argc,&argv); MPI_Comm_size(MPI_COMM_WORLD,&numProc); MPI_Comm_rank(MPI_COMM_WORLD,&myid);...
[ "douw@sas.upenn.edu" ]
douw@sas.upenn.edu
1bf5321c3ccf76e652612be7b3221ac753840acd
0260c97c1f5206fd122d0f2f3bddd177fa242708
/src/builtin/commit.h
07fc34c162372a331c2b6b40fcb23a8f721a9dba
[]
no_license
sba1/simplegit
0b5bd89c18adfebb7fa71371e7f92eb9a1270f0f
b366b16e88fed62ddc9cf5d986a13ddcf59c5b86
refs/heads/master
2023-01-22T05:36:27.916272
2023-01-19T21:57:08
2023-01-19T21:57:08
7,506,910
58
23
null
2023-01-19T21:57:10
2013-01-08T18:38:41
C
UTF-8
C
false
false
132
h
#ifndef GIT_COMMIT_H #define GIT_COMMIT_H #include <git2.h> int cmd_commit(git_repository *repo, int argc, char **argv); #endif
[ "mail@sebastianbauer.info" ]
mail@sebastianbauer.info
eeb04aa846ac5cec2c95d692853c9708aa50056d
e99592f5f7a8c58c4619ca42d3ccb2292b49f332
/week11_1.1/week11_1.1/resource.h
b80f69a763a3ebb8b16afca6b3d96f04b47fe8fe
[]
no_license
tseebo/Vc
e19318b5c7daad2e0490edb08388a104f6663747
78e65b17d1443247dccde04e2e27839a0d16e175
refs/heads/master
2021-03-21T15:04:10.567853
2020-07-02T11:27:07
2020-07-02T11:27:07
247,305,884
1
0
null
null
null
null
GB18030
C
false
false
886
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ 生成的包含文件。 // 供 week11_1.1.rc 使用 // #define IDD_ABOUTBOX 100 #define IDP_OLE_INIT_FAILED 100 #define IDD_WEEK11_11_FORM 101 #define IDP_FAILED_OPEN_DATABASE 103 #define IDR_MAINFRAME 128 #define IDR_week11_1...
[ "1305771558@qq.com" ]
1305771558@qq.com
d1921cb952dbb97100e1c261d185c0fff871d4e9
d16c606a1ac0ae118dc65883c7ab46aba0aef6f0
/GPIO_Tiva/gpio.h
115961439097ff1b235082fa797230af496f89b2
[]
no_license
eslamtayseer/AutoSarComStack
5bd1dcf785c1d88329427c9c8e8a734468490cbe
6d13463b8a63ea527e064047c118e85cba5ab31e
refs/heads/master
2022-12-05T11:14:48.379947
2020-08-25T10:28:10
2020-08-25T10:28:10
244,898,015
1
0
null
null
null
null
UTF-8
C
false
false
324
h
#ifndef GPIO_TIVA_H_ #define GPIO_TIVA_H_ #include <stdint.h> #include <stdbool.h> #include "inc/hw_memmap.h" #include "driverlib/debug.h" #include "driverlib/gpio.h" #include "driverlib/sysctl.h" void GPIO_Init(void); void GPIO_ToggleRedLed(void); void GPIO_SwitchOnRedLed(void); void GPIO_SwitchOffRedLed(void); #en...
[ "mahmoudkhalil11@gmail.com" ]
mahmoudkhalil11@gmail.com
4d0b2a76061ab5994a372606174fbc5dad4728f7
290db2bda06e284a2c8def2c699ccb4f39cbcf0a
/backtrack2.c
b11de4cc57a8158fa6954fc04ffcce396e468c1f
[]
no_license
bmerrill42/fillit_redux
c38d392ee164b53dcdb06f7ac950f33ae24b0ce7
b7c567ee0600de2d0f1b30f59d8d0959c282f1a0
refs/heads/master
2020-03-18T20:51:25.445771
2018-05-28T06:17:25
2018-05-28T06:17:25
135,242,722
0
0
null
null
null
null
UTF-8
C
false
false
1,833
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* valid2.c :+: :+: :+: ...
[ "agifford@student.42.us.org" ]
agifford@student.42.us.org
38bb0918f63a2cbae9412f7df03fff969d1a9afb
cb796d9cc879e8caf80cac00a3953c43b312f21c
/thirdparty/wireless/avr2130_lwmesh/apps/wsndemo/saml21_xplained_pro_rf212b/conf_clocks.h
5f01d6038a589073ee2db74dbf21b826f5b3d708
[]
no_license
engeneeringhall/asf
ab57668f7e999c647c1b45be1522ca93e4eb772c
4a77ebe534c2f0386730ad8d3a03168f22c23e22
refs/heads/master
2020-12-29T01:10:25.155604
2015-09-17T07:32:04
2015-09-17T07:32:04
null
0
0
null
null
null
null
UTF-8
C
false
false
9,473
h
/** * \file * * \brief SAM L21 Clock configuration * * Copyright (C) 2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * ...
[ "it.daniher@gmail.com" ]
it.daniher@gmail.com
eb678e3631384039772d844b96b04d66c0fd1af2
09a449c87ca894410be1a278283f9b3f914e3d8f
/src/utf8/chartorune.c
19122056db77c05f51680f81c0bce243dc518609
[ "LicenseRef-scancode-public-domain", "Unlicense" ]
permissive
eltanin-os/tertium
2f665d0c69762e9e7abc4c1629cd1ce1f32c8ecd
c9935cdf0e7f4d4dca0a2698cc89075295a5c2c5
refs/heads/master
2023-01-24T00:12:42.308465
2023-01-20T19:13:37
2023-01-20T19:13:37
163,863,452
11
2
Unlicense
2023-08-25T18:35:45
2019-01-02T16:18:40
C
UTF-8
C
false
false
147
c
#include <tertium/cpu.h> #include <tertium/std.h> int c_utf8_chartorune(ctype_rune *p, char *s) { return c_utf8_charntorune(p, s, C_UTF8_MAX); }
[ "eadwardus@disroot.org" ]
eadwardus@disroot.org
efab15902d914e464162dddc6dbc7bff3dbd5ef7
2aa56ba6e24be393e89efc96962050898bc6efb1
/rc.c
b3040976c0223c8526259e48d214a4d92592c837
[]
no_license
maxsieber/AVR_RC
19a55881ebf8bb46cf7ae1a18616e7d443ecc52e
73cec42bf0ddf873aa498d40db1d7c1c63abc428
refs/heads/master
2020-11-30T23:31:02.084529
2013-07-15T00:30:11
2013-07-15T00:30:11
null
0
0
null
null
null
null
UTF-8
C
false
false
1,896
c
/*####################################################################################### Erzeugen eines RC Summen Signals Copyright (C) 2006 Ulrich Radig #######################################################################################*/ #include "rc.h" unsigned char rc_channel_counter = 0; unsi...
[ "max-sieber@gmx.de" ]
max-sieber@gmx.de
b823508775e3e63d96ae29b4fbf77195ffdf6ff6
5a3e770da0569565e69a393dc82fefdefb1bce7a
/game_objects/game_scene/player/player_cursor.c
8655f8cd1e210bfcdea1ae16a93c0a1db66b3f0d
[]
no_license
iDommel/MUL_my_rpg_2019_github
84fc9422a4008c4f1f8cc2127a6c6d570dcfd618
d6946cdba1d0eaac75c29ee7ef103d9e20caa53e
refs/heads/master
2022-04-25T15:11:35.093472
2020-04-30T21:55:42
2020-04-30T21:55:42
249,982,904
1
0
null
null
null
null
UTF-8
C
false
false
1,653
c
/* ** EPITECH PROJECT, 2020 ** MUL_my_rpg_2019 ** File description: ** player_cursor */ #include <stdlib.h> #include "my_rpg.h" static sfIntRect *fill_player_rect(void) { sfIntRect *rect = malloc(sizeof(sfIntRect)); rect->height = TILE_HEIGHT; rect->width = TILE_WIDTH; rect->left = 0; rect->top =...
[ "iona.dommel-prioux@epitech.eu" ]
iona.dommel-prioux@epitech.eu
b0938833dd560586917b8823c371b3327f8947dd
481241218e9125a76091c776d70e0243ef2397d6
/data_structures_queue.c
4f887c710ad1e616bff505ad0a652626224add13
[]
no_license
newbiewxx/data_structures_in_c
f4a399be5760e0a6c8406b038fc0f162f2f0f71b
6672b278d7f03dce017a334521a638e37767044e
refs/heads/master
2020-08-20T01:24:14.783340
2019-11-17T10:12:25
2019-11-17T10:12:25
215,971,185
0
0
null
null
null
null
UTF-8
C
false
false
1,631
c
/* 2019年10月28日 22:16:00 */ #include<stdio.h> #include<malloc.h> /* 循环队列的实现 */ // 循环队列的结构体定义 typedef struct { int front; int rear; int maxSize; Element * element; }Queue; // 创建一个能容纳mSize个单元的空队列 void Create(Queue *Q, int mSize) { Q->maxSize = mSize; Q->element = (ElemType *) malloc (sizeof(ElemType) *mSize); // ...
[ "noreply@github.com" ]
newbiewxx.noreply@github.com
12dd389c5b3f4d0dd266407a2f7817b618aa4f8c
f73185261c7db10021fcbd031f370a04f3a50a61
/timeDelay.c.txt
7617811772582b03b33afab90bc1902738362b73
[]
no_license
AnushkaBansalAB/RTOS-LAB
ad7e538afc5ddaf673e315b4762b931413101173
769dd378ae00975c2615d5a195887ce8df8655b9
refs/heads/master
2022-12-16T20:20:04.088424
2020-09-11T16:22:49
2020-09-11T16:22:49
null
0
0
null
null
null
null
UTF-8
C
false
false
535
txt
#include <stdio.h> #include <time.h> #include <stdlib.h> #include <conio.h> void delay(float sec) { int millis = 1000 * sec; clock_t start_time = clock(); while (clock() < start_time + millis) ; } int main() { int i = 0; float delayTime; printf("\nEnter the delay (in s) - "); scanf(...
[ "noreply@github.com" ]
AnushkaBansalAB.noreply@github.com
d1d995e4003d5db0ddfe37ed65093ca28c155f9b
4f727951131cf179b9dabcc957fa0d6e017acf7d
/Labs/NetProg Lab7/code/UDP EchoServer/udpClient.c
80b82f561e8fc3a33822f9936aed650a98f3c5cf
[]
no_license
BirAnmol14/Network-Programmig-IS-F462-
ff2d15b243db849f3a85675cb0bf37bd738a7911
ee76006e0db796426c771c7566b17930f18c8980
refs/heads/main
2023-04-27T01:53:07.446092
2021-05-02T05:30:38
2021-05-02T05:30:38
350,078,834
0
0
null
null
null
null
UTF-8
C
false
false
1,711
c
#include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <arpa/inet.h> #include <unistd.h> #include <string.h> int main(int argc,char * argv[]){ if(argc <2 || argc >2) { puts("Add <Server Port> in args"); exit(1); } int port = atoi (argv[1]); struct sockaddr_in server; server.sin_port = htons(po...
[ "f20180261@pilani.bits-pilani.ac.in" ]
f20180261@pilani.bits-pilani.ac.in
3689bb8f640b10ec5f05a89bcdc9f39eebdd87a0
46367579a54a09dd220dd9a678b1452f06897f11
/tags/r1_1beta1/src/H5S.c
a5c7c9cc304897d952792e7d3ec75386cdf2e9b6
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
TPLink32/hdf5
33ff24c9b6133f0f51cb6cc2b722fba7bb1777dd
0d6987c15284bd9f34c7e44452a152833d42a738
refs/heads/master
2021-05-31T01:15:39.463663
2016-04-14T23:02:09
2016-04-14T23:02:09
null
0
0
null
null
null
null
UTF-8
C
false
false
50,683
c
/**************************************************************************** * NCSA HDF * * Software Development Group * * National Center for Supercomputing Applications * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For ...
[ "(no author)@dab4d1a6-ed17-0410-a064-d1ae371a2980" ]
(no author)@dab4d1a6-ed17-0410-a064-d1ae371a2980
3a49022b25e1e3fc3a80e9e9700b51b9affc8b9d
f86ad831c70a00347cf6e0353cf217273c7f7bb9
/src/proto/misc2.pro
6090bb0676a752c2aedf2de25da6719844ce2bcf
[ "Vim" ]
permissive
frarees/macvim
09cc2cfe17f14334afc0a7c70a582e5787be8381
5de428cde45822e27c2644e9add4eaae2883f7c0
refs/heads/master
2020-12-27T05:35:48.855473
2020-04-13T07:19:15
2020-04-13T07:19:15
237,778,427
0
0
NOASSERTION
2020-02-02T13:52:19
2020-02-02T13:52:18
null
UTF-8
C
false
false
4,285
pro
/* misc2.c */ int virtual_active(void); int getviscol(void); int coladvance_force(colnr_T wcol); int getviscol2(colnr_T col, colnr_T coladd); int coladvance(colnr_T wcol); int getvpos(pos_T *pos, colnr_T wcol); int inc_cursor(void); int inc(pos_T *lp); int incl(pos_T *lp); int dec_cursor(void); int dec(pos_T *lp); int ...
[ "Bram@vim.org" ]
Bram@vim.org
96c2294dd114ee830c8cb93ce50325954de754a2
20d8d679db8fff44b55a0f66e34e1a2bc76b4d95
/b3rebirth/Inc/i2s.h
2fccc794e51853468650113d9e5bd68b0c1ca37c
[]
no_license
Maxter315/B3Rebirth
40f024c288f0cf4d6633d4cb2c8332326bad7ad2
c932c442595bbe4690a3d3d06d692149a7afdf20
refs/heads/master
2023-04-16T08:12:46.040125
2021-04-29T21:48:12
2021-04-29T21:48:12
270,613,032
0
0
null
null
null
null
UTF-8
C
false
false
1,477
h
/** ****************************************************************************** * File Name : I2S.h * Description : This file provides code for the configuration * of the I2S instances. ****************************************************************************** * @...
[ "maxter315@gmail.com" ]
maxter315@gmail.com
68d80da785dcbc92ad6550791d912bcab3c03ff2
de7d5197e8a01402679f6a37d9a56af6751c6b44
/c/c_primer_plus/10/17.c
04b55c115a091103968c2f322ac327831c9c80e6
[]
no_license
mengxunQAQ/learn
116af9b1d8c64ffce017fd8619db4c80803090b3
5d1aa6c706db2750e3a909ff19df942173478896
refs/heads/master
2023-08-21T11:32:34.421833
2023-08-16T08:36:43
2023-08-16T08:36:43
140,584,768
0
0
null
null
null
null
UTF-8
C
false
false
1,204
c
// 处理二维数组的函数 #include <stdio.h> #define ROWS 3 #define COLS 4 void sum_rows(int ar[][COLS], int rows); void sum_cols(int [][COLS], int); // 省略形参名 int sum2d(int (*ar)[COLS], int rows); // 另一种语法 int main(void) { int junk[ROWS][COLS] = { {2, 4, 6, 8}, {3, 5, 7, 9}, {12, 10, 8, 6} }; ...
[ "mengxun1122@163.com" ]
mengxun1122@163.com
793a30a0507a1314747124896c09bd9412b1743c
3c7eebaa9d81f2256001c9032b5d65186aecd1a8
/src/ftpserver.c
9ef00e9b2f63a5ab917022cbd379c1c7ca7b5b42
[]
no_license
lserraga/FTP
a6905853e6f926ab5df105c22a7fc6f6f20e565a
83f2a8d27ea206ae4d3046a0c8af64e35ea602b5
refs/heads/master
2020-12-03T06:34:27.639827
2017-06-30T11:48:02
2017-06-30T11:48:02
95,700,426
1
0
null
null
null
null
UTF-8
C
false
false
13,214
c
#include <sys/types.h> #include <sys/socket.h> #include <strings.h> #include <string.h> #include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/errno.h> #include <netinet/in.h> #include <sys/stat.h> #include <fcntl.h> #include <dirent.h> #include <sys/sendfile.h> #define MAXLINE ...
[ "noreply@github.com" ]
lserraga.noreply@github.com
0d5de4b17042c7fabeb60b739c815ec32fd93fd0
9bf32844a35294b4e91928ee6974ce430c381582
/test/test_s.h
be25a192d735a982aa8357b6ef08f7dd43fdd00b
[]
no_license
viroulep/plasma
8fd6a640f8ba06a2d04635aad9ec586322f9a332
ccc034a1cbbf47c2351d916c9f270502edddb8a3
refs/heads/master
2021-01-17T22:09:35.939938
2017-03-06T04:02:15
2017-03-06T04:02:15
84,189,563
0
0
null
2017-03-07T11:05:37
2017-03-07T11:05:37
null
UTF-8
C
false
false
2,740
h
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from test/test_z.h, normal z -> s, Mon Feb 6 14:07:17 2017 * **/ #ifndef TEST_S_H #define TEST_S_H #include "test.h" //===============================================...
[ "jvlima@inf.ufsm.br" ]
jvlima@inf.ufsm.br
45ba87c07343c052a55f088cc0713bc91cc8e415
b1f0dedfba0e6fba35eb8c8c99324997fcfcf1f5
/Bootloader/Project/mcu/apollo/regs/am_reg_jedec.h
ee6888a4b901fb1a19175f377a9b2274323c9c93
[ "BSD-3-Clause" ]
permissive
xsh381503442/xsh
8923692059fc3a0a18b115ec45611b4128a2563c
cdf193b40076ecc992d591f837328f403fab898d
refs/heads/master
2023-06-21T19:56:13.637607
2023-06-20T02:54:22
2023-06-20T02:54:22
71,120,946
0
0
null
null
null
null
UTF-8
C
false
false
10,215
h
//***************************************************************************** // // am_reg_jedec.h //! @file //! //! @brief Register macros for the JEDEC module // //***************************************************************************** //**********************************************************************...
[ "381503442@qq.com" ]
381503442@qq.com
9b9f69585077bc701db3d19dc5af3da0a7244407
41cd2ed2991836b93e7a28e088df346074ed4bb4
/set216.c
d20db48fa41ea2bca3cb337e36a17bbfd7e44c0c
[]
no_license
gokul246/gokul-rg
cc0dfe4e8a6213ad53ad2852556c45dead7b1e3a
837fc85cd623faef7dcea76cca0ff0eff84053e1
refs/heads/master
2021-09-06T14:08:00.269523
2018-02-07T09:42:11
2018-02-07T09:42:11
120,164,841
0
0
null
null
null
null
UTF-8
C
false
false
216
c
#include<stdio.h> #include<math.h> int main() { int e,f,g=0,i,d; scanf("%d",&a); d=a; for(i=1;e>10;i++) { f=a%10; e=e/10; g=g+pow(f,3); } c=c+pow(a,3); if(d==g) { printf("YES"); } else { printf("NO"); } return 0; }
[ "noreply@github.com" ]
gokul246.noreply@github.com
c79a38b6dacd732bc164dda636bb4060ef8b951c
ac362bb8969d647cd219430bc71c831d894e531c
/sys/arch/arm/sa11x0/sa11x0_comreg.h
38ac5dd0aa50b18ff0f8fa754048340662f0c3ca
[]
no_license
noud/mouse-bsd-4.0.1
efb3b16fcc872ab227e6bb651cf1e836796a0804
4c0a1e08df407a759afac2d6a98507df94f5f814
refs/heads/master
2023-02-24T23:42:54.060718
2020-08-16T20:10:53
2020-08-16T20:10:53
334,536,412
0
0
null
null
null
null
UTF-8
C
false
false
3,996
h
/* $NetBSD: sa11x0_comreg.h,v 1.2 2006/04/11 15:24:24 peter Exp $ */ /*- * Copyright (c) 2001, The NetBSD Foundation, Inc. All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by IWAMOTO Toshihiro and Ichiro FUKUHARA. * * Redistribution and use in source...
[ "mouse@Rodents-Montreal.ORG" ]
mouse@Rodents-Montreal.ORG
4e15f789c429db5654caa89d74193708513c1989
060128aac2d94644aa4dfb27d7dd4585cca15f17
/File Allocation/linked.c
b8b8002f01a1f309dec92b74ee0434b3df369e03
[]
no_license
vsushruth/OS-Lab-2019
8dfa7d693ce6c001613540939fab23db2008e3a9
384bc84778c426d8fac2affec29a8c72a4df2c8a
refs/heads/master
2020-05-05T08:29:11.573903
2019-05-02T15:43:51
2019-05-02T15:43:51
179,866,219
0
0
null
null
null
null
UTF-8
C
false
false
3,253
c
#include<stdio.h> #include<stdlib.h> #include<stdbool.h> struct memory { int fileStoredID; bool allocated; int next; }; struct files { int ID; int startAdd; int memReq; bool alloted; }; int main() { int i, j, k, flag = 0, temp = 0; unsigned int nextAdd, start; int memSize, noF...
[ "noreply@github.com" ]
vsushruth.noreply@github.com
51b836ea24614aebf8b0472d9e80a5ebe3c97389
5fa785d5ee4b54f54366956b678de71d49b59436
/W828C_V3_yigaoKuaiYun/src/module_Scanner/option/barcode_api.h
cddca0a2e29760a4636a9668a8d61d7449a4091e
[]
no_license
gdgly/W828_YiGao
22904ad425bf902bbf79fc2f8524658579db958a
f2a50af7eaca21a0ca959b08b7b156629ac17196
refs/heads/master
2021-05-26T12:28:02.190766
2013-03-14T03:58:14
2013-03-14T03:58:14
null
0
0
null
null
null
null
GB18030
C
false
false
5,591
h
#ifndef BARCODE_API_H #define BARCODE_API_H typedef void* HANDLE; #define BARCODE_SUCCESS 0 #define BARCODE_ERROR -1 #define BARCODE_ERR_DEC_MORE_DATA -2 #define BARCODE_ERR_DEC_CHECK_CODE -3 #define CODE_CTRL_FNC2 206 //code128 FNC2 #define CODE_CTRL_FNC3 207 //code128 FNC3 #define CODE_CTRL_FNC4 20...
[ "lubin1229@gmail.com" ]
lubin1229@gmail.com
741e9c994f8a513d967b9279fe72b29121821425
acceb80c69a6757c8d177b3a95406bdf4aa9f9a1
/device/tryscreen/src/IconsData.h
4caf2fdce022e5f6544655a9b5b995de698c589a
[]
no_license
zpeleg/SpotifyScreen
4485dcda03d96f813b5e2b97f0a7063558fe1088
350982314ef0d6363743dbbb6604ba37e4db2ff4
refs/heads/master
2021-01-18T22:41:22.891583
2017-05-17T11:52:42
2017-05-17T11:52:42
87,066,370
0
0
null
null
null
null
UTF-8
C
false
false
1,337
h
// // Created by ziv on 02/05/17. // #ifndef TRYSCREEN_ICONS_H #define TRYSCREEN_ICONS_H #define pause_width 16 #define pause_height 16 static unsigned char pause_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x...
[ "zivpeleg@gmail.com" ]
zivpeleg@gmail.com
b7d029d212290c81442bfa18ddc6d99a15fe5361
a52d49ada7b7d39cd4934e0c49c7569274b26b72
/linked_lists/ft_list_clear.c
71b319db850274b2eb3f89f3efb68af530428cd9
[ "MIT" ]
permissive
arimendelow/useful-C-funcs
b492a21c51773507ea48ab785b291c66f85e4e21
a276f257f506439d3807bfaddba9c3f4509e8e51
refs/heads/master
2020-05-05T05:51:02.238023
2019-04-05T23:26:47
2019-04-05T23:26:47
179,767,327
0
0
null
null
null
null
UTF-8
C
false
false
1,136
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_list_clear.c :+: :+: :+: ...
[ "ari@mendelow.me" ]
ari@mendelow.me
cf2e8afcc3dec15149b1215e5059bb4e28aafb13
9ead6d8802a24d49aebc805cd50e3a7f48dcccf4
/WDK-Samples/Microsoft Windows XP SP1 DDK (2600.1106)/src/video/displays/3dlabs/perm3/disp/gdi/pxrxxfer.c
d7f4e16a4f8c97f12267bcce6cd9915767fb9536
[]
no_license
tdyx87/Windows-samples
9048295507b03ee83f27e8c070a5b88b9aded0aa
554b4fa23c8e10edbe55aa3e6a64ae73a636e3b8
refs/heads/master
2023-04-29T00:24:27.771986
2016-09-30T09:00:49
2016-09-30T09:00:49
null
0
0
null
null
null
null
UTF-8
C
false
false
70,391
c
/******************************Module*Header**********************************\ * * ******************* * * GDI SAMPLE CODE * * ******************* * * Module Name: pxrxXfer.c * * Content: Bit transfer code * * Copyright (c) 1994-1999 3Dlabs ...
[ "0x9dec1980@gmail.com" ]
0x9dec1980@gmail.com
d6b26f773b6533b1013dc8f408aefc2aa5b52029
a9f6cb83c808507e61d6515056767b18373633b1
/libft/ft_putendl_fd.c
f0ea0954c6547bc6964cff438c1e01e7f71cb3c6
[]
no_license
zloboglas/filler
e33f754389e1134aeb64613963cba159cd486b5a
64fcbf1777ac345de187fceae630fec2a760241f
refs/heads/master
2020-06-09T00:06:59.449270
2019-06-23T10:00:34
2019-06-23T10:00:34
193,331,716
0
0
null
null
null
null
UTF-8
C
false
false
1,033
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl_fd.c :+: :+: :+: ...
[ "pavelpro9869@gmail.com" ]
pavelpro9869@gmail.com
0a302277ef710564c14aaf33f4ac65574daffb71
793e9eeaa2b3018fac9fd7964eb2e5ebd11a4fa2
/phd_thesis/macros/Gaussian_CDF.C
ff6cbb24c8c60a0a188e2e8c4421c4faee5c6d4c
[]
no_license
attikis/rootMacros
2c516456c1e39e4306eb433925f5ca39f9ad9599
64e7e779f5b19bfbe2b28a2058b829c57b953c3d
refs/heads/master
2021-05-09T21:41:31.447907
2019-07-18T07:15:07
2019-07-18T07:15:07
118,733,665
3
0
null
null
null
null
UTF-8
C
false
false
9,558
c
//####################################################################### // -*- ROOT macro-*- // // Original Author: Alexandros Attikis // Created: 25 April 2012 // Institute: UCY // e-mail : attikis@cern.ch //####################################################################### #include <s...
[ "attikis@cern.ch" ]
attikis@cern.ch
09145c05b5296749b4b46f1a38bad4f227cf215b
57a7860785a218b9c8281205f40dd0622380340d
/src/DSP2833x_EPwm.c
2839e80afd29976c9aa31330b2a6580ea5c30009
[]
no_license
dhr1996/Microgrid-Simulation-System
2ea8ae8b4691d4cbc41221313b72be1fb710039e
49b7faad2e17e5a492b1651295826ed052ceb41f
refs/heads/master
2020-03-06T19:25:00.824918
2018-03-27T18:13:36
2018-03-27T18:13:36
127,027,389
0
0
null
null
null
null
UTF-8
C
false
false
11,340
c
// TI File $Revision: /main/1 $ // Checkin $Date: August 18, 2006 13:46:19 $ //########################################################################### // // FILE: DSP2833x_EPwm.c // // TITLE: DSP2833x ePWM Initialization & Support Functions. // //########################################################...
[ "noreply@github.com" ]
dhr1996.noreply@github.com
f2a5b132920342c09efcee5e2fcd22f176319150
a45f6c554edf6eaeebfac7653e6296f452f18c4f
/sotw/fx_parc_expo/source/parc_expo.h
4952dc693b164e557b50020dc5912e6ad9226b41
[]
no_license
g012/flush
242995684bcdf338ceb2e995d65d0c589600fe5c
d2f9b1ef8cac3a8e0628d99a1219d5a9333ee7ff
refs/heads/master
2023-03-29T11:56:23.466162
2021-04-12T11:35:23
2021-04-12T11:35:23
357,168,991
0
0
null
null
null
null
UTF-8
C
false
false
247,572
h
// parc_expo.h // Converted by gfx2gba (v1.03, Nov 28 2001) - www.gbacode.net // // Original file : parc_expo.pcx, PCX (Zsoft Paintbrush) // Original size : 240 x 160 pixels // Output format : 8 bit // Converted on : Sun Mar 22 18:39:07 2015 // // FreeImage image library (v2.4.2) // FreeImage is...
[ "leclerc.pascal@gmail.com" ]
leclerc.pascal@gmail.com
0cd8d0fff06fa0dafdf72e381f1201f8b0a8e1f5
2f2e1f14f3959b301125e0edb9c0c32eb05b188b
/libft/ft_putendl.c
2fbd2e269ac53db24348ca9165ba0173ba2f3922
[]
no_license
msyleung/get_next_line
fb1641e99ebba23b401cbbc2f28e69294f4b0c71
f0b2f36f15faff8f1b6eb586d9f0321be389dbdf
refs/heads/master
2021-01-22T09:48:41.202886
2017-04-03T19:42:10
2017-04-03T19:42:10
81,974,961
0
0
null
null
null
null
UTF-8
C
false
false
1,073
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: ...
[ "misyleung@gmail.com" ]
misyleung@gmail.com
5bfa6961d9dc63472e07e49a4dac1b489035160e
90decac301839ca9e98b9645601e6b8cc4f50243
/Tarefas/10-30 Tarefa H/bib/UF.c
09dac75e3e60b81aee3ce4644c2c13c595bff013
[ "MIT" ]
permissive
vitorsrg/MAC0328-2019.2
78c5c4b47122e1791a4c33144c6ffce497e4c47d
bb61b0f24bed0bf48d7514e9cb78d6520109f140
refs/heads/master
2020-07-31T11:36:02.593870
2019-11-08T22:23:39
2019-11-08T22:23:39
210,591,361
0
0
MIT
2019-10-14T04:35:16
2019-09-24T11:57:12
C
UTF-8
C
false
false
1,515
c
// MAC0328 (2019) // Altere, modifique, e acrescente à vontade. Sugiro marcar os trechos // de código modificados/acrescentados com um comentário do tipo // "// novo". Preserve o meu bom layout (veja www.ime.usp.br/~pf/ // algoritmos/aulas/layout.html) e não use tabs. // Este arquivo: UF.c (codificação UTF-8) // Da...
[ "vitorssrg@gmail.com" ]
vitorssrg@gmail.com
bd0911c35bd7e43cb7a139bc69216716dcb15652
d02fcdcc946dd081ec2c41e5cb23c0851ab7038b
/MessageQueue/msg3.c
c036ecd7ee939f7d7539e38a589e1fb6443443b1
[]
no_license
chemchemnaresh/Advanced-C
f710bc2b6deb1f75a2ec6abd84885cdbb8e9d682
5d2dfe52d7d89434940f4305938ed71e134495be
refs/heads/main
2023-08-11T08:06:06.889768
2021-09-29T10:40:17
2021-09-29T10:40:17
null
0
0
null
null
null
null
UTF-8
C
false
false
1,252
c
/** * this program creates the message queue and read the message from the mesaage queue * filename : msg3.c * author : Lakshmi narayana S * email : narayana8522@gmail.com * date : 7 Sep 2021 */ /*! include headers */ #include<stdio.h> /*! required for printf() */ #include<sys/ipc.h> /*! required ...
[ "narayana8522@gmail.com" ]
narayana8522@gmail.com
a6ac44cf0e119eb54738bf104f84f512030b0416
bad5db04127d122e046e2ac9884987d7f3c473f1
/src/ocn_3d/model/inc/SOLVE_FOR_PRESSURE.h
984a97299df57b6d87d47309f1f7dda0320deff8
[]
no_license
mit-jp/igsm
f8852b30c6078032847ed3273c9357f4fbb1d758
2966ba1a0498b2694714450acfb1d5ea71b58e83
refs/heads/master
2023-05-12T19:50:43.489566
2023-04-28T15:46:36
2023-04-28T15:46:36
13,631,184
10
4
null
null
null
null
UTF-8
C
false
false
662
h
C $Header: /u/gcmpack/MITgcm/model/inc/SOLVE_FOR_PRESSURE.h,v 1.4 2011/02/22 18:32:28 jmc Exp $ C $Name: $ C CBOP C !ROUTINE: SOLVE_FOR_PRESSURE.h C !INTERFACE: C include SOLVE_FOR_PRESSURE.h C !DESCRIPTION: \bv C *==========================================================* C | SOLVE_FOR_PRESSURE.h...
[ "pnk@mit.edu" ]
pnk@mit.edu
8d0f67566ff8c9236b5a1cd6a6de3f629aaf4a13
4d004c9f1c8727113aad257b9e16d39d317cb94a
/data_cleaning/MurmurHash3.h
e6bb0315ab17c660b492af955a6512508b3eef69
[]
no_license
wanghia/Data_cleaner
b6d24d2f0e8cdc843f1e0213749ef2735679e915
1173d4f10c50f957d52b74a0180b949c82eda70a
refs/heads/master
2020-03-22T14:58:04.349308
2018-07-12T02:56:52
2018-07-12T02:56:52
140,218,753
0
0
null
null
null
null
UTF-8
C
false
false
1,821
h
//typedef unsigned __int64 uint64_t; // 64-bit hash for 64-bit platforms uint64_t MurmurHash64A ( const void * key, int len, unsigned int seed ) { const uint64_t m = 0xc6a4a7935bd1e995; const int r = 47; uint64_t h = seed ^ (len * m); const uint64_t * data = (const uint64_t *)key; const uint64_t * end = data +...
[ "wanghai@4paradigm.com" ]
wanghai@4paradigm.com
32fdcd9320ad1c45a627ba6132c3e53cc8ec760e
e970f376be374e715f423a129f14727f77aa9201
/scoper.c
466b56cef8d69af63f51f23b9a5a4749cff78d38
[]
no_license
thekunalsaini/Lexical-Analyser
2b017a3202dd44b0dbed64a749959d0395d0f3cc
36d8d5f51d8d26e37a431601f98555c2e4cf167e
refs/heads/master
2021-01-08T01:28:07.715363
2019-02-03T17:52:13
2019-02-03T17:52:13
null
0
0
null
null
null
null
UTF-8
C
false
false
10,745
c
// Author: Shounak Dey // Filename: scoper.c #include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h> /* Types of declarations it can evaluate: int a,b; int a=10,b=10; int func(int a){} Assumptions: 1. The code is properly formatted, i.e, all lines are on different lines and not in a minified...
[ "dylandey1996@gmail.com" ]
dylandey1996@gmail.com
f54cacf62b749e7f8d2204d5ea44c1f2f634cdf9
60997ef3aa5f9a0c501bfa7316065db4ea4b552b
/RANDOMtest.c
5400ca965df0c0c0e9f2abe0265c690644502d90
[]
no_license
Sreya-S/Gene-expression-based-drug-repositioning
5193ae7ef4d0d44e0ea2a7b9b076a9b44f7649b1
93d6eea23f238a04a478aef3ecca96a5c4acde6d
refs/heads/master
2020-04-15T13:34:21.560437
2019-01-08T20:07:05
2019-01-08T20:07:05
164,722,490
0
0
null
null
null
null
UTF-8
C
false
false
8,909
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> FILE *fp; char fileo[100]; int a,b,i,j,k,l,m,n,k,s,h; char line[10000]; char strs[1000][1000]; double E[1000][60000]; /****Expression has sample numbers and gene values***/ int affyN,GSMn,GN,GA[60000]; ...
[ "noreply@github.com" ]
Sreya-S.noreply@github.com
3ca239ae5f0e6e528d6c903883799e502fc708a1
5696772df65c96b75e6566718e3b35032bd9c984
/Generator/pins_MEGACONTROLLER.h
b4ef8f276ca40ce54151f293b073c3363a758cdb
[]
no_license
NikolayBonev/DSAI-Data-generator
1fc0295d9f59d29b802672ab59f24eba7960d1df
c7662ca6c97460e401995edecadad75ea642ac11
refs/heads/master
2020-05-22T00:34:49.411863
2019-06-13T17:11:47
2019-06-13T17:11:47
186,174,928
1
1
null
null
null
null
UTF-8
C
false
false
1,526
h
/** * 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 * (at your option) any later version. * * This program is distributed in the hope that it will be us...
[ "ferarito4@gmail.com" ]
ferarito4@gmail.com
7ac07a593ab5d58d1edf5beafc878f3387142011
b02b0093b1acc4eecf74b1eefb611da6071bad53
/hw04/linux-5.4.67/drivers/video/backlight/lms283gf05.mod.c
5286454dfdbf039b52bf25a9a02b960d29e1046b
[]
no_license
KmYongHwan/Linux-hw
41f1b2f0efd0d9cfaba291c8a8fd25b8a6ece17d
b4b82a8e73b221b02aad143469bada18adf3140a
refs/heads/master
2023-08-14T07:10:52.198430
2021-10-14T07:03:22
2021-10-14T07:03:22
413,544,805
0
0
null
null
null
null
UTF-8
C
false
false
1,116
c
#include <linux/build-salt.h> #include <linux/module.h> #include <linux/vermagic.h> #include <linux/compiler.h> BUILD_SALT; MODULE_INFO(vermagic, VERMAGIC_STRING); MODULE_INFO(name, KBUILD_MODNAME); __visible struct module __this_module __section(.gnu.linkonce.this_module) = { .name = KBUILD_MODNAME, .init = init_...
[ "kyh5678@gmail.com" ]
kyh5678@gmail.com
740b46454bfac36d9cf26a492b3efc0f2f383ebd
9de0cec678bc4a3bec2b4adabef9f39ff5b4afac
/PWGCF/EBYE/DiffPTF/macros/AddTaskDiffPtFluc_MCnoESD_detect.C
68b6f9ef511c9127c9513b2c68cebc680e098191
[]
permissive
alisw/AliPhysics
91bf1bd01ab2af656a25ff10b25e618a63667d3e
5df28b2b415e78e81273b0d9bf5c1b99feda3348
refs/heads/master
2023-08-31T20:41:44.927176
2023-08-31T14:51:12
2023-08-31T14:51:12
61,661,378
129
1,150
BSD-3-Clause
2023-09-14T18:48:45
2016-06-21T19:31:29
C++
UTF-8
C
false
false
4,352
c
AliAnalysisTaskDiffPtFluc_MCnoESD_detect *AddTaskDiffPtFluc_MCnoESD_detect(Int_t fCentralityMin=0, Int_t fCentralityMax=90,/* TString sTrigger="kINT7"*/ Double_t fVzMax=10, Double_t fdcaxy=0.1, Double_t fdcaz=1, Double_t fchi2tpc=2.5, Double_t fchi2its=36, Double_t fnCrossedRows=70, TString OutFileName = "_default", D...
[ "swatisaha067@gmail.com" ]
swatisaha067@gmail.com
5f2fec5afdefaa6924a8f261520eafecf7b38ad2
5ce01e405f40353d0063f56ee3c417c963df21eb
/apps/evsys/evsys_trigger/firmware/src/config/sam_c21n_xpro/peripheral/evsys/plib_evsys.c
3352f1fa1da434da5d017145bb086fa83418d2ac
[ "ISC", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
muthualagappanm/csp_apps_sam_c20_c21-development
02f4ec36b56b50bc386ac9908743dcd505b7afc3
853cf10e6ab81ee40cd619d35548d39c094b0f2c
refs/heads/master
2022-12-15T22:29:21.772882
2020-09-18T11:42:04
2020-09-18T11:42:04
296,552,507
0
0
null
null
null
null
UTF-8
C
false
false
2,000
c
/******************************************************************************* EVSYS Peripheral Library Company: Microchip Technology Inc. File Name: plib_evsys.c Summary: EVSYS Source File Description: None *******************************************************************************...
[ "Muthu.AlagappanM@microchip.com" ]
Muthu.AlagappanM@microchip.com
6e5268654dc386b2706d87470c63582146e84351
b5cb6bdd2ef2a447762f47aa7a37660139202006
/src/t1/LRenderNode/LRenderNode.c
560485dad768d628b7ad991a32c89dfa9633fd4f
[]
no_license
dronhacker666/lengine
3815c7641f1f94ad87e819b504bfe1d1694d221f
078d105f8f9674cfefa74f3dc306dd1c7d1fd614
refs/heads/master
2020-04-28T08:26:12.499003
2015-05-18T11:26:53
2015-05-18T11:26:53
34,718,140
0
0
null
null
null
null
UTF-8
C
false
false
2,381
c
#include "LRenderNode.h" LRenderNode* LRenderNode_create(LRenderNodeType type) { LRenderNode* node = calloc(1, sizeof(LRenderNode)); node->visible = true; node->type = type; switch(node->type){ case LRENDER_NODE_DIRECT_LIGHT: node->direct_light = LRenderNodeDirectLight_create(node); break; case LRENDER_NODE_...
[ "dronhacker666@gmail.com" ]
dronhacker666@gmail.com
25d4371b5af78d721a0ebc98606554125f42e25e
c2b6bd54bef3c30e53c846e9cf57f1e44f8410df
/Temp/il2cppOutput/il2cppOutput/UnityEngine_UI_UnityEngine_UI_Slider297367283MethodDeclarations.h
4bb3bf9b71255793249540eef58c7e3c94fa18e6
[]
no_license
PriyeshWani/CrashReproduce-5.4p1
549a1f75c848bf9513b2f966f2f500ee6c75ba42
03dd84f7f990317fb9026cbcc3873bc110b1051e
refs/heads/master
2021-01-11T12:04:21.140491
2017-01-24T14:01:29
2017-01-24T14:01:29
79,388,416
0
0
null
null
null
null
UTF-8
C
false
false
11,195
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 "UnityEngine_UnityEngine_RectTransform3349966182.h" #include "UnityEngine_UI_UnityEngine_UI_Slide...
[ "priyeshwani@gmail.com" ]
priyeshwani@gmail.com
82d5fd34c2527bdcfb613c0e8e9d1351a7526f24
e4c867053f42b17da2af804674ee1d441f038ac7
/src/main/func_write.c
6f2f963257c27368a0ceea9d199ecbde00b4094e
[ "MIT" ]
permissive
kdridi/FunC
ff8f33877651ddf35ec4bb9aac5d1dfe96b5fb32
f3b79cc6487615eded1939c34303cadeb665e902
refs/heads/master
2020-04-07T23:23:40.522223
2018-12-02T22:11:49
2018-12-02T22:11:49
158,810,768
1
0
null
null
null
null
UTF-8
C
false
false
478
c
#include "func_write.h" #include <stdarg.h> #include <assert.h> #define RETURN_TYPE size_t #define result (*((RETURN_TYPE*) p)) int func_write(void* p, ...) { va_list ap; va_start(ap, p); int fd = va_arg(ap, int); void* buf = va_arg(ap, void*); size_t nbytes = va_arg(ap, size_t); ...
[ "karim.dridi@gmail.com" ]
karim.dridi@gmail.com
55a8f4e620411ee143b23659058e3672135ad5cb
6f063ce9420a25a3c816fd1fb8476625653a76ca
/libsrc/logViewer/imGuiController.h
77221858e5d286531b4b162ae99e2732f350c3d3
[ "MIT" ]
permissive
bholcomb/logViewer
7f6b8a863343b7e128e920ad71d9a1cb0de45cec
98860a25976197188b98f91226c050aa7241cf73
refs/heads/master
2020-04-26T19:44:02.141873
2019-04-15T13:45:47
2019-04-15T13:45:47
173,784,884
2
0
null
null
null
null
UTF-8
C
false
false
1,293
h
struct GLFWwindow; struct ImDrawData; bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks); void ImGui_ImplGlfw_Shutdown(); void ImGui_ImplGlfw_NewFrame(); // InitXXX function with 'install_callbacks=true': install GLFW callbacks. They will call user's previously installed callbac...
[ "bob.holcomb@gmail.com" ]
bob.holcomb@gmail.com
f6e149d7cd52c72bb7b69bbcc2532f286e1dc29f
ff0c689fba421f700228c8eafe71025e7a4cdcc0
/Graft_HT_Hawk_STM32/algorithm_sqlite.h
0cea706bb569732304c73af7618b90a5d8f57231
[]
no_license
lian494362816/Four_Moto_Control_Program
7f203b367dd008e560aabfc99fb25b64a0d8c10d
b10daeb7356a6cfadf2cea4bf2704fd38c35610c
refs/heads/master
2021-01-20T16:05:21.110557
2016-08-12T08:34:44
2016-08-12T08:34:44
65,477,993
0
1
null
null
null
null
UTF-8
C
false
false
192
h
#ifndef __Algorithm_Sqlite_H #define __Algorithm_Sqlite_H void paramLoad(void); struct _PID{ float P; float I; float D; float pout; float dout; float out; }; #endif
[ "liancancai001@163.com" ]
liancancai001@163.com
42b166f46c6bebaa36928f1156b13e8074bda7bf
860ed5ee2137f58df3a69b1aed1e0aa00372c776
/mcu/脉搏测量/polling_UI/display_data/other_set.h
35500838bec0ba5e22e0e98ca9d3527428ae4ea2
[]
no_license
sysclock/UserKeyTool
6a18050d9f127ce2cfb1e574caae366f66a4e7ec
13634964f0fab6150f6e9aa83b7388e269c0efd2
refs/heads/master
2020-03-14T03:36:46.370548
2017-11-02T12:32:28
2017-11-02T12:55:09
131,423,790
1
0
null
null
null
null
GB18030
C
false
false
6,499
h
///////////////////////////////////////////////////////////////////////// // Bitmap点阵数据表 // // 图片: D:\..柚靡患禱4.bmp,横向取模左高位,数据排列:从左到右从上到下 // // 图片尺寸: 128 * 64 // //////////////////////////////////////////////////////////...
[ "yang@bycox.com" ]
yang@bycox.com
905b1308678e34c7b4d56256a304a471c3c0cacc
ef219b74265c7c385b27d67f9e2b344d58fbb419
/src/syntax/finfo.c
19e93e91ccf4ad2789ef84ca7223608f6feb87c1
[]
no_license
haskell-implementations/hbc
9dfa51f7b863c379186b03c52af7a110db837332
5a417fe68a3de26b55b34e2e2bab87dccb9f229f
refs/heads/master
2020-04-04T03:03:55.432848
2018-11-01T11:43:28
2018-11-01T11:43:28
155,706,218
6
2
null
null
null
null
UTF-8
C
false
false
2,936
c
#include "include.h" #include "finfo.h" struct Snofinfo { Tfinfot tag; }; struct Sfinfo { Tfinfot tag; id Xfi1; id Xfi2; int Xfi3; }; struct Shfinfo { Tfinfot tag; list Xpfinline; id Xpfstrict; list Xpfentry; int Xpfarity; int Xpffrsize; list Xpfinsts; int Xpfevaled; }; Tfinfot tfinfot(t) finfot t; {...
[ "chrisdone@gmail.com" ]
chrisdone@gmail.com
92e4f2e5fa91da7cba88781b7ca3cd56823ed0ff
01fa1c20c8a23c5a8560bf694e376ade8930b9d3
/src/IA5String.c
cec61c34b49864e9332e7c770d3a26602cc6cda4
[ "BSD-2-Clause" ]
permissive
gyc112/libasn1c
51599c8ae9951285facea5b991f9520938f8229c
3ae142e5c2ae9142f3b6d390fa33e97892da001b
refs/heads/master
2020-07-03T20:19:42.392185
2019-08-13T05:58:07
2019-08-13T05:58:07
202,038,037
3
1
NOASSERTION
2019-08-13T01:27:17
2019-08-13T01:27:16
null
UTF-8
C
false
false
2,160
c
/*- * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved. * Redistribution and modifications are permitted subject to BSD license. */ #include <asn_internal.h> #include <IA5String.h> /* * IA5String basic type description. */ static const ber_tlv_tag_t asn_DEF_IA5String_tags[] = { (ASN_TAG_CLASS...
[ "laforge@gnumonks.org" ]
laforge@gnumonks.org
8498a302ce8ee25f961f6edafd05e6c4c8197abe
666fb828d1f76a1c80f3638f3518cb3a9c8b0e26
/test.c
c3cded900e3fe28069075d17c2adeff3112d3afd
[]
no_license
ramparam/Malloc-Library-Buddy-Allocation
22bf46fb0bf2b74a936e5e0bb3145b75497b1542
d84a4d8e8834a88591835706d5cde71f9090eb15
refs/heads/master
2021-12-24T23:46:36.501689
2017-12-22T12:59:21
2017-12-22T12:59:21
null
0
0
null
null
null
null
UTF-8
C
false
false
1,647
c
#include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> void* allocation(unsigned int size, char c){ void *mem_1 = malloc(size); assert(memset(mem_1, c, size-1) != NULL); memset(mem_1 + size-1, '\0', 1); printf("%p %s\n", mem_1, mem_1); return mem_1; } vo...
[ "mittal.sh@husky.neu.edu" ]
mittal.sh@husky.neu.edu
7b840af0b9c8fecdb0d07db92853de43fcf933e0
2875e427d9931ab8cfe2e066e1568c3130fcc3f2
/Solaris_2.6/os_net/src_ws/usr/src/ucbcmd/plot/libplot/t450/close.c
56c8a267cde76fead423f8057d410e0e91ed9913
[]
no_license
legacy-codedigger/Solaris-2.6-Source-Code
3afaff70487fb96c864d55bd5845dd11c6c5c871
60a0b3093caa7d84e63dd891a23df0e8e720bf3d
refs/heads/master
2022-05-23T16:05:32.631954
2020-04-25T01:07:08
2020-04-25T01:07:08
258,658,903
1
1
null
null
null
null
UTF-8
C
false
false
507
c
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */ /* The copyright notice above does not evidence any */ /* actual or intended publication of such source code. */ #ident "@(#)close.c 1.1 90/08/19 SMI" /* SVr4.0 1.1 */ /* ...
[ "zahir.meddour@protonmail.com" ]
zahir.meddour@protonmail.com
9d8cdd03bf2346346e250003f3f26257c96be3ad
2f2729d7e79996e3c0808a0e0d20eb9960177566
/projets/d03/ex02/ft_swap.c
d81391ac36648929f7b18065637a7bc0e463712a
[]
no_license
thomasLeMeur/00-piscine-c
d4709cbfb8bf131ba450b3c38529b95bb0209974
a454f8097621fb4143364ade87beb4bff2920297
refs/heads/master
2021-01-01T04:13:22.062188
2017-07-13T16:05:36
2017-07-13T16:05:36
null
0
0
null
null
null
null
UTF-8
C
false
false
968
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_swap.c :+: :+: :+: ...
[ "t.lemeur94@gmail.com" ]
t.lemeur94@gmail.com
527f67501f73c472c72461d0c1bd462d69903eb3
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/base/ntos/ke/i386/callback.c
b457b1dc0336d61280795abbf642eeb7b24e9694
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C
false
false
3,880
c
/*++ Copyright (c) 1994 Microsoft Corporation Module Name: callback.c Abstract: This module implements user mode call back services. Author: David N. Cutler (davec) 29-Oct-1994 Environment: Kernel mode only. Revision History: --*/ #include "ki.h" #ifdef ALLOC_PRAG...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
df66c1c4200d3471941814627751f2362197b067
7fde11e6d56a8c2f663b25b0fd3dd1e755bd8a5b
/Source/chromium_patches/74.0.3729.108/chrome_proxy/third_party/Tangram.c
b7448eeca6074ed3edfbb318c19d46744b511fc9
[]
no_license
masums/Tangram
196cbf68adc357822b32ebf8e8b88ba151a0bde8
54c26daa04431d7bbf7c16de9a48c1b2a90892bf
refs/heads/master
2022-01-25T19:11:49.325544
2019-06-21T08:27:25
2019-06-21T08:27:25
null
0
0
null
null
null
null
UTF-8
C
false
false
6,463
c
/* this ALWAYS GENERATED file contains the IIDs and CLSIDs */ /* link this file in with the server and any clients */ /* File created by MIDL compiler version 8.xx.xxxx */ /* at a redacted point in time */ /* Compiler settings for ../../chrome_proxy/com_server/ChromeAppServer.idl: Oicf, W1, Zp8, env=Win64 (3...
[ "codemeow@icloud.com" ]
codemeow@icloud.com
5ee6475d00834a50433c257877b3c5e54088937e
6c6da81d9622780a433a1296c5d5d0d84eaa8de2
/owm_credentials.h
8c0ca99ee7136f7489b6b52a667f96e83d9f8502
[]
no_license
andymule/ESP32-e-Paper-Weather-Display
aea76db80e30b39c0ecace73bea880a4005287b0
225aff12f02ddb5c8278254b7010d64fb7fb1d47
refs/heads/master
2020-03-21T12:20:33.006031
2018-06-24T13:15:45
2018-06-24T13:15:45
138,547,968
0
0
null
2018-06-25T05:35:47
2018-06-25T05:35:47
null
UTF-8
C
false
false
1,934
h
// Change to your WiFi credentials const char* ssid1 = "your-SSID"; const char* password1 = "your-PASSWORD"; const char* ssid2 = "ssid-2"; // e.g. of a network extender const char* password2 = "password-2"; // Use your own API key by signing up for a free developer account at https://openweathermap.org/ Strin...
[ "noreply@github.com" ]
andymule.noreply@github.com
1a4cfda7e69c898911cab7773507abee2609159b
8c0f7f3c5114aab137b6bf8c17923a0951c2e087
/EE 451 F 2020 PHW 4/p2_3.c
696682a3a4f7c7769d13aeb70cc3698eb6feee59
[]
no_license
Mesilenceki/EE451
d22fdf9fc8ac58ab8107d15bd6e4a7b55e533f25
7c95ded94ec87265001bce7e5426c25291a28ebb
refs/heads/master
2023-01-01T10:16:10.670167
2020-10-23T03:05:37
2020-10-23T03:05:37
289,685,383
3
0
null
null
null
null
UTF-8
C
false
false
1,101
c
#include <mpi.h> #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int size, rank; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); int numArray[64]; int localArray[16]; int i; if (rank == 0) { FILE...
[ "hujunqi@ZBMAC-C2VZN5URH.local" ]
hujunqi@ZBMAC-C2VZN5URH.local
ab65e9a59185af7e8d636cc83a37848642f70f1d
e045e020b1d2b87841e1e281ea3653bfde409353
/0.72_My_PuTTY/network.h
a37d4b956c24a5f29ac11de9ebc94936f20ffaea
[ "MIT" ]
permissive
jack23912/KiTTY-1
00abd3ec8948bb6bfeab51dac58bf7522640d9cc
416701eb08d8145bc90b862a1f37a041490c7d44
refs/heads/master
2020-08-30T17:51:04.804760
2019-10-26T16:26:15
2019-10-26T16:26:15
null
0
0
null
null
null
null
UTF-8
C
false
false
11,562
h
/* * Networking abstraction in PuTTY. * * The way this works is: a back end can choose to open any number * of sockets - including zero, which might be necessary in some. * It can register a bunch of callbacks (most notably for when * data is received) for each socket, and it can call the networking * abstracti...
[ "cyrildupont71@gmail.com" ]
cyrildupont71@gmail.com
fdafa3d1da62a58e5c6ce52e313a31a68ffc45e1
db2897452aba7e5034290ddc721bd4095d925832
/dnsproc.c
51c926690391217bc604b3ab5db204ad9f07626c
[]
no_license
NattyNarwhal/acme-client-portable
b72f202ec9aeb326c877ec31b56812d8ef1d3f07
4f202925e4b0d8823da5132c75dc078e3d5d9dcd
refs/heads/master
2021-03-22T18:13:18.753224
2020-02-21T16:05:20
2020-02-21T16:05:20
247,390,839
0
0
null
2020-03-15T02:55:08
2020-03-15T02:55:07
null
UTF-8
C
false
false
4,698
c
/* $Id: dnsproc.c,v 1.10 2019/11/06 21:05:45 florian Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice ...
[ "wolf@wolfsden.cz" ]
wolf@wolfsden.cz
b0d03cb45735187e7487bcad05783b03ed0e969e
288024d934f6ac49ffab5eb63d517abfd7b0ca99
/code21/social.h
7a1bca50a758a16f14312e57d03df253d7b29a33
[ "MIT" ]
permissive
helderman/htpataic
0c94d8e4fb6d74fb2b7671a5ee11564e8075c9be
97eec672375f65649b59c3c81432991ad8f08998
refs/heads/master
2023-05-03T14:41:43.214430
2023-04-18T19:49:42
2023-04-18T19:49:42
45,774,525
46
6
null
null
null
null
UTF-8
C
false
false
123
h
extern int executePlay(void); extern int executeEmote(void); extern int executeSay(void); extern int executeWhisper(void);
[ "r.helderman@hccnet.nl" ]
r.helderman@hccnet.nl
d3d077e40222a61a58222196e9e0dd5603d365b8
8cdc753682f369a0a8e88154212a6e879d05c4d7
/BigInt/Arithmetic.h
d34e361ad70f61f80791ab385e1e8fc79f4858c9
[]
no_license
Juliakas/Algorithms-and-data-structures-projects-2018-spring
04b2d8ab289d81bf0f1bb6ccd65cb4a54a308332
0abfe78c3946f2f867bf4d52f5ad8c6fbb4451e8
refs/heads/master
2020-04-30T00:55:11.644896
2019-03-19T13:50:26
2019-03-19T13:50:26
null
0
0
null
null
null
null
UTF-8
C
false
false
703
h
#ifndef KETVIRTA_ARITHMETIC_H #define KETVIRTA_ARITHMETIC_H #include "bigint.h" bigInt createBigInt(int *, char *); bigFloat createBigFloat(int *, char *); void big_add(bigInt, bigInt, bigInt *, int *); //Jei truksta pirmo arba antro saraso error = 1 void big_subtract(bigInt, bigInt, bigInt *, int *); //Jei truksta pi...
[ "noreply@github.com" ]
Juliakas.noreply@github.com
ed7b2aced580860960d57a44f8985c59ed9969ff
b7efdb105673f0d1a711a37e1bb1912cf421bf2a
/61.c
02b76d99ccde3c0da31b3f32d7ebfc1935bb61ae
[]
no_license
VIGNESH42/QWERTY
b5d757b793f50dcfc7a1da70411e5cf6635cd1c7
a8db80a6e11e24d7814fbc49eb9459377a5fa63b
refs/heads/master
2021-04-27T15:15:49.394633
2018-02-19T10:28:04
2018-02-19T10:28:04
null
0
0
null
null
null
null
UTF-8
C
false
false
125
c
#include<stdio.h> int main() { int n,i; char str[10]="haiworld"; scanf("%d",&n); for(i=0;i<n;i++) { printf("%c",str[i]); } }
[ "noreply@github.com" ]
VIGNESH42.noreply@github.com
317311ef9759a44147da7cd01a0cf901caff7aac
3ff789066f6656842e4f2d20d4e097b5bfcad5f7
/cpu/br23/audio_dec/audio_usb_mic.c
ae98b16cc2760c165cac65e7347df9100520cea0
[ "Apache-2.0" ]
permissive
NoCodeNoLife-404/fw-AC63_BT_SDK
98c480922acd52913e7d918dbb1e927600160edc
56ba739927560e013368e4692aa8afe0dc3df35d
refs/heads/master
2023-05-03T20:25:35.576450
2021-05-20T11:22:52
2021-05-20T11:22:52
291,918,001
0
0
Apache-2.0
2020-09-01T06:41:08
2020-09-01T06:41:07
null
UTF-8
C
false
false
15,322
c
#include "asm/includes.h" #include "media/includes.h" #include "system/includes.h" #include "audio_enc.h" #include "app_main.h" #include "app_config.h" #include "audio_splicing.h" #include "application/audio_echo_reverb.h" /*usb mic的数据是否经过AEC,包括里面的ANS模块*/ #define USB_MIC_AEC_EN 0 /*AEC模块只能处理16k数据,如果经过aec,就需要对输出数据做变采样...
[ "32678837.qq.com" ]
32678837.qq.com
d3daa21975670d924213b7623d681e8d920f54ee
a2311e330da598bca3a38a543f0dc7e1a3656edd
/openssl/proof_test.c
d794217308c9d8663131916479c2b29ddfc1018f
[]
no_license
hw5773/study
9c980390e814110bef4f4760d40ef0a491758f61
973b5a9d99538ee03c8fcaaa3448e761b13fbc99
refs/heads/master
2020-04-12T02:30:36.379631
2019-11-02T04:01:21
2019-11-02T04:01:21
55,757,394
0
0
null
null
null
null
UTF-8
C
false
false
2,167
c
#include "proof.h" // Main Function int main(int argc, char *argv[]) { // Declare the variables needed BIO *server = NULL; BIO *server_key = NULL; BIO *out_bio = NULL; X509 *server_cert = NULL; X509 *mb_crt = NULL; FILE *mb_fp = NULL; EVP_PKEY *server_pub = NULL; EVP_PKEY *server_priv = NULL; int i, plen, s...
[ "hwlee2014@mmlab.snu.ac.kr" ]
hwlee2014@mmlab.snu.ac.kr
5bfba8a38263248a43b1d428aa0757371aefc61d
2f33630effb61c1f5cc105b77c9d6b5227cc5f74
/K66程序-整合/src/User/MecanumWheelControl.h
6fa68348ccfc6e9163c99d23503b50d9b0d17410
[]
no_license
piggrief/K66Framework
bebe006dd67b7b77a2326bb0eb570f0bb171f54c
fdad1cb84326b73cb97608d65db5367d8aec0b41
refs/heads/master
2020-04-22T02:46:19.193973
2019-06-08T16:09:23
2019-06-08T16:09:23
170,062,345
2
0
null
null
null
null
GB18030
C
false
false
4,833
h
/*! * @file MecanumWheelControl.h * @brief 四轮麦轮控制部分的程序头文件 * @details * @author pig's grief * @version v1.0 * @date 2019-2-12 * @to do 编写编码器测速程序并测试 */ # ifndef _MECANUMWHEELCONTROL_H # define _MECANUMWHEELCONTROL_H /* 定义轮子顺序为: 1:左前轮 2:右前轮 ...
[ "zhuzhibeishang@126.com" ]
zhuzhibeishang@126.com
6b1af8a83e3595a839b378e2324122f4bd8026ba
d231f5474e3dca9d28365bb5441dbdc8630b3c78
/bbb-xinu/apps/produce.c
235b67273bffba453b69a267c3da1c3e556a90c2
[]
no_license
leeladharsharma/OS-Fall-2015
21d30b455c623456b05b913ac76d798826dec6b9
f935d9fcd903c2c33af76280261ba21f013a6dbd
refs/heads/master
2021-01-20T14:07:39.299603
2015-12-16T04:57:07
2015-12-16T04:57:07
82,738,368
0
0
null
null
null
null
UTF-8
C
false
false
221
c
#include <prodcons.h> void producer(int count) { int i; for( i=1 ; i<=count ; i++ ) { wait(consumed); n=i; printf("Producer count is%d\n",n); signal(produced); } semdelete(produced); }
[ "lbsharma@iu.edu" ]
lbsharma@iu.edu
f41d11954d8f1e9c6c5172774ddabcac0a9e5ea9
08bfc8a1f8e44adc624d1f1c6250a3d9635f99de
/SDKs/Mono/include/mono-2.0/mono/metadata/verify.h
d41b5d71883bc7ac03fb0099bab6007956992c14
[]
no_license
Personwithhat/CE_SDKs
cd998a2181fcbc9e3de8c58c7cc7b2156ca21d02
7afbd2f7767c9c5e95912a1af42b37c24d57f0d4
refs/heads/master
2020-04-09T22:14:56.917176
2019-07-04T00:19:11
2019-07-04T00:19:11
160,623,495
0
0
null
null
null
null
UTF-8
C
false
false
129
h
version https://git-lfs.github.com/spec/v1 oid sha256:8dcb78da15541ea9f9047e74221a94779ce9bb53dac261d9c615dfd45690149e size 1584
[ "personwithhats2@Gmail.com" ]
personwithhats2@Gmail.com
20b9499203de4f7f0911e9056a9803a87fcf94c3
ce81dce47b05960cb7e4c0f67c76576cfec68b3c
/src/3rdpart/parmetis-4.0/metis/GKlib/GKlib.h
56f7d01317aad647517668b73d9fb758e2a9d87c
[ "Apache-2.0" ]
permissive
leeleezi/COStream
529e77d2d643efb4eab658f1b1a04d1a14ea9521
4f7cd2d3c00e504fbee12d03204fb1121f844674
refs/heads/master
2021-01-26T09:14:53.803075
2019-05-29T05:46:12
2019-05-29T05:46:12
null
0
0
null
null
null
null
UTF-8
C
false
false
1,431
h
/* * GKlib.h * * George's library of most frequently used routines * * $Id: GKlib.h 10408 2011-06-25 16:25:17Z karypis $ * */ #ifndef _GKLIB_H_ #define _GKLIB_H_ 1 #define GKMSPACE #if defined(_MSC_VER) #define __MSC__ #endif #if defined(__ICC) #define __ICC__ #endif #include "gk_arch.h" /*!< This should b...
[ "lxx2013@mail.ustc.edu.cn" ]
lxx2013@mail.ustc.edu.cn
de5cfb5f3bfbcd6aa4da0e74c7ee4741d5e5f925
2a928ef93060976c639b6f128767247a8a5d5c25
/openmpi-2.0.4/ompi/mca/mtl/ofi/mtl_ofi_component.c
f46b4fee731ec8fc7828b9a2e887e228cfdf6dc0
[ "BSD-3-Clause-Open-MPI" ]
permissive
ywangdg/CS239_High_Performance_Computing_Project
49bc3418d76ed2942155257731a378dcba3ce031
70f797a6941389d2993f8ce381701c3c2374f9ad
refs/heads/master
2022-03-27T06:30:37.361679
2019-12-11T20:39:18
2019-12-11T20:39:18
225,093,233
0
0
null
null
null
null
UTF-8
C
false
false
18,415
c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ /* * Copyright (c) 2013-2016 Intel, Inc. All rights reserved * * Copyright (c) 2014-2015 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2015 Los Alamos National Security, LLC. All rights * reserved. * $COPYRIGH...
[ "carolynyen@s-164-67-226-70.resnet.ucla.edu" ]
carolynyen@s-164-67-226-70.resnet.ucla.edu
758a470f1cd40eeaec03199c24cfe0873e8e428b
cc14cd607224cf6d7a2b8d68e0c3073bcd2993df
/work/SDK/workspace/Regelplattform/src/Networking/ethernet.c
746353cccc2011c4fa8ee006d2a18d392fefc04a
[]
no_license
eriks03/Regelplattform
53ded35bcc95185480258b78d0c7b977a21fc911
3aee0fc28322c8a301318b8bae2395932a7b3a30
refs/heads/master
2020-04-18T15:18:32.784138
2012-07-09T08:58:10
2012-07-09T08:58:10
null
0
0
null
null
null
null
UTF-8
C
false
false
3,725
c
/* * ethernet.c * * Created on: Jun 27, 2012 * Author: eriks */ //#include "networkcfg.h" #include "ethernet.h" #include "arp.h" #include "ip4.h" /******************************************************************************/ /** * * This function sends a frame of given size. This function assumes interru...
[ "erikschubert@live.com" ]
erikschubert@live.com
f547983d087b3483c3911b98f2e77a8826bb39c7
8598ae8b1fcb6bd0c23eeba008ef530822ce3a29
/NetBeansProjects/serv_solution/osev_common/utility/tex_hdb.c
4349de4a8b5ef8d9ea5a8b1937931ae82e0e236f
[]
no_license
jamesxucq/OSEV_Workspace
15e20e8818a275a0e0bb6b99284828b6782c6609
a30c6d88f197ff0bde60faf5e004eb37bf5ec384
refs/heads/main
2023-06-02T07:09:38.283882
2021-06-17T05:30:57
2021-06-17T05:30:57
377,663,180
0
0
null
null
null
null
UTF-8
C
false
false
17,256
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/time.h> #include <fcntl.h> #include <unistd.h> #include <limits.h> #include "tex_hdb.h" // static int texhdb_swapout(TEXHDB *hdb, uint32_t hash1, uint32_t hash2, TEXH_ENTRY *he) { char key[TEXHDB...
[ "xujiecq@163.com" ]
xujiecq@163.com
f154cd217f6e60be221a14abfe336877b8a1cc5d
849f0053b04a46440b65c9744f588ead8f5a4653
/sptk/bin/poledf/poledf.c
afb6130af057cfc2a7693c8fcd4a6731d63772fe
[ "BSD-3-Clause" ]
permissive
batikim09/world-class
96dc6f3cc076ce6b6296a16ead3b34ca333eb076
5112718cc50d83add4fd69c2aff1f86bde0878a0
refs/heads/master
2020-03-31T10:42:02.801776
2018-10-24T11:14:23
2018-10-24T11:14:23
152,145,587
0
0
BSD-3-Clause
2018-10-08T20:56:02
2018-10-08T20:56:02
null
UTF-8
C
false
false
9,020
c
/* ----------------------------------------------------------------- */ /* The Speech Signal Processing Toolkit (SPTK) */ /* developed by SPTK Working Group */ /* http://sp-tk.sourceforge.net/ */ /* -----------------------------...
[ "j.kim@utwente.nl" ]
j.kim@utwente.nl
403623df098547773e654407a40b4b3e118bc911
d90e99a699b7a0099303b2a8c2c52cb3765ec401
/pic24EP_spibeta.X/spi.c
9dac3aafdb8c4493c076df58c1a100cdad383d5e
[]
no_license
Corey255A1/Senior-Design
8926989ff0bfa581c0088c1e7dd923f0e96123f9
6aebf071a6314540bb05172ed3573b0b35edf306
refs/heads/master
2021-01-01T19:42:36.425900
2013-04-18T18:16:41
2013-04-18T18:16:52
null
0
0
null
null
null
null
UTF-8
C
false
false
5,046
c
/** * --SPI Control-- * This Is code for SPI SLAVE MODE * It will wait for the Clock to start running * and transmit it's buffer along with receive the * bits from the MASTER * */ #include "globals.h" #include <p24EP32MC202.h> #include "spi.h" #include "../Global_PIC/spiMessages.h" extern enum SPI_STATES gl...
[ "Corey255A1@gmail.com" ]
Corey255A1@gmail.com
cdef338b67a1809a8e052ecc9126bab65e372716
4c3ba82c4d60b45d17effce44e5a136477380a83
/ble5_spp_ble_client_cc2640r2lp_app/Application/spp_ble_client.c
0da32f1a3e209e5bcc41f4ae90680a3df2301b5f
[]
no_license
leonheld/BLE_Client
31f11beaf2f02194f534409889c67cf3f560bf28
755320e150aaa975bc640bec997046c8d1967306
refs/heads/master
2020-08-27T11:56:12.239080
2018-05-23T20:39:15
2018-05-23T20:39:15
null
0
0
null
null
null
null
UTF-8
C
false
false
62,576
c
/****************************************************************************** //MAX_NUM_PDU //gapCentralRole_taskFxn @file spp_ble_client.c @brief This file contains the SPP BLE Client sample application for use with the SimpleLink CC26xx SDK Group: CMCU, SCS Target Device: CC2640R2 *****************...
[ "wills07@gmail.com" ]
wills07@gmail.com