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
ee6ff2e01f9ef2516bf5c637335a42a71891c463
322a871ae7062a3e4e22b54a439d1c6d9a29a899
/MpiApps/apps/osu-micro-benchmarks-5.6.3/mpi/one-sided/osu_get_bw.c
65181a77746d54c68c4893f68bf26af93aa6cc74
[ "BSD-2-Clause" ]
permissive
isabella232/eth-mpi-apps
e364415e91e6e789320e46ca80ce0e9237794b30
d3ca419ce9f7aeacce7bb02c69ea8ff138f061f2
refs/heads/master
2023-06-11T23:55:21.866218
2021-06-24T20:27:53
2021-06-24T20:27:53
null
0
0
null
null
null
null
UTF-8
C
false
false
13,697
c
#define BENCHMARK "OSU MPI_Get%s Bandwidth Test" /* * Copyright (C) 2003-2020 the Network-Based Computing Laboratory * (NBCL), The Ohio State University. * * Contact: Dr. D. K. Panda (panda@cse.ohio-state.edu) * * For detailed copyright and licensing information, please refer to the * copyright file ...
[ "adam.goldman@intel.com" ]
adam.goldman@intel.com
609346d7242bc43e6c67e4b154d619284490e858
bf8d17f8c7fd073dd53cd79c684ee425276db924
/files/ej15.c
b28c00009145f6b78e6501b52aa278673bbc95ec
[]
no_license
JulioAlbertoTum/ejerciciosC
d7a36eec44830cc689e9fb7e1f0d1332565acb34
58aaa2caba30f3d00d53351ec9c4427f25a3a4a1
refs/heads/master
2021-07-12T07:56:28.357393
2017-10-13T22:25:36
2017-10-13T22:25:36
103,806,577
0
0
null
null
null
null
UTF-8
C
false
false
308
c
// este programa cambia el nombre del archivo kolkata.txt a city.dat #include <stdio.h> int main(){ int m; m = rename("kolkata.txt","city.dat"); if( m == 0) puts("Operaciones par renombrar una archivo se ha hecho exitosamemte"); if( m != 0) puts("La operacion de renombre a fallado"); return 0; }
[ "Alberto" ]
Alberto
3c785b1dc8c6f9bd9c12a5a032505c494ce5e0d7
85197ed22fdd3db1768c0a42d1054e51801b3a25
/main.c
4721c8364bbdfdc44489a216e35d9d9b9a983b40
[]
no_license
zheng-song/qtwork
57dda2e3a09aef9de13f863a5ea47fa54ef57b8b
6a884430a9135e2870c252265f6106646d905796
refs/heads/master
2021-01-01T18:09:02.538701
2017-09-26T08:03:28
2017-09-26T08:03:28
98,258,206
0
0
null
null
null
null
UTF-8
C
false
false
2,659
c
#include <stdio.h> #include <assert.h> //直接插入排序 void insert_sort(int array[],int num) { assert(array); for (int i = 1; i < num; ++i) { int j = i-1; while (array[i]<array[j] && j >= 0) --j; int tmp = array[i]; while(i > j+1) { ...
[ "root@zs.localdomain" ]
root@zs.localdomain
ec4d07b1b376398c5aefa90847a74bcd07a42b45
b5def691b34bb2abf55676c40865ca93f577c2dc
/src/exe/mychmod.c
0b496a703b7622a35cf22c16c01a14fab8051936
[]
no_license
Agauvrit/mishell
7354122d5451a32b98e253c46c912642c63461e9
256b04a65e06bf99ebe219130996cf47c1392b38
refs/heads/master
2021-07-19T23:31:50.753907
2017-10-27T14:30:24
2017-10-27T14:30:24
108,556,324
0
0
null
null
null
null
UTF-8
C
false
false
119
c
#include "../libs/mychmod.c" // Fonction principale int main(int argc, char *argv[]){ return runchmod(argc,argv); }
[ "aurelien.gauvrit85@gmail.com" ]
aurelien.gauvrit85@gmail.com
8be1d747e3579a9532038659279181bf9273789b
51f181e8ef991e5c20835e208b04355de542ef51
/0x01-variables_if_else_while/6-print_numberz.c
57a719f5ce9b38bd3a228b6aee89e985bed127c8
[]
no_license
Filimon-H/alx-low_level_programming
cc9d32a9fdd388c6274035c09874ce9d9d55a20d
4a9d46bbf6f0ff584efcbfed6df4cd45a166e86c
refs/heads/master
2023-06-28T09:52:24.026381
2021-08-03T03:35:32
2021-08-03T03:35:32
377,796,121
0
0
null
null
null
null
UTF-8
C
false
false
209
c
#include <stdio.h> /** * main - prints out all numbers under 10 * without using any char variables * Return: 0 */ int main(void) { int i = 48; while (i < 58) { putchar(i); i++; } putchar('\n'); return (0); }
[ "filimon3570@gmail.com" ]
filimon3570@gmail.com
3720a651fca864fe19c18c674894afb5676664dc
1a4d0e145bd6c9f39629628f41ff0e6a486946ba
/clock_gettime.h
21724df4d82d853b243134a2973a98b01d49d4d2
[]
no_license
elazarl/clogstash
3f72bb2d8294a4b2d83208a134b8dc8bc463d3dd
3967f8bf518cc481d5fd2c23d388fcb9fea03a35
refs/heads/master
2023-03-26T22:49:45.769057
2013-10-23T18:10:48
2013-10-23T18:10:48
null
0
0
null
null
null
null
UTF-8
C
false
false
242
h
#ifndef __H_CLOCK_GETTIME_ #define __H_CLOCK_GETTIME_ #include <sys/time.h> #include <time.h> #ifndef CLOCK_MONOTONIC /* Mac OS X don't have it */ #define CLOCK_MONOTONIC 0 #endif int clock_gettime(int clk_id, struct timespec *ts); #endif
[ "elazarl@gmail.com" ]
elazarl@gmail.com
63b117276b95048d4bfce3c050746076e3f86bc3
fc3d9da79415da874c2d7dbec1c569bbc24d9550
/src/Lqtop24C/f332.c
cfc26aa7b250fb6d784de6c19313c68e87bbeed4
[]
no_license
miguelwon/MEtop_SEW
d045b2650428806c986f87b39a9b9d2785a6c067
071cb66141200eaea3c4f569e8a58e86ef28360f
refs/heads/master
2021-01-15T21:07:23.979517
2014-04-22T14:56:18
2014-04-22T14:56:18
null
0
0
null
null
null
null
UTF-8
C
false
false
13,685
c
/******************************* * CalcHEP 3.2* *******************************/ #include"num_out.h" #include"num_in.h" extern FNN F332_out; static void C332(REAL * C) { REAL* V=va_out; REAL S[13]; S[0]=V[37]*V[37]; S[1]=V[2]*V[2]; S[2]=V[22]*V[...
[ "miguelwon@gmail.com" ]
miguelwon@gmail.com
f7a73e6666e48c9258b46692b2bd3d4f2dfc2e59
c0e0138bff95c2eac038349772e36754887a10ae
/mdk_release_18.08.10_general_purpose/mdk/common/components/sipp/filters/equalizeHist/equalizeHist.h
1b22251e36537d81c72d2ad9c7b8bb81ac7fae78
[]
no_license
elfmedy/vvdn_tofa
f24d2e1adc617db5f2b1aef85f478998aa1840c9
ce514e0506738a50c0e3f098d8363f206503a311
refs/heads/master
2020-04-13T17:52:19.490921
2018-09-25T12:01:21
2018-09-25T12:01:21
null
0
0
null
null
null
null
UTF-8
C
false
false
1,129
h
/// /// @file /// @copyright All code copyright Movidius Ltd 2014, all rights reserved. /// For License Warranty see: common/license.txt /// /// @brief This file contains the declaration of the @ref equalizeHist SIPP filter API. /// #ifndef __SIPP_EQUALIZEHIST_H__ #define __SIPP_EQUALIZEHIST_H__ #...
[ "palani.andavan@vvdntech.com" ]
palani.andavan@vvdntech.com
a0459954e92a425ea8d28e605fa00b8ff0662cee
00afe71c5c4991e79b883c4401bc6d5701b82bae
/parse.c
8aea9afaf76e35b06114676872febeed8e254a10
[]
no_license
skkif1/printf
e413364a68680d007199cbb7ceb98ead42bc5ab1
01c794cda54dd279af02e3b17ae40fe19ebef5b5
refs/heads/master
2021-01-21T06:39:47.794793
2017-03-04T00:05:54
2017-03-04T00:05:54
82,869,344
0
0
null
null
null
null
UTF-8
C
false
false
3,448
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* parse.c :+: :+: :+: ...
[ "skkif1@gmail.com" ]
skkif1@gmail.com
35bb1f9dfc77321af63b932eb46138457bbe03a3
9cd4f95bfaa1ed64d4866501d1aded279df81627
/user/threadtest.c
e6bcb1502506530f3bc0a5600c424fa092114046
[]
no_license
cbrl/xv6
27e51d3533eb1c37ef958974aae1b4fdb6625be2
6567edb75d0519021b38042cc1f4fdb131bce258
refs/heads/master
2021-06-27T19:36:29.449894
2019-05-03T16:58:08
2019-05-03T16:58:08
167,406,324
0
0
null
null
null
null
UTF-8
C
false
false
572
c
#include "types.h" #include "user.h" char *const progs[] = { "T_badclone", "T_clone", "T_clone2", "T_clone3", "T_join", "T_join2", "T_join3", "T_join4", "T_locks", "T_multi", "T_noexit", "T_size", "T_stack", "T_thread", "T_thread2", }; int main() { char *args[] = {"test", 0}; for (int i = 0; i < (...
[ "cbroyles94@gmail.com" ]
cbroyles94@gmail.com
9459204bc0716db671676dd67099ef6494a1285a
99a2d0c4b3ec154119681fe09fe74c9de72b6762
/remplirMatriceReelle.c
41a0803d7a171aff92baf7099e64205b19510d23
[]
no_license
Abdel-Elmoukhtari/Algorithme-du-simplexe-tableau-en-C
0c39b21bb5b2255aadd01c41815b373542487069
c1c19ccf3d11af654cbbb30cc78f599af09b2954
refs/heads/main
2023-05-28T00:13:48.378905
2021-06-02T22:08:33
2021-06-02T22:08:33
373,313,002
1
0
null
null
null
null
UTF-8
C
false
false
241
c
/* Author: Abida Hassan Filier: SDAD */ #include<stdio.h> #include<stdlib.h> void remplirMatriceReelle(double **A, int L,int C,FILE *pfichier){ int i,j; for(i = 1;i<=L;i++){ for(j=1;j<=C;j++){ fscanf(pfichier,"%lf",A[i]+j); } } }
[ "a.elmoukhtar99@gmail.com" ]
a.elmoukhtar99@gmail.com
f56ce09f9a6a1dd668ad791e48847c7f2475e8ab
2f9e3100645145049d8356afad8d6dc02b79fce9
/libft/ft_striteri.c
8e5ab60dee9fe76454838fa7c77b972377f481c5
[]
no_license
sammyjh30/get_next_line
8dc7616013994f0aba357a4e1571d364fccadd99
d59f321ff4af5dee3b2be03c0994d55d45dd290c
refs/heads/master
2020-03-23T19:21:07.191202
2018-10-15T07:53:40
2018-10-15T07:53:40
141,971,152
0
0
null
null
null
null
UTF-8
C
false
false
1,068
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striteri.c :+: :+: :+: ...
[ "shillebr@c1r3s3.wethinkcode.co.za" ]
shillebr@c1r3s3.wethinkcode.co.za
6bc9cc74762ef6debea3b8520551c0a3695befe5
c29c7fa67025d856e6656addb6b99b070d89a33e
/src/game/file_select.h
595e2159561e6c2e7835d6443a1f5151ae534fc4
[]
no_license
ctnlaring/sm64
77a7758049926dcfc25d6da1539125b8df73b6f3
2173cabb096b4af7b55c3a18da527071cd4cabfc
refs/heads/master
2022-03-20T09:40:32.113012
2019-07-20T09:21:48
2019-07-20T09:21:48
197,907,898
22
5
null
null
null
null
UTF-8
C
false
false
2,435
h
#ifndef _FILE_SELECT_H #define _FILE_SELECT_H #include "types.h" #define MENU_LAYER_MAIN 1 #define MENU_LAYER_SUBMENU 2 enum MainMenuButtonStates { MENU_BUTTON_STATE_DEFAULT, MENU_BUTTON_STATE_GROWING, MENU_BUTTON_STATE_FULLSCREEN, MENU_BUTTON_STATE_SHRINKING, MENU_BUTTON_STATE_ZOOM_IN_OUT, M...
[ "cnorwood7641@gmail.com" ]
cnorwood7641@gmail.com
9db7858aab588ffc7bd1d7deefc9d45a1cc6bb60
d5973d1b2a14c52c1cbfc860221c195ebdbb0c7e
/leap year.c
739e4405404c5b0a75a766f3a42cf61233434bd4
[]
no_license
jazzmahima/jazz
9ba03512b345f149b837e1bfa9c73851dd4c5b0c
fb6953e69507eebc7f2c846427d3c261edada13d
refs/heads/master
2021-01-19T22:44:02.290217
2017-06-29T06:07:19
2017-06-29T06:07:19
88,853,562
0
0
null
null
null
null
UTF-8
C
false
false
191
c
#include<stdio.h> #include<conio.h> void main() { int a; clrscr(); scanf("%d",&a); if((a%4==0)&&(a%100==0)&&(a%400==0) { printf("leap year"); } else { printf("not a leap year"); } getch(); }
[ "noreply@github.com" ]
jazzmahima.noreply@github.com
49e3103cd087125aa3b13ffb13ae31b0239e7f5a
e66fceee9d201962b0668e1f58c46859854fceb4
/kungfu/skill/zuixian-steps.c
25630ca5dd53c00db13fde0da46156647b199b1c
[]
no_license
cao777/mudHYLib
a8a6e28d097afb87ef68ee0a3fae13a1c50fe822
dd7832cc0abad1a21c797692c3f5fafd98702fb6
refs/heads/master
2023-03-15T16:26:34.697435
2018-12-03T15:35:34
2018-12-03T15:35:34
null
0
0
null
null
null
null
GB18030
C
false
false
1,061
c
// pyrobat-steps.c inherit SKILL; string *dodge_msg = ({ "但是$n身形飘忽,轻轻一纵,一招「醉仙望月」,轻而易举的避开这一击。\n", "$n身随意转,一式「仙人敬酒」,往旁窜开数尺,躲了开去。\n", "$n身形往上拔起,一招「把酒飞仙」,一个转折落在数尺之外。\n" }); int valid_enable(string usage) { return (usage=="dodge") || (usage=="dodge"); } int valid_learn(object me) ...
[ "i@oiuv.cn" ]
i@oiuv.cn
aeb4fec2e3a719a815cde40a99065e9cdbd1423c
3fb740090c7df0b0a2a7f3974653e0348228e517
/hw2/Receiver.c
54ab1d46fc8ef4fb1a0d5ab23442570d29c6ecdd
[]
no_license
b02902128/Computer-Network
22d4ffc40482ef86fe60ad4fee978549555bfc21
f83ee44d7ced64fa91f14b527c0f3fd581e67eb9
refs/heads/master
2021-01-10T13:20:52.288639
2016-03-01T12:02:04
2016-03-01T12:02:04
52,872,924
0
0
null
null
null
null
UTF-8
C
false
false
6,997
c
#include <sys/socket.h> #include <netinet/in.h> #include <stdio.h> #include <netdb.h> #include <string.h> #include <sys/types.h> #include <unistd.h> #include <math.h> #include <stdlib.h> #include <sys/stat.h> #include <errno.h> #include <fcntl.h> #include <sys/time.h> #include <time.h> #include <arpa/inet...
[ "b02902128@linux9.csie.ntu.edu.tw" ]
b02902128@linux9.csie.ntu.edu.tw
dfb844999ea095259b8f51c1a9f4bce8df49fe30
ee3ca1296a6b34fd78feae1ba546b8b79f3d3958
/c++/sharedmem/shmserver.c
996e42d25c7adb337f73b6cc998ce5b4dba543bb
[]
no_license
naguraghu99/prep
4dba239227b10641689125e3fb7a6d7611925f9f
c923ac5b5d6508de3fa247a7952bf8bccf311bda
refs/heads/master
2021-05-16T03:04:20.867335
2019-09-18T18:39:40
2019-09-18T18:39:40
35,823,380
0
0
null
null
null
null
UTF-8
C
false
false
2,627
c
/* This program is of client A client writes a message m of type 1 into shared memory by acquiring sizeof(m) bytes from S. A client can write several messages into shared memory at one time.But as soon as a client completes writing, control is given to server to read a message from the shared memory */ #define ...
[ "nagu.raghu99@gmaial.com" ]
nagu.raghu99@gmaial.com
2d141ed3677b47ca327bef4efdf4ed79f253bd6e
aefcc95825ff7016ca5908b903a8d7ac71c92999
/src/nRF905API/nvram.h
ff4fcd9697c4bafbed932279ccc30c184fae24fe
[ "MIT" ]
permissive
eelcohn/nRF905-API
348202df62b917814d8ff870e94af066ef4143a2
e4d223672f4d529f7edd32613bb5b3577a9aec69
refs/heads/master
2023-05-11T07:44:38.221256
2023-05-02T09:14:27
2023-05-02T09:14:27
251,044,288
59
23
MIT
2021-02-12T07:37:58
2020-03-29T13:54:10
C++
UTF-8
C
false
false
2,735
h
#ifndef __NVRAM_H__ #define __NVRAM_H__ /* NVRAM defaults */ #define NVRAM_SIZE 512 // Size of EEPROM #define NVRAM_SIGNATURE 0xF905 // NVRAM signature #define NVRAM_VERSION 0x0001 // NVRAM signature /* Max size of config variables */ #define MAX_LANGUAGE 3 #define MAX_WIFI_HOSTNAME 33 #define MAX...
[ "eelcohn@debian-compiler.mi6.local" ]
eelcohn@debian-compiler.mi6.local
85c6d2b48eff5070e3976ef8325552c48d9a93ce
d9994a80006f11fe3ce08a79bc98408178fa620b
/modules/_asynciomodule.c
68ce9128cfa204520fab862d96d59885e27c12a7
[]
no_license
roy2220/asyncio-toolkit
bc45c6a602222aeacee8ba422c2992cabcae9df3
8de0f133755929a9783ed2a307503f3cfe2bcfa0
refs/heads/master
2020-03-18T14:29:25.399557
2018-06-06T11:48:05
2018-06-06T15:48:43
134,850,998
0
0
null
null
null
null
UTF-8
C
false
false
70,821
c
#include "Python.h" #include "structmember.h" /*[clinic input] module _asyncio [clinic start generated code]*/ /*[clinic end generated code: output=da39a3ee5e6b4b0d input=8fd17862aa989c69]*/ /* identifiers used from some functions */ _Py_IDENTIFIER(add_done_callback); _Py_IDENTIFIER(call_soon); _Py_IDENTIFIER(cance...
[ "roy2220@outlook.com" ]
roy2220@outlook.com
bdf0df8c42e571747b5b701d7e69847c6c002c5a
c827bfebbde82906e6b14a3f77d8f17830ea35da
/Development3.0/TeevraNative/eurex12_Headers/EurexTestHarness/EurexTestHarness/EurexTestHarness/EntGivUpOrdr.h
37829a326c9ebf654b8feb26ac91de23619f8ae0
[]
no_license
GiovanniPucariello/TeevraCore
13ccf7995c116267de5c403b962f1dc524ac1af7
9d755cc9ca91fb3ebc5b227d9de6bcf98a02c7b7
refs/heads/master
2021-05-29T18:12:29.174279
2013-04-22T07:44:28
2013-04-22T07:44:28
null
0
0
null
null
null
null
UTF-8
C
false
false
17,418
h
#include <EntGivUpOrdr.hxx> #define BUFFER_SIZE 1000 futEntGivUpOrdrRequestT *vfutEntGivUpOrdrRequestT; futEntGivUpOrdrResponseT *vfutEntGivUpOrdrResponseT; optEntGivUpOrdrRequestT *voptEntGivUpOrdrRequestT; optEntGivUpOrdrResponseT *voptEntGivUpOrdrResponseT; /** * @Generated get<<InnerStruct>>() * **/ futBscEntGivU...
[ "ritwik.bose@headstrong.com" ]
ritwik.bose@headstrong.com
849582ca04b481b63158578788523c141d3ba5f5
7f2905f99e8c8d362e6cad4ae3710dc6495b8da9
/source/laMatrix.c
3839f8e97e723f3b3b84905ad45ad39c7de3cf7f
[]
no_license
AloySobek/LinearAlgebraForC
c16b63484e7a804fd19409094a69b722f60d43cd
28eb988a6d7c817c06b0a6db1c24408863cfa564
refs/heads/master
2020-07-29T16:31:38.118326
2019-10-20T17:28:11
2019-10-20T17:28:11
209,881,984
0
0
null
null
null
null
UTF-8
C
false
false
16,312
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* laMatrix.c :+: :+: :+: ...
[ "vrichese@mi-u5.21-school.ru" ]
vrichese@mi-u5.21-school.ru
40cc5328e8154c11de0af3741765b715982edcc6
de3521f03ac554b25e91015eb2f0d7e434a92519
/Libraries/3rd/curl/source/lib/http_negotiate.c
5909f85b0d69d0d2a0b4c267ff829f0ff6e2d6b4
[ "curl" ]
permissive
MiKTeX/miktex
5336dca6bbc09b121b5bd42e484e5b5ef1488017
60a5fd73f8a5e0654f1bbf9c68d9c1b8e777c6cd
refs/heads/next
2023-09-04T02:20:14.229772
2023-08-07T15:16:13
2023-08-07T15:16:13
61,892,189
727
107
NOASSERTION
2023-08-07T05:30:11
2016-06-24T15:00:19
C
UTF-8
C
false
false
6,469
c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\...
[ "cs@miktex.org" ]
cs@miktex.org
44ad20eecce7eec76954d94472aad4c817d41689
a5736fb7f67eed1850b2b3102ca9e0219f56307f
/remotecontrol/src/kmc/m_frame_cap_screen.h
b10814d95107affb7c0df0a4e757f9811224120c
[]
no_license
qinxinjiaopo/ChatRoom-WebServer
bb81afd529ff67f9a8ad58bb3af1f58b4e9ee9e1
10414b9c14ba4f14aaeeeaecd0c952432392d530
refs/heads/master
2022-10-24T22:01:30.535667
2020-06-11T03:29:48
2020-06-11T03:29:48
null
0
0
null
null
null
null
GB18030
C
false
false
614
h
/* 开发作者:可明 开发日期:2010.8 远程控制编程讨论群:30660169,6467438 */ #ifndef M_FRAME_CAP_SCREEN_H_INCLUDED #define M_FRAME_CAP_SCREEN_H_INCLUDED #include "km_head.h" #include "..\\share\\event.h" #define WM_R_CAP_SCREEN WM_APP+1 #define WM_R_CAP_SCREEN_COUNT WM_APP+2 int initialize_frame_cap_screen(); LRESULT __s...
[ "991435344@qq.com" ]
991435344@qq.com
53458e5510a515201e3464e49676d656dad12a02
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/media/radio/extr_radio-wl1273.c_wl1273_fm_fops_poll.c
cc51f95b9c8e1a3855b69c4606a766e342fbaa41
[]
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,601
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
9d4031d10c4bb6d73b516c53fbd46fa197e63198
dcf26a6bcf853a3f8f6f50f9379998ef4d8aad40
/vendor/hisi/hi35xx/middleware/source/third_party/ffmpeg/ffmpeg-y/libavcodec/exr.c
c3accf5a7447cf07930dce0ed7500d18050f071b
[]
no_license
small-seven/testmem
c5f3202dce1c369e9d84cdaaccc2008b827c16d8
2771460c617439bd1be562ffdc94543ea170a736
refs/heads/main
2023-03-12T22:16:28.824577
2021-03-03T04:24:59
2021-03-03T04:24:59
343,847,762
1
0
null
null
null
null
UTF-8
C
false
false
3,150
c
#include <float.h> #include <zlib.h> #include "libavutil/avassert.h" #include "libavutil/common.h" #include "libavutil/imgutils.h" #include "libavutil/intfloat.h" #include "libavutil/opt.h" #include "libavutil/color_utils.h" #include "avcodec.h" #include "bytestream.h" #if HAVE_BIGENDIAN #include "bswapdsp.h" #endif #i...
[ "huihuigong@users.noreply.github.com" ]
huihuigong@users.noreply.github.com
656136a4c1f43e57e75cb58fd0d77d062a2fc2a9
351e257e90b1eb70771ac24208cb15d27d01b84e
/test2.c
26be5839986cb41730e1dab781281a985facb584
[]
no_license
IuliaNeagoe/test
3315a11babf5d169131b47bfd69d0198089d391c
a62157faa8a4b0f429392278bf14c36c77292f51
refs/heads/master
2021-03-12T20:41:41.260360
2014-10-26T11:08:02
2014-10-26T11:08:02
null
0
0
null
null
null
null
UTF-8
C
false
false
68
c
int main() { printf("Hello - test2! "); printf("branch iulia "); }
[ "ayluyneag@yahoo.com" ]
ayluyneag@yahoo.com
c2611f05961781b7e15a40eab4c8b56bd046906a
53eaee89b3a196163d640bcb405953e9e4af2d30
/pgsql/include/server/libpq/pqformat.h
7080076eb7f1c56257cbe84929120abb0f1def6c
[ "Apache-2.0", "MIT" ]
permissive
ArcherCraftStore/ArcherVMPeridot
044a352859f37822fa3dc060f1815289bb35cf0d
a34cc477ba078e1609de42fab258ca0c1691f999
refs/heads/master
2022-11-04T06:22:44.189673
2014-07-07T19:31:47
2014-07-07T19:32:37
20,811,818
1
1
Apache-2.0
2022-10-27T06:03:06
2014-06-13T17:18:14
PHP
UTF-8
C
false
false
1,997
h
/*------------------------------------------------------------------------- * * pqformat.h * Definitions for formatting and parsing frontend/backend messages * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/...
[ "weldon23.henson23@gmail.com" ]
weldon23.henson23@gmail.com
c9880f68ffe161732dda9d295d1947d816226167
22243bdb92e3220fe0dbfb514f0d518d1693d70b
/prime_factor.c
42e60a1f41d7fb3a340b684c1260a9b5c09db3d6
[]
no_license
dearxxj/C
319bcd0dbda963e10e59a881c1bdfce2d9bfd4a3
f0173c968f2542ef8e99105795adbe6ec4561313
refs/heads/master
2016-09-16T10:16:15.276181
2013-11-29T16:37:31
2013-11-29T16:37:31
null
0
0
null
null
null
null
UTF-8
C
false
false
861
c
#include <stdio.h> int isprime(int p); int main() { int n, m, i, index; int prime[100]; index = -1; while (1) { printf("enter a number( > 1) to find its prime factor:"); scanf("%d", &n); while (n <= 1) { printf("invalid input number must > 1."); scanf("%d", &n); } m = n; for (i = 2; i <= n; i++...
[ "songfudan@gmail.com" ]
songfudan@gmail.com
59a8709705821a11528b7a6c0da39acab2df9a09
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/crypto/inside-secure/extr_safexcel_hash.c_safexcel_hmac_setkey.c
48359d76d9f4793bd8d05ab95e0d2886178546f7
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
2,539
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
dc9130b4491dd0bef021022d2626331f4e6ca3ec
21292b480b6a1eeb82ad9afea69c60baab2454a6
/src/mmt_mobile/asn1c/ngap/NGAP_RRCInactiveTransitionReport.h
79a6acd66b246122888b800e8110f9e54478830f
[ "Apache-2.0" ]
permissive
Montimage/mmt-dpi
fb0d1f695663ded73568d64093465c60803d828a
6dc790734cb32d3b89966535666239b103eada5c
refs/heads/master
2023-08-22T12:23:41.276825
2023-07-17T08:38:54
2023-07-17T08:38:54
450,171,795
6
1
Apache-2.0
2023-08-03T09:33:50
2022-01-20T16:24:40
C
UTF-8
C
false
false
1,229
h
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-PDU-Contents" * found in "./support/ngap-r15.2.0/PDU-Definitions.asn1" * `asn1c -D ./common -gen-PER -pdu=all -fcompound-names -findirect-choice -fno-include-deps -no-gen-example` */ #ifndef _NGAP_RRCInactiveTransitionReport_H_ ...
[ "nguyenhuunghia.gtvt@gmail.com" ]
nguyenhuunghia.gtvt@gmail.com
be46039ad61e130601ba56893b5574a2ac2120f8
32e910f5440c10b384bb26b5555ac7adb77540ee
/src/3rd_party/apr-util-1.5.3/include/apr_crypto.h
ed0982dbdd913d346b92371185c7881520035080
[ "LicenseRef-scancode-generic-export-compliance", "Apache-2.0", "LicenseRef-scancode-rsa-md4", "OLDAP-2.8", "MIT", "NTP", "RSA-MD", "BSD-4.3RENO", "Beerware", "LicenseRef-scancode-rsa-1990" ]
permissive
smartdevicelink/sdl_core
76658282fd85b16ed6d91d8d4087d8cd1353db76
7343fc72c12edc8ac42a62556c9e4b29c9408bc3
refs/heads/master
2022-11-04T12:17:58.725371
2022-10-26T15:34:13
2022-10-26T15:34:13
24,724,170
269
306
BSD-3-Clause
2022-10-26T15:34:15
2014-10-02T15:16:26
C++
UTF-8
C
false
false
16,911
h
/* 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 not...
[ "jjdickow@gmail.com" ]
jjdickow@gmail.com
84a758a2dcc8217ee785b3e2801606848051f803
2ca0e9b12dadd3d66a691fb26fc94e6573568b37
/Lab5/task2c/task2.c
0ecd9e19590a1a82ced359af17286bbfa26d9159
[]
no_license
assafrbi/Computer-Architecture-and-system-programming
e80d473ab0bbf3dcf7f6a9cf8acabbe0392e97b8
57c87ab486c4ad10536b269335c5c73f211826f8
refs/heads/master
2022-12-09T15:31:42.261187
2020-08-24T08:15:21
2020-08-24T08:15:21
null
0
0
null
null
null
null
UTF-8
C
false
false
6,337
c
#include <linux/limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "LineParser.h" #include <unistd.h> #include <signal.h> #include <sys/wait.h> #include <sys/types.h> #include <errno.h> #define TERMINATED -1 #define RUNNING 1 #define SUSPENDED 0 #define MAX_LINE 2048 typedef struct proce...
[ "noakrams96@gmail.com" ]
noakrams96@gmail.com
43846d410e992ac4b9529f4544c6e40c018750a8
a3055c74955449067334cb56b96e91a36a2ec6dc
/d/binghuodao/road5.c
28779efbcd40dbaf7ef76c1a59173c6df395109c
[]
no_license
flyinglb/jyqx
32dfac5b15b373919ae32688c0d1119bcb4592ff
1a6f8e002a206b05a5ba90554893f1b78dc91bb4
refs/heads/master
2020-09-26T18:18:33.949628
2019-12-06T11:47:47
2019-12-06T11:47:47
226,309,372
5
2
null
null
null
null
GB18030
C
false
false
531
c
// Room: /guiyun/duchuan.c // Date: Nov.18 1998 by Winder inherit ROOM; #include <ansi.h> void create() { set("short", "小路"); set("long", @LONG 一条草丛中,踏出的小路. LONG ); set("exits", ([ // "north" : __DIR__"mroad1", "east" : __DIR__"road7", // "south" : __DIR__...
[ "flyinglb@qq.com" ]
flyinglb@qq.com
12a1e9f39a40876a0181ffc64696d1600750ff3d
070faec0f083152bb82cc1f2eecd064d0db7b7cd
/CudaVoxelGenerator/resource.h
37f9ac92fee8baba5295492a55ae92b4699488f6
[]
no_license
robot9706/CudaVoxel
57fcf8b528223d503a3816e479e9ba1c5102666a
7e81bd308d0927692d3b299cd3dd6a4653609027
refs/heads/master
2023-01-22T12:31:32.559425
2020-12-06T13:27:54
2020-12-06T13:27:54
305,153,046
1
0
null
null
null
null
UTF-8
C
false
false
435
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by Resource.rc // #define IDR_BIN1 102 // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 103 #define _APS_NEXT_COMMAND_VALUE ...
[ "robot9706@gmail.com" ]
robot9706@gmail.com
32aa6609fdd4c38e0e7f5a27fc7aa869c02203fa
1669e2b3d2798d9679965f5f5bc4964f4ed6ca26
/include/barrelfish/vregion.h
01c2bd7a69fd42fd7bad30231010cd14f7f5d90a
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
iyzhang/arrakis
825c107f0b55704aef10b5f472aaae1cfa3239d2
8eb2db68d4408d15bc164ed2a1423432303ee8cd
refs/heads/master
2021-08-07T20:11:18.770925
2017-11-08T23:02:45
2017-11-08T23:02:45
110,040,482
0
0
null
2017-11-08T23:03:45
2017-11-08T23:03:45
null
UTF-8
C
false
false
3,915
h
/** * \file * \brief Vregion definitions */ /* * Copyright (c) 2009, 2010, ETH Zurich. * All rights reserved. * * This file is distributed under the terms in the attached LICENSE file. * If you do not find this file, copies can be found by writing to: * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Att...
[ "simpeter@triangle.(none)" ]
simpeter@triangle.(none)
7070058eaf31218a4c94891c52718cdcf4639d8d
fbb1bf610de5edd4d71a757fe3b07f4410052424
/salma/Souris/souris.c
c0d8b4213b92378942b853ef565ae94168563541
[]
no_license
aidlisalma/Techtastic_Team
7ed6f7fe1e985eda0c63f127d347dce8d3b586a0
e06a2108bfe9904100ff85e8b4ad510ff497af18
refs/heads/master
2021-01-08T22:00:28.466561
2020-06-10T12:45:40
2020-06-10T12:45:40
242,154,532
0
0
null
null
null
null
UTF-8
C
false
false
950
c
#include <stdlib.h> #include <stdio.h> #include <SDL/SDL.h> #include "SDL/SDL_image.h" #include "Hero.h" #include <time.h> #include "souris.h" void mouse(Hero *H,SDL_Rect *positionFond ,SDL_Rect *positionmilieu,SDL_Surface *ecran) { int mouseX=100; int mouseY=550; SDL_Event event; SDL_GetMouseState(&mouse...
[ "noreply@github.com" ]
aidlisalma.noreply@github.com
9a42b4ab07313bceed74f14b788942bacaae0e2b
6dde3f4abb1c1fce49fc967b38340830988bb9ac
/Re/ls/src/array.c
ccb55f9127ce79c8406efad92db871908188652d
[]
no_license
Zleub/ExperimentalArea
56a2aff80b77fbab7f37fa122f91cfe86dabed34
e0394d166ef81942ba4fd4c97040d54cc0c52123
refs/heads/master
2016-09-16T05:05:10.136936
2014-04-15T20:41:31
2014-04-15T20:41:31
null
0
0
null
null
null
null
UTF-8
C
false
false
1,617
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* array.c :+: :+: :+: ...
[ "adebray@e1r12p9.42.fr" ]
adebray@e1r12p9.42.fr
c89553dc570b278c1ebfeeb83f54311b93face8a
eaae3529ea65c9be62e4b177a498dd0459396052
/modified_vars/Berry_Magicka.c
1b9b2f8aefe3ff06f38e90b131187493db3e6475
[]
no_license
mgsanusi/blame-dodger
badac55079b0bc84c1c3ddff9357caffd480b512
c8b1f19d48e09200c9d59f3dda3b298ced7103d7
refs/heads/master
2021-01-20T04:50:14.975609
2018-01-12T00:02:14
2018-01-12T00:02:14
89,739,285
3
0
null
null
null
null
UTF-8
C
false
false
3,155
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> int Main(int argc, char **argv, char **envp) { int file = open(argv[1], O_RDONLY); size_t size = lseek(file, 0, 2); unsigned char *mem = malloc(size); lseek(file, 0, 0); read(file, mem, size); close(file); unsigned int s = 0; ...
[ "marina@virginia.edu" ]
marina@virginia.edu
a1fedbd3e27a95f491ce1e4a7fa996da38322e18
290e9dd635cf50634c93a95625dd23b909cafc3b
/C/square_service.h
d64aaadcde5114992cd513c1911efb8b3795754a
[]
no_license
chimerakang/linethrift
a10546198bf8d677e5f2793a27e58af8a8f7b408
3cade23b470ed4e80162bcccc97ad3cdab1e0928
refs/heads/master
2022-04-18T11:47:14.065158
2020-03-22T15:39:15
2020-03-22T15:39:15
null
0
0
null
null
null
null
UTF-8
C
false
true
72,435
h
/** * Autogenerated by Thrift Compiler (0.14.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ #ifndef SQUARE_SERVICE_H #define SQUARE_SERVICE_H #include <thrift/c_glib/processor/thrift_dispatch_processor.h> #include "line_types.h" /* SquareService service interface */ typ...
[ "tikuwakunn@icloud.com" ]
tikuwakunn@icloud.com
b7bac7eafa2a69da7e4530cc8d5f1044279c089d
be60deba39fb2c4ba04c32222666d8513524f5de
/lib/node_modules/@stdlib/strided/base/mskunary/src/i_d_as_d_d.c
ab22d9ed2b47689a5281d60c6034342dd62d5a0a
[ "Apache-2.0", "MIT", "SunPro", "BSD-3-Clause", "BSL-1.0", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jroell/stdlib
c7c418a60e460c556408d20dd925069e590b6b32
8400dff8ed6cd96e30b97b8dade5c856999f3394
refs/heads/develop
2023-07-19T18:56:06.058340
2021-02-08T04:42:29
2021-02-08T04:42:29
338,688,797
0
0
Apache-2.0
2023-07-05T15:32:26
2021-02-13T23:10:24
null
UTF-8
C
false
false
2,461
c
/** * @license Apache-2.0 * * Copyright (c) 2020 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
[ "kgryte@gmail.com" ]
kgryte@gmail.com
fc508bc0038b6ed540d6b3373f92361f4ba0c5d2
5e4a11896c3a320a05507e8dd9f70f6758d5ac31
/Unity/Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Reflection_MemberTypes.h
5b8e8e12b5bebdc2963789a1f2a3377dda4f8027
[]
no_license
SUMOU/SUMOU
d6b83aeb6b34351aa2ad883e2ea861b8944da385
d8023abb3115585fb2164e18d89091554bbcc720
refs/heads/master
2021-01-10T15:31:39.179817
2015-11-25T07:14:18
2015-11-25T07:14:18
45,302,855
0
0
null
null
null
null
UTF-8
C
false
false
371
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Enum.h" #include "mscorlib_System_Reflection_MemberTypes.h" // System.Reflection.MemberTypes struct MemberTypes_t1005 { // System.Int32 System.Reflectio...
[ "fujita1syu@gmail.com" ]
fujita1syu@gmail.com
0539e467b25584c5d2caff43dbf40918c88fcde7
3b7f6857c98e520178f1b8aae217055607cf849a
/Compiler/Compiler/tests/logical/ne_true.c
02cf66afc7e8e664cca1442036996f5182c7f0e8
[ "MIT" ]
permissive
ElijahJohnson5/C-Compiler
f4b5a6feeffedae49de2cd9a0689ef153cfd8d7c
64fc7759d66617d2ab8cbd6442978e00ca88dd33
refs/heads/master
2020-04-20T02:50:39.996826
2019-02-10T05:10:51
2019-02-10T05:10:51
168,581,749
1
0
null
null
null
null
UTF-8
C
false
false
32
c
int main() { return -1 != -2; }
[ "elijahjohnson987@gmail.com" ]
elijahjohnson987@gmail.com
5e341e3bed2fbd4db0f5b069e1dee44418493daf
665443052fa3c17f94c945f08b6378016d5a1dae
/0153-20140210/src/emu/cpu/rsp/rspdrc.c
5d209a0990e09ddd5d114a0c31d030440e1082aa
[]
no_license
dezi/mame-libretro-odroid
a6f3e0fd87e00fe8beda936f1cd3cf2fe508fcf0
31b588c088928f967b9fb9cf903b7a3f18a91eaa
refs/heads/master
2020-04-18T07:49:09.588326
2014-02-11T14:27:40
2014-02-11T14:27:40
16,698,177
2
0
null
null
null
null
UTF-8
C
false
false
238,856
c
/*************************************************************************** rspdrc.c Universal machine language-based Nintendo/SGI RSP emulator. Written by Harmony of the MESS team. SIMD versions of vector multiplication opcodes provided by Marathon Man of the CEN64 team. Copyright the MES...
[ "dezi@kappa-mm.de" ]
dezi@kappa-mm.de
7ed5c75de917a9c14e31908bc418932199fa5010
2954d7fab51973c8b7195c79ca427e3df8f5c0be
/ivs_project/software/worker_0_bsp/linker.h
449522c7fc44c82c410c513d37c6a5994165d1ec
[]
no_license
dekisa/13m041vs_projekat
3ac969d1ff8eed183f7db0c627180c5e7c0e77e9
5d2e40309a130a82afc1d162656c9c78bb15edf3
refs/heads/master
2020-04-16T10:23:49.722067
2019-09-19T14:57:31
2019-09-19T14:57:31
165,503,874
0
0
null
null
null
null
UTF-8
C
false
false
2,992
h
/* * linker.h - Linker script mapping information * * Machine generated for CPU 'worker_0_cpu' in SOPC Builder design 'system' * SOPC Builder design path: ../../system.sopcinfo * * Generated: Thu Sep 19 14:26:34 CEST 2019 */ /* * DO NOT MODIFY THIS FILE * * Changing this file will have subtle consequences *...
[ "dejan.95.lukic@gmail.com" ]
dejan.95.lukic@gmail.com
283c597fd7f008e21b3556207b8c3bc4cfb1d2db
2f4624d9db557a31f1b55ccad775611277a3ae11
/test/libglusterfs/refcount.cpp.c
bdf549f38efa6f6043548ee95f48f3155122b292
[]
no_license
sandrain/cslim
8d31f5a545a03742d92d0353bb4b06b747624551
48c857617944418f89bed2b7d542a9ba6366215c
refs/heads/master
2023-04-17T06:32:36.735930
2021-04-22T16:34:30
2021-04-22T16:34:30
357,900,391
0
0
null
null
null
null
UTF-8
C
false
false
179,420
c
# 1 "./refcount.c" # 1 "<built-in>" # 1 "<command-line>" # 1 "/usr/include/stdc-predef.h" 1 3 4 # 1 "<command-line>" 2 # 1 "./refcount.c" # 11 "./refcount.c" # 1 "./common-utils.h" 1 # 14 "./common-utils.h" # 1 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/include/stdint.h" 1 3 4 # 9 "/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3/i...
[ "sandrain@gmail.com" ]
sandrain@gmail.com
36b36c97cde2882c77758c8a8d70d2d4bebc449f
7c857119fe1505b1d80d6e62969661c06dc1a2f4
/MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecompress.c
512518699e4cd51858cddf7d150af4eb137a1190
[ "MIT", "BSD-2-Clause" ]
permissive
CloverHackyColor/CloverBootloader
7042ca7dd6b513d22be591a295e49071ae1482ee
2711170df4f60b2ae5aa20add3e00f35cf57b7e5
refs/heads/master
2023-08-30T22:14:34.590134
2023-08-27T19:14:02
2023-08-27T19:14:02
205,810,121
4,734
770
BSD-2-Clause
2023-09-03T12:41:33
2019-09-02T08:22:14
C
UTF-8
C
false
false
10,015
c
/** @file Brotli Decompress interfaces Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include <BrotliDecompressLibInternal.h> /** Dummy malloc function for compiler. **/ VOID * BrDummyMalloc ( IN size_t Size ) { ...
[ "isakov-sl@bk.ru" ]
isakov-sl@bk.ru
63abc119977116abf53f2861c4550ef3b859e3d4
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/mscorlib_System_Collections_Generic_Dictionary_2_ValueCollec_134MethodDeclarations.h
dc3c7519778e89c19cb91a07c68dfebe1dad05f4
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
2,446
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<GCGame.Table.Tab_FellowGainRate>> struct Enumerator_t11323; // System.Object struct Object_...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
afdfa1ca87426665a20ea947f3887f82ee55aab9
6171256bfc049ab44d0f4fcab0edc87757cac520
/Semester 2/Bank_Management_System Repo/externObjects.h
b005a298b4354edc145627f4cde7584922e12f1a
[]
no_license
HaiderSultanArc/AcademicProjects
39ef3cd8ccf30957d67424ef0c5c84c02ee439c9
bb631d7abb2a184e8b69c45d211455b4e19041ba
refs/heads/master
2023-04-10T08:41:41.726899
2021-04-24T19:03:35
2021-04-24T19:03:35
320,339,440
7
1
null
null
null
null
UTF-8
C
false
false
61
h
#pragma once #include "Customer.h" extern Customer customer;
[ "haidersultanarc@gmail.com" ]
haidersultanarc@gmail.com
7b10123ff260691c85f0e67f52e333e63179f29f
c41861731600097280505af0a3846f02666b1a9a
/homeCameraExtractionMain.h
9c0515d8296a579c8eb70a2cd83627903682d282
[]
no_license
msjobzhou/homeCameraExtractionOpencv3
6f33d54871b5abb92aa16ba1483f4ebd1d63e213
e622ceed16467340ef75926c269f0732f2ee9d5f
refs/heads/master
2020-06-23T14:39:00.419633
2019-09-26T14:37:16
2019-09-26T14:37:16
198,651,706
0
0
null
null
null
null
UTF-8
C
false
false
84
h
#pragma once void homeCameraExtractionMainLoop(); void deleteHomeCameraVideoFile();
[ "msjobzhou@hotmail.com" ]
msjobzhou@hotmail.com
67c01ec0c78ade3b6d68e8b2cf76ab5edd17e2c7
6eb39f3b96d746aed407527c9a9dc0892ba6f534
/driverlib/shamd5.c
731830e4caedffcffca3fbeb5e14c78e3d4d0a69
[ "BSD-3-Clause" ]
permissive
fjpolo/TM4C123_SPI_SDCard
b6470bb3c95284e56a70c5f60005de13d2ca72bc
41afc69ee7556706c2b861a3389e921774aa0253
refs/heads/master
2020-03-08T10:04:33.922186
2018-04-04T13:04:11
2018-04-04T13:04:11
128,062,984
3
0
null
null
null
null
UTF-8
C
false
false
33,000
c
//***************************************************************************** // // shamd5.c - Driver for the SHA/MD5 module. // // Copyright (c) 2012-2015 Texas Instruments Incorporated. All rights reserved. // Software License Agreement // // Redistribution and use in source and binary forms, with or without //...
[ "fjpolo@gmail.com" ]
fjpolo@gmail.com
6287b934f441b4623fe6af9b98d7086547b8c30a
4a33a59a16d74afe472944f84bd2f09a3ddeccf4
/houyi/keil/stm32f103/Libraries/STM32_USB-FS-Device_Driver/inc/usb_init.h
b3e49d6f51c8c0b3ae4c5867c78f84ff1ab9701d
[]
no_license
leitek/sw
41e340e26d8da556feb3998dc77c5d102b97b5b7
cd11e65dcd9822150e554634c1cab19950ca2b7b
refs/heads/master
2021-01-10T22:07:22.911121
2013-06-07T16:03:51
2013-06-07T16:03:51
null
0
0
null
null
null
null
UTF-8
C
false
false
2,709
h
/** ****************************************************************************** * @file usb_init.h * @author MCD Application Team * @version V3.4.0 * @date 29-June-2012 * @brief Initialization routines & global variables *************************************************************************...
[ "video.processor@gmail.com" ]
video.processor@gmail.com
18e10d2f4155c0f8199dfbf58b365a0f86e8f240
f5c9a6ad950000eaa4f828cdcd14712584f57c0f
/utility/utilities.h
618c6e4632cc8ada42d4e515553d13f42554df83
[]
no_license
mweintra/ZigBee
d9ebbe2cc976df1e367130f55a0dce8a9c21f21f
64f8057964c60976a8d05b6128484b8d612c84be
refs/heads/master
2016-09-11T03:12:04.827817
2014-11-11T15:28:30
2014-11-11T15:28:30
25,903,958
19
7
null
null
null
null
WINDOWS-1258
C
false
false
3,735
h
/** * @file utilities.h * * @brief public methods for utilities.c * * $Rev: 1957 $ * $Author: dsmith $ * $Date: 2013-11-22 14:54:11 -0800 (Fri, 22 Nov 2013) $ * * @section support Support * Please refer to the wiki at www.anaren.com/air-wiki-zigbee for more information. Additional support * is available via email at...
[ "marc@apsnyc.com" ]
marc@apsnyc.com
826afe5f8015cf4d695457f759548c52d5fb693f
9b10842bf603269fd8986a5eb4d103108fc679ad
/src/konstants.c
96f91483056d2cc76228df3a38684673d99f2574
[ "Apache-2.0" ]
permissive
CasusCura/ArduinoPendant
c962051a0175fb8a0655ff1970cd76b85be64bca
a2158ee731d204daba66971b919a1c9fcce23c28
refs/heads/master
2021-09-10T17:02:06.855660
2018-03-29T18:17:17
2018-03-29T18:17:17
120,350,704
0
0
null
null
null
null
UTF-8
C
false
false
890
c
/* * Module: Konstants * * Variable Constants * * Author: Alex Dale @superoxigen * * Copyright (c) 2018 Alex Dale * See LICENSE for information. */ #include "konstants.h" #include "env_config.h" /* Device Information */ kstring_t kDeviceUUID = DEVICE_UUID; kstring_t kDeviceSerial = DEVICE_SERIAL; #ifd...
[ "alex@snowycloud.com" ]
alex@snowycloud.com
244b9a2bf8ce26c191136c2a35e52deb25fc8a6d
babf4d7a0759ed1f1ab09441d39b413393df9393
/matlab/Robot/LBR4pSimple/c/include/LBR4pSimple_gravload.h
28b709092029046c9312c58d9a028339f3838991
[]
no_license
pi-q/learnOptimWBC
ed9fcc3674cb1f4fe7bbedc31d73439f81a8f533
880a0948aa3175da6ffa6e0a1b45ad5072d9b9e4
refs/heads/master
2021-09-24T10:11:36.115365
2018-10-07T19:21:42
2018-10-07T19:21:42
null
0
0
null
null
null
null
UTF-8
C
false
false
2,341
h
/*! \file LBR4pSimple_gravload.h \brief Computation of the configuration dependent vector of gravitational load forces/torques for LBR4pSimple copy Given a full set of joint variables this function computes the configuration dependent vector of gravitational load forces/torques. Angles have to be given in rad...
[ "valerio.modugno@gmail.com" ]
valerio.modugno@gmail.com
3957ac371208d784ac0b75a880cf9bce7b2266cd
5726805a10001e9b823f06fc58a6e0b58b089b7c
/nfc-bluetooth/controllers/test_comms_position/OAM.h
f19e1244c49669edaa15df97fee30d2e28b81112
[]
no_license
RicMat/WeBots
8653e6949ee7bfeb335274b6a5344d9f7c966360
1b8d640afed20bc707700fc820407a7e84e7c366
refs/heads/main
2023-07-15T22:33:50.670943
2021-08-30T03:36:16
2021-08-30T03:36:16
361,783,809
0
0
null
null
null
null
UTF-8
C
false
false
1,274
h
#ifndef OAM_H_ #define OAM_H_ // Global defines #define TRUE 1 #define FALSE 0 #define NO_SIDE -1 #define LEFT 0 #define RIGHT 1 #define WHITE 0 #define BLACK 1 #define COMMUNICATION_CHANNEL 1 #define COMMUNICATION_CHANNEL_BT 2 // #define FLOOR_SIZE 1.0 // 8 IR proximity sensors #define NB_DIST_SENS 8 #define PS_R...
[ "da.ri.mat42@gmail.com" ]
da.ri.mat42@gmail.com
773b8a37759818d273a414562d3c3e98b7bf623c
90d45e24af2117f461ca80364435719b723896d1
/programs/invgen/nest-if_invariant.c
14a5e8734e744f30f3a117855565fc1c4fcfda4a
[]
no_license
sunjun-group/loopInvariant
e1be32ce3c1f4d99709d76c8f5f9435e9aaec34b
731bc50e0d5231fea649df2226e461e80197add0
refs/heads/master
2020-04-10T16:37:20.431497
2016-10-24T06:54:09
2016-10-24T06:54:09
68,085,189
1
1
null
null
null
null
UTF-8
C
false
false
285
c
#include <assert.h> void main() { int i,k,n; // tmpl("(le(n,i,k,l),le(n,i,k,l))"); tmpl("(le(n,i,k),le(n,i,k))"); // assume(l>0); // invariant (1 <= && k <= n) for (k=1;k<n;k++){ for (i=1;i<n;i++) assert(1<=k); if(i<n) for (i=1;i<n;i++); } }
[ "hoangen@gmail.com" ]
hoangen@gmail.com
f066e418b13046457ccedbd416b499201066029d
8ae219e3597a673f949ba585158b18250f04885b
/SYSTEM/sys/sys.c
4387a4c8f420a380900a289ad16d45a85ca6a914
[]
no_license
brilliance-rey/VectorFence
09c866641228e3451f2633916cda235440256317
ca51d16dbd9dfc2ac2a1266ac5e297f9776b8296
refs/heads/master
2022-11-27T00:24:04.548094
2020-07-18T07:03:01
2020-07-18T07:03:01
280,601,659
0
0
null
null
null
null
GB18030
C
false
false
1,290
c
#include "sys.h" #include "24cxx.h" #include "alarm.h" #include "log.h" //******************************************************************************** //修改说明 //无 ////////////////////////////////////////////////////////////////////////////////// u8 config_code = 0; //THUMB指令不支持汇编内联 //采用如下方法实现执行汇编指令...
[ "Eryan@RenEryan" ]
Eryan@RenEryan
f7b6e4a4e8ab97c325d97c943e8578e23f34f28c
cb47c4a31aa86b3917b30e6ba707536d7a398a45
/Assignments/Assignment1/worm.c
25bfd4da890be9aa644c1ce00e061c89d58eb679
[]
no_license
geexiee/COMP1521
bf0386ee9d178ab41ec81e0ace3d2f7457ce8cc0
92f6e28a7fe4a9fc85a58028194568525372572d
refs/heads/master
2023-05-21T14:22:15.715937
2021-06-16T05:03:22
2021-06-16T05:03:22
377,375,854
1
0
null
null
null
null
UTF-8
C
false
false
5,508
c
// COMP1521 18s1 Ass1 ... C solution #include <stdlib.h> #include <stdio.h> #include <unistd.h> // constants #define NCOLS 40 #define NROWS 20 #define MAX_LEN NCOLS #define MAX_ITER 100 #define CLEAR "\033[H\033[2J" // globals int wormCol[MAX_LEN]; // (col,row) coords of worm segments int wormRow[MAX_LEN]; /...
[ "z5160618@cse.unsw.edu.au" ]
z5160618@cse.unsw.edu.au
cfd8951b3c487377c6ed557c76520a959c3640c0
9f375525240c99d9c5237f72e45d4f451fc48968
/src/graph.h
a87b5199661561b88d3c87650b8c62593c3673a3
[]
no_license
naufalsuryasumirat/TubesAlstrukdat
7f6b0c9a1a6eba0f588c64bac1eb210f6e18567f
2da47fe20844bd7a86ead3f0789a6c33d1e0d94e
refs/heads/main
2023-01-22T04:40:18.081557
2020-11-24T03:59:05
2020-11-24T03:59:05
306,604,194
0
1
null
null
null
null
UTF-8
C
false
false
547
h
/* *** Definisi ABSTRACT DATA TYPE GRAPH *** */ #ifndef GRAPH_H #define GRAPH_H #include "boolean.h" #include "map.h" typedef char ElType; typedef struct Node* Address; typedef struct { MAP Map; Address Prev; Address Next; } Node; /* *** Notasi Akses:...
[ "naufal.suryasumirat@gmail.com" ]
naufal.suryasumirat@gmail.com
42789566b49e7ed660ba226f71ab1d8d9bd60c01
9ffc43793f17a3a498ba27920b80c8d30fee3cc3
/asmdir/src/asm5.c
3eee77f95235da7a16a288698b1e27b9b65b8521
[]
no_license
amazhara/Corewar
66cbabaf5c7f7eeacd5055ee4f405d191a26eb18
2a5920f71eb4ad71ce69fe84243666762ad794d6
refs/heads/master
2020-06-07T03:48:09.892270
2019-10-05T11:49:12
2019-10-05T11:49:12
192,914,922
0
0
null
null
null
null
UTF-8
C
false
false
2,699
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* asm5.c :+: :+: :+: ...
[ "levilater@gmail.com" ]
levilater@gmail.com
aa88efc4cbbfffaf3e563b4986ed89a70155896d
89c959acc02ecfc5ca6d2b2957eb1ca8c15f11cc
/linux/src/include/bcmnvram.h
f494dd81044238c387c4a8da5c140fc72bf7136a
[]
no_license
iptime-gpl/userapps_a6004ns
662591cbdd3635ec7f58fe56bbdc3be9852dd117
c08c4726158516c11dc0909e7938df48c262844a
refs/heads/master
2021-09-15T00:36:56.997455
2018-05-23T00:28:52
2018-05-23T00:28:52
118,980,289
1
1
null
null
null
null
UTF-8
C
false
false
8,224
h
/* * NVRAM variable manipulation * * Copyright (C) 2014, Broadcom Corporation. All Rights Reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all co...
[ "iptime.gpl@guu.moe" ]
iptime.gpl@guu.moe
0487fa71d3523164c15927ec4bc3ec1169df95f9
29b56881b78c58a72856e30388feecb3f1f60c7d
/pigpio/pigpio.c
bb6a4d259551a8c6c5cc7fb83a0488215a304584
[ "Apache-2.0" ]
permissive
nullpainter/pdpigpio
0209a747a2879c77f77e5ccc21feacb184de3958
d3e014249f0ae123b34b3c506523c51a217b3cfe
refs/heads/main
2023-07-31T09:44:02.698181
2021-10-09T06:48:35
2021-10-09T06:48:35
403,179,080
2
0
null
null
null
null
UTF-8
C
false
false
2,609
c
#include "m_pd.h" #include <stdbool.h> #include <stdlib.h> #include <unistd.h> #include <pigpio.h> static t_class *pigpio_class; typedef struct _pigpio { t_object x_obj; t_inlet *in_intensity; t_outlet *x_out; int x_gpio; float x_val; unsigned int gpio_mode; bool initialised; } t_pigpio;...
[ "matt@deity.co.nz" ]
matt@deity.co.nz
64488fba298e2d627a09069682a0b158a7dc8a04
b0b3124ef08d54cd190d0f071376006278d54625
/Week1/D1/rightAngledTriangleStar/main.c
6b194585f925c7308aeb7fa8e9e76fb5460cf1fd
[]
no_license
MahletH/IntroductionToCompetitiveProgramming
4acbee26edb821cc6331af170f0b21d2297bc7d1
a9c406728b86891d4ba085aa2244f3739d002899
refs/heads/master
2020-11-30T06:36:24.338341
2020-04-22T19:42:33
2020-04-22T19:42:33
230,333,899
1
0
null
null
null
null
UTF-8
C
false
false
328
c
#include <stdio.h> int main() { int input, numOfRows, numOfStar; printf("Enter number of rows:\n"); scanf("%d",&input); for(numOfRows=1; numOfRows<=input; ++numOfRows){ for(numOfStar=1; numOfStar<=numOfRows; ++numOfStar){ printf("*\t"); } printf("\n"); } retu...
[ "mahletdereje23@gmail.com" ]
mahletdereje23@gmail.com
b94a65e2afd58c9215ea3dc4df59ae1c1c49ac53
99bdb3251fecee538e0630f15f6574054dfc1468
/bsp/rv32m1_vega/rv32m1_sdk_riscv/devices/RV32M1/drivers/fsl_flash.h
c39cc9b43fc027177f72bf8a305aba477046573d
[ "Apache-2.0", "Zlib", "LicenseRef-scancode-proprietary-license", "MIT", "BSD-3-Clause", "X11", "BSD-4-Clause-UC", "LicenseRef-scancode-unknown-license-reference" ]
permissive
RT-Thread/rt-thread
03a7c52c2aeb1b06a544143b0e803d72f47d1ece
3602f891211904a27dcbd51e5ba72fefce7326b2
refs/heads/master
2023-09-01T04:10:20.295801
2023-08-31T16:20:55
2023-08-31T16:20:55
7,408,108
9,599
5,805
Apache-2.0
2023-09-14T13:37:26
2013-01-02T14:49:21
C
UTF-8
C
false
false
62,447
h
/* * Copyright (c) 2013-2016, Freescale Semiconductor, Inc. * Copyright 2016-2017 NXP * All rights reserved. * * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef _FSL_FLASH_H_ #define _FSL_FLASH_H_ #if (defined(BL_TARGET_FLASH) || defined(BL_TARGET_ROM) || defined(BL_TARGET_RAM)) #include <assert.h> #includ...
[ "bernard.xiong@gmail.com" ]
bernard.xiong@gmail.com
571d0dea6155933508e6e06fc585a9bd70f20686
7ec9b46a404c44f8b9ac68a7a5fa8ca78d790394
/src/test_ray_int.c
5f13dad503af9bdc3b3151ab41a8e29f0d0bf584
[]
no_license
jasongu927/Computer-Graphics
14a23e8dd802612f23b70e6ac21b246fa2af86aa
a2211a16b2d489e3353cb7823933e9ec0a67c95f
refs/heads/master
2020-04-09T16:31:18.750241
2019-01-03T03:09:11
2019-01-03T03:09:11
null
0
0
null
null
null
null
UTF-8
C
false
false
1,523
c
/* test_ray.c * Creates the frames for a GIF showing a cloud of fish; demonstrates z-buffer * * Melody Mao and Jason Gurevitch * CS451 Fall 2018 * Project 2 */ #include <stdio.h> #include <stdlib.h> #include "graphics.h" #include "ray.h" int main(int argc, char *argv[]) { // m...
[ "noreply@github.com" ]
jasongu927.noreply@github.com
0689bfbc2d398d6d72b97974aaf1af7ea2624f68
6dced2b1ee825ecda16a83a803d592d687f047c8
/include/odp/api/crypto.h
a9a2a1d94ec67f0f40b3faef50b27ff29e2b2ecc
[ "BSD-3-Clause" ]
permissive
leitao/odp
fc943b85847fdcdbd485d172b85197515ea12f50
e57390019607faba7a52603142acbe055c45aaac
refs/heads/master
2020-12-03T10:41:20.371385
2016-04-01T19:45:38
2016-04-01T19:45:38
55,257,906
0
0
null
2016-04-01T19:41:22
2016-04-01T19:41:22
null
UTF-8
C
false
false
11,299
h
/* Copyright (c) 2014, Linaro Limited * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /** * @file * * ODP crypto */ #ifndef ODP_API_CRYPTO_H_ #define ODP_API_CRYPTO_H_ #ifdef __cplusplus extern "C" { #endif /** @defgroup odp_crypto ODP CRYPTO * Macros, enums, types and operations ...
[ "maxim.uvarov@linaro.org" ]
maxim.uvarov@linaro.org
5992ea91e759d110a4ff7555d945d5804cafe2a8
aa388198c0b10bf55138d9ac39329be73bf7c860
/Common/install.h
40d991668c3477bc7cc94b4df4e61895c94d2b3e
[]
no_license
byteman/spi
87385d3793ea77e31d0e524d2a8e83c0edcf2109
50e4d6ab086af275e7fe9599b74a381edf47e319
refs/heads/master
2016-09-08T05:03:53.257387
2013-11-04T14:31:20
2013-11-04T14:31:20
14,109,367
1
1
null
null
null
null
UTF-8
C
false
false
12,285
h
// // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (C) 2004 Microsoft Corporation. All Rights Reserved. // // Module Name...
[ "wangchen2011@gmail.com" ]
wangchen2011@gmail.com
49205b81ccd953dc5b3d30efaa4a828b98bd389f
78dc9f153549b281be709227bc9897931b06260d
/generation/WinSDK/RecompiledIdlHeaders/um/dmo.h
e9635874ec77a83676b982d905251ad02ae3d566
[ "MIT" ]
permissive
microsoft/win32metadata
dff35b4fe904d556162cee5133294c4498f1a79a
5bf233f04d45f7a697e112e9639722551103eb07
refs/heads/main
2023-09-01T19:51:22.972899
2023-08-30T21:39:44
2023-08-30T21:39:44
270,838,404
1,240
107
NOASSERTION
2023-09-14T18:49:44
2020-06-08T21:52:10
C++
UTF-8
C
false
false
846
h
//------------------------------------------------------------------------------ // File: DMO.h // // Desc: Headers needed by almost all DMOs. // // Copyright (c) 1999 - 2001, Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ #ifndef __DMO_H_...
[ "noreply@github.com" ]
microsoft.noreply@github.com
2fb34d8c897f55e5fea2db97708b2a6ba8564ddc
979d8a24316d2dab8910c98d78291ec37a9e2d93
/LinuxNetworkProgramming/P26msg_recv.c
fd87dd6e15e74296c0a104d186941cb71e5ff074
[]
no_license
FL-sky/Linux_Network_Jiwang
802b81d94aad36016a2ba4c117e9dd04c4657b6b
31d177b28dffdd85d7f6591146d5cdb046b9b380
refs/heads/master
2023-02-27T15:28:05.930034
2021-02-08T01:57:04
2021-02-08T01:57:04
null
0
0
null
null
null
null
UTF-8
C
false
false
2,135
c
// // Created by wangji on 19-8-12. // // p25 system v消息队列(二) #include <unistd.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> #include <stdlib.h> #include <stdio.h> #include <errno.h> #define ERR_EXIT(m) \ do \ { \ perror(m); \ exit(EXIT_FAILURE); \ ...
[ "jiwangreal@163.com" ]
jiwangreal@163.com
bae4cbd89a1750816c73b37194df028d268b5a43
157fd7fe5e541c8ef7559b212078eb7a6dbf51c6
/TRiAS/TRiAS/GeometrieVerarbeitung/GeometrieEditierung2/EditKonst.h
d8eb856fcb61b3046cacebc5953ba8e839504cad
[]
no_license
15831944/TRiAS
d2bab6fd129a86fc2f06f2103d8bcd08237c49af
840946b85dcefb34efc219446240e21f51d2c60d
refs/heads/master
2020-09-05T05:56:39.624150
2012-11-11T02:24:49
2012-11-11T02:24:49
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
4,947
h
// Allgemeine Deklarationen für die Erweiterung "Geometrie-Editierung" // File: EditKonst.h // W. Mörtl #ifndef _EDITKONST_H #define _EDITKONST_H /////////////////////////////////////////////////////////////////////////////////////////////// // mögliche Aktivitäten beim Erfassen eines Objektes enum AktNeu ...
[ "Windows Live ID\\hkaiser@cct.lsu.edu" ]
Windows Live ID\hkaiser@cct.lsu.edu
850f63413ded193253052319977244fb11be3908
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/shadow/mon/tradesman.c
dec24e16fa26ad30b8187b38cefd135f2390679e
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cherno-SuS/SunderingShadows
5f755fbebb79dc0b9d1c2a0541408be4afeb8b67
c3b4370beb2c4351ecc60826850c94892a42b685
refs/heads/main
2023-04-21T09:52:14.580024
2021-03-23T12:09:55
2021-03-23T12:09:55
349,490,686
0
0
NOASSERTION
2021-03-23T12:09:56
2021-03-19T16:40:12
null
UTF-8
C
false
false
580
c
inherit "/std/monster"; create(){ ::create(); set_name("tradesman"); set_id( ({"Tradesman", "tradesman", "man"}) ); set("short", "a Tradesman"); set("long", "He is a man looking to trade his goods."); set("race", "human"); set_gender("male"); set_body_type("human"); set_max_hp(5); set_hp(4); set_overall_ac(10); set_siz...
[ "law@shadowgate.org" ]
law@shadowgate.org
b74e6c18c38de338e79e46f744ff9b0172a31abd
6af2288b66281a124a8e66b385f31ace922476f5
/tcpkill6.c
231882f153acd563985a590a67da7cc804e32a02
[]
no_license
hechaoli/tcpkill6
4f3e728a65b08b3c60ad742af3237f82f86a5eef
cf0e8d4f2f3813445ce287df8703abefeb097d12
refs/heads/master
2022-11-17T13:16:15.057131
2020-07-20T22:24:38
2020-07-20T22:24:38
261,564,209
5
4
null
2020-07-20T22:24:40
2020-05-05T19:26:21
C
UTF-8
C
false
false
4,153
c
/* tcpkill.c Kill TCP connections already in progress. Copyright (c) 2000 Dug Song <dugsong@monkey.org> $Id: tcpkill.c,v 1.15 2000/11/30 00:39:05 dugsong Exp $ */ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <err.h> #include <libnet.h> #inclu...
[ "hechaol@fb.com" ]
hechaol@fb.com
68bf85cc049c6d3717f7e6366c07b8287d8c5760
7d122ea102695cc2cedf7d63da00eb681704f9eb
/EL_35.c
9ff589997870629e31f1d3b5c6370db25b8095d6
[]
no_license
SuryanshPan29/Elmentary-programs
d4ae497aee743bd1975a6a86321286f48e3fdcd4
952031f3e34b08e424427db4e8d5dd485fe4735e
refs/heads/master
2020-06-18T04:17:22.139918
2019-07-10T10:00:49
2019-07-10T10:00:49
196,161,607
0
0
null
null
null
null
UTF-8
C
false
false
467
c
#include<stdio.h> int main() { int a[100],i=0,d,times,start; printf("Please enter length up to which you want an A.P \n"); scanf("%d",&times); printf("Please enter the common difference here\n"); scanf("%d",&d); printf("Please enter the starting number here here\n"); scanf("%d",&s...
[ "noreply@github.com" ]
SuryanshPan29.noreply@github.com
5cd594deb98e92324fbd307720add98353bef710
6f23c2920cf47641ef3499b3e73c061024a3d96c
/ft_printf/libft/ft_putendl.c
25bd398199ededff903d63ca398e82b03e9ee2b3
[]
no_license
lachgarlahcen/ls
8f8bbcf3905c7f7e66036341f3e942d7c911dbbd
3badc65160fe886c3d5eeb08fa351a1ec5b051f2
refs/heads/master
2020-05-18T11:33:21.767695
2019-05-01T07:25:45
2019-05-01T07:25:45
184,382,553
2
0
null
null
null
null
UTF-8
C
false
false
1,001
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: ...
[ "lachgarlahcen@hotmail.com" ]
lachgarlahcen@hotmail.com
78788913a35ff5cad29bd6508d5154d73855dacd
79ddf3b3aaeef1dd0364b4dbae8c53f52541f69c
/0x05-pointers_arrays_strings/100-print_number.c
999ed2f6e47cfd6ad113c9f61ebff9dd42318153
[ "Apache-2.0" ]
permissive
Samhaydarr/holbertonschool-c
0fe1c2c782d2a970cb3486fefb4d5110bc2b5907
d0384a27dc105cbce8f990568792ba03e99026f9
refs/heads/main
2023-08-20T18:44:47.333364
2021-11-02T23:00:22
2021-11-02T23:00:22
394,062,334
0
0
null
null
null
null
UTF-8
C
false
false
456
c
#include "holberton.h" /** * print_number - prints an integer * @n: int to be printed * Return: nothing **/ void print_number(int n) { int dup, neg; dup = 1000000000; neg = 1; if (n > 0) { neg *= -1; n *= -1; } if (n != 0) { while (n / dup == 0) { dup = dup / 10; } if (neg == 1) { _putc...
[ "noreply@github.com" ]
Samhaydarr.noreply@github.com
93bf5c62f7c1edf9b6aff157edce3318dd678ccc
83312e9c60508d06b5ed896c3ed6e0a3de1e4263
/libft/includes/libft.h
9e12bf5f23543c01ad89b71866297cfefb7e9164
[]
no_license
SillyDreamer/minishell
e34e7e292dbd4de9c74929ce7e6055b6b9ebedee
19648d14d3ca711b242d87d1d205c620b9b59940
refs/heads/master
2020-05-24T11:25:17.392591
2019-05-18T14:21:34
2019-05-18T14:21:34
187,248,515
0
0
null
null
null
null
UTF-8
C
false
false
1,243
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft.h :+: :+: :+: ...
[ "ghazrak-@vo-h2.21-school.ru" ]
ghazrak-@vo-h2.21-school.ru
59382ceb381245d1cf4579fa20834dbd2db330fa
e022035aa7be3c30ac8cc34594e0a9973caf3b89
/minheap.h
a1bc4fea073331a96828e49acbfdf45f2f2daf96
[]
no_license
shevacjs/lua_min_heap
24ae4d2076a3b904e2f78c8424e268def3ed624a
66f0eed63412ef4be63b93610539512d2cef5560
refs/heads/master
2016-09-06T02:57:43.162727
2014-05-21T05:56:45
2014-05-21T05:56:45
null
0
0
null
null
null
null
UTF-8
C
false
false
802
h
/*************************************************************************** * * Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved * **************************************************************************/ /** * @file heap.h * @author chenjiansen(com@baidu.com) * @date 2014/05/13 21:12:41 * @bri...
[ "shevacjs@qq.com" ]
shevacjs@qq.com
1d8f9767c397437b7ce00402f8f7e4fe1a457731
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/c-litmus-ARMCBMC/long-3.SB+poonceacquire+poreleaseacquire+poreleaseacquire.c
f4bef8eb6ef70727c98d1a2c49bbf539e68800c8
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C
false
false
1,932
c
/* Copyright (C) 2023 ARM-CBMC * This benchmark is part of ARM-CBMC */ #include <assert.h> #include <pthread.h> #include <stdatomic.h> // Memory barriers void dmbld(); void dmbst(); void dmbsy(); void isb(); atomic_long vars[3]; atomic_long atom_0_X1_0; atomic_long atom_1_X1_0; atomic_long atom_2_X1_0; void *t0...
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
8717c2f50f0d802707da57236d1f032d52e1e87a
191707dd19837f7abd6f4255cd42b78d3ca741c5
/X11R6/contrib/lib/auis-6.3/overhead/class/machdep/apollo_68k/doload.h
dd1e0c7d3bed68556a59500d4ea20e622202f7ce
[ "BSD-3-Clause", "LicenseRef-scancode-public-domain" ]
permissive
yoya/x.org
4709089f97b1b48f7de2cfbeff1881c59ea1d28e
fb9e6d4bd0c880cfc674d4697322331fe39864d9
refs/heads/master
2023-08-08T02:00:51.277615
2023-07-25T14:05:05
2023-07-25T14:05:05
163,954,490
2
0
null
null
null
null
UTF-8
C
false
false
2,834
h
/*********************************************************** Copyright IBM Corporation 1991 All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appe...
[ "yoya@awm.jp" ]
yoya@awm.jp
bdc22ddd4813c729074f5bd9b1a8057839022c9b
29bc0d40cc7660af45b2f1638d05ebd1a2bdc7d4
/deprecated/renderer/UI/UIClickable.h
4ceca568d0fa9f97ce5fa445f01ea48bbe52caaf
[ "Apache-2.0" ]
permissive
swarzzy/parallax
dd6f18211f87f535f54c38d2e9938d192f0e2352
1e2c7958548c49eac8f378e8f99b3cd2a1516350
refs/heads/master
2020-03-27T05:16:01.065785
2018-11-12T08:53:35
2018-11-12T08:53:35
145,986,486
1
0
null
null
null
null
UTF-8
C
false
false
803
h
//#pragma once //#ifndef _PARALLAX_RENDERER_UI_CLICKABLE_H_ //#define _PARALLAX_RENDERER_UI_CLICKABLE_H_ // //#include "UIWidget.h" // //namespace prx { // class UIClickable : public UIWidget { // protected: // bool m_Pressed; // // protected: // UIClickable(const hpm::vec2& position, const hpm::vec2& size, unsigned ...
[ "hbr.tzuf@yandex.ru" ]
hbr.tzuf@yandex.ru
82e5c94bae34cb187cfbde1c9e7274bf5bc6ff33
9fbe10e5933abc56f7bfd554055983a874253472
/Cpre185/hw1/hw1-3.c
00421084f634ee8bc7f6865cde2cd62d86f9b2af
[]
no_license
kathyhuang/School
6c1aae4d0b66a3b166459368b83476a538283cfb
7023cdad583f527e1a6d2b6e7c8f28c8e00b4add
refs/heads/master
2021-01-18T13:33:53.435308
2013-03-26T23:26:33
2013-03-26T23:26:33
null
0
0
null
null
null
null
UTF-8
C
false
false
566
c
/* HW 1; Project 3 August 25th, 2010 Programmer: Trevor Lund Instructor: Alex Stoychev Class: Cpr E 185 Section J */ #include <stdio.h> int main() { int temp; double hr, min; printf("How long since the power outage? (H:M) "); scanf("%lf:%lf", &hr, &min); // Convert minutes to fractions of an ...
[ "tlund@ymail.com" ]
tlund@ymail.com
5ae66fe4d4bd255073723601611fca74d550d473
b477697f95728fbf8d1759a73858860c9620c3ab
/peripheral/eth/processor/eth_p32mx450f128l.h
b6ef4b393556ee067d88e1813563834ecb21010c
[]
no_license
gmuro/harmony-v2_06-framework
12bcb30c2dc9f4737aab8762da8b25632822d00e
2196b67de35af9d1126b539b08324cf72ed13521
refs/heads/master
2022-12-07T19:24:34.649360
2022-11-18T22:16:49
2022-11-18T22:16:49
190,900,209
1
1
null
null
null
null
UTF-8
C
false
false
29,035
h
/* Created by plibgen $Revision: 1.31 $ */ #ifndef _ETH_P32MX450F128L_H #define _ETH_P32MX450F128L_H /* Section 1 - Enumerate instances, define constants, VREGs */ #include <xc.h> #include <stdbool.h> #include "peripheral/peripheral_common_32bit.h" /* Default definition used for all API dispatch functi...
[ "gustmuro@gmail.com" ]
gustmuro@gmail.com
9aa88ac5c80cda7ee4506a4759e0fecece10d697
a92ae71c002702d0b96391533b9a7900e4f7c24a
/Topology/hpnmgt_snmp.c
52f59a78546e0e4a34967959bbb3527529fed5ef
[ "BSD-3-Clause" ]
permissive
tstellar/eth-fast-fabric
6e6501ebae1b6aa89381b9cfc097f44e84df3174
d7edf9346ed477d1cffc0ab8390a5194ed0703e6
refs/heads/master
2023-09-06T03:48:45.568929
2021-11-02T17:38:31
2021-11-02T17:38:31
null
0
0
null
null
null
null
UTF-8
C
false
false
91,028
c
/* BEGIN_ICS_COPYRIGHT7 **************************************** Copyright (c) 2020-2021, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyrig...
[ "jijun.wang@intel.com" ]
jijun.wang@intel.com
3a4911b9c80ef851b5fe5a9d3ddbde1ec0ec34d5
c8639e2b4bb7116d7dd66acaa769c30d7bb479f7
/world/u/tianlin/clone/xianxing.c
4e22d4010c149df4b775f71cca7616ff9c642148
[]
no_license
ninemoon/mhxy2002
43bc9759bbde56e2c49c524514f3dc4f83fbe932
76e0fa31cd662864bd55168e2fdf986622ed510e
refs/heads/master
2021-09-06T10:05:19.812948
2018-02-05T09:57:57
2018-02-05T09:57:57
120,064,608
0
0
null
2018-02-03T06:07:09
2018-02-03T06:07:08
null
GB18030
C
false
false
2,991
c
// xianxing.c 现形炸弹 #include <ansi.h> inherit ITEM; int filter_user(object ob); void create() { set_name(HIR "现形炸弹" NOR, ({ "visible bomb", "bomb" })); set_weight(100); if( clonep() ) set_default_object(__FILE__); else { set("long", "听说这是可以让人原形毕露的炸弹。\n"); set("va...
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
7a9e9523c78bd77cfb0a3b86f1c899866617bfd9
73266ea6be2de149a4700798b221bd4c79525604
/wip/malloc/region.c
c966b77b9f11857183496a822767dcddba35874c
[]
no_license
Caceresenzo/42
de90b0262b573d4056102ad04ed0f6fbef169858
df1e14c019994202da0abbe221455f1a6ee291e4
refs/heads/master
2023-08-15T06:14:08.625075
2023-08-13T17:19:00
2023-08-13T17:19:00
220,007,175
92
36
null
null
null
null
UTF-8
C
false
false
4,540
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* region.c :+: :+: :+: ...
[ "caceresenzo1502@gmail.com" ]
caceresenzo1502@gmail.com
c910c1c1ce2ef5ac5b6c71a8ef9de21378a4cbd1
fb80b9e071a7e6f6d2ce21e363ef3fb94592a6e5
/PID_v1.c
6d2ec910c48dc1aeece4fe17d12d4afb3f14436f
[]
no_license
brunompacheco/JoaoBot
df94ba923e51211d431b5c616dcf680d38c043f8
eb47417584f4ca77b0650964a4a5de118e99f1cd
refs/heads/master
2021-01-10T12:55:27.871728
2016-02-20T00:23:39
2016-02-20T00:23:39
48,143,038
0
0
null
null
null
null
UTF-8
C
false
false
7,713
c
/********************************************************************************************** * C PID Library - Version 1.0.1 * modified my Matthew Blythe <mblythester@gmail.com> mjblythe.com/hacks * originally by Brett Beauregard <br3ttb@gmail.com> brettbeauregard.com * * This Library is licensed under a GPLv3 ...
[ "brunomachado-2005@hotmail.com" ]
brunomachado-2005@hotmail.com
a1e7a6e7b554ea296e943375b2f0c3e14499918b
e43acd126b442bb627b6a2d066cb61fad26c467b
/HW3/src/rpc_sc.c
c451efb492c151512d3317e979d344c2a1e4a1a6
[]
no_license
ws23/102NPHW
82e0a58a8c8bba634253895b313375c0a241805f
75c99c8af3aa9dc2ba028422900d41eb9a83b6d3
refs/heads/master
2021-01-09T05:58:18.738429
2016-04-26T12:38:29
2016-04-26T12:38:29
16,722,002
0
0
null
null
null
null
UTF-8
C
false
false
1,029
c
#include "rpc_sc.h" uint16_t checksum(msg pack){ // add groups uint8_t hex[4]; int8_t i, length; uint16_t check; hex[0] = pack.Version_CommandType>>4; hex[1] = (pack.Version_CommandType<<4)>>4; hex[2] = pack.Length>>4; hex[3] = (pack.Length<<4)>>4; length = pack.Length; for(...
[ "linyutsu23@gmail.com" ]
linyutsu23@gmail.com
d8219d1052111c311a58d9ed77ee95bb77314112
e43379ca18391abc7caf782ade878fdf85792e92
/Λειτουργικά Συστήματα/NikolaosDrymousis-Prj1/lookup.c
aa17d68c661d26a8f92697db0f791d2b56b82e9e
[]
no_license
nickdrim/Sxoli
4ff712b821f29b826c344732e68043680b499d1e
def00bf475de5f8c295ca7fc011fb3477a6090c6
refs/heads/master
2023-08-17T14:05:28.047281
2021-09-16T13:09:26
2021-09-16T13:09:26
298,054,766
0
0
null
null
null
null
UTF-8
C
false
false
418
c
#include <stdio.h> #include "prompt.h" //Implementation of lookup void lookup(HTable records, int ID){ //Search record with ID SNode temp = hashSearch(records, ID); //if found if(temp != NULL){ printf("%d %s %s %d %d %f\n", temp->info->StudentID, temp->info->lastName, temp->info->firstName, temp->info->zip, ...
[ "ndrimousis@hotmail.com" ]
ndrimousis@hotmail.com
b711996e83ce48336dc29e02089b1b91cad3c91a
a556c07ecfa1031dae46fd3433762941ceca68b1
/kungfu/skill/backup/luoying-xinfa/powerup.c
587f387bbadac854933c522483ed14aa7954fb96
[]
no_license
yqzcabao/pkuxkx-utf8
53c3c24f4e3a9125372bca72b6a4b10aa6293a7f
0eaf237c9970795a51aa4cc04b5b762003300cbd
refs/heads/main
2023-04-01T21:16:23.894845
2021-04-09T13:33:24
2021-04-09T13:33:24
null
0
0
null
null
null
null
UTF-8
C
false
false
1,254
c
// powerup.c #include <ansi.h> inherit F_CLEAN_UP; void remove_effect(object me, int amount); int exert(object me, object target) { int skill; if( target != me ) return notify_fail("你只能用落英心法提升自己的战斗力。\n"); if( (int)me->query("neili") < 100 ) return notify_fail("你的内力不够。\n"); if( (int)me->query_temp(...
[ "i@oiuv.cn" ]
i@oiuv.cn
8d42d9006930849e7584e9277523ee502ccee08c
ede7fa9a3c28bd337e283e9369168043ffb28df0
/SDK/Include/BSCommon/data/BS2SmartCard.h
36540f86174598ee593f792bef2c1e242be0ee0f
[]
no_license
simonpojok/WeqaHR-System
846e18e2fdeeb77d854be1901e9c2bc82a8550a4
9bef86d6b29ac1f81e9730156221aaf0e22f09bc
refs/heads/master
2022-09-26T06:50:23.454970
2020-06-05T15:09:05
2020-06-05T15:09:05
null
0
0
null
null
null
null
UTF-8
C
false
false
1,897
h
/* * BS2SmartCard.h * * Created on: 2015. 9. 2. * Author: scpark */ #ifndef _BS2_SMART_CARD_H_ #define _BS2_SMART_CARD_H_ #include "../BS2Types.h" #include "BS2CSNCard.h" #include "BS2Fingerprint.h" /** * Card Data Structure * * [1K Data Card (Total Data Block = 720 bytes)] * header(16) + cardID(32)...
[ "simonojok19@gmail.com" ]
simonojok19@gmail.com
9fcc238c7f16a09ce361fac90aa74348ad211350
7e058210445258d4e93ff3d39415b44c569de3c6
/Assignment 23/2.c
8c7832a7e98567bac6d1e2d97b9743175c3e4faf
[]
no_license
ekta028/C-Programming
84ba0e3f723c60c87e96769521b0040067bb8075
416c2ccf6f5af8d01cf1ffd52d629dc9f0b099d7
refs/heads/main
2023-08-12T15:09:52.446033
2021-10-01T19:25:19
2021-10-01T19:25:19
407,506,417
1
0
null
null
null
null
UTF-8
C
false
false
489
c
//Write a program which accept string from user and count number of small characters. //Input : "Marvellous" Output : 9 #include<stdio.h> int CountSmall(char str[]) { int iCnt = 0; while(*str != '\0') { if(*str >= 'a' && *str <= 'z') { iCnt++; } str++; } return iCnt; } int ...
[ "noreply@github.com" ]
ekta028.noreply@github.com
2d2aef1046399e69d6a66eb7a64793d883b2696b
520eeb53077db048ce60c337b98a9b40f9d91f82
/tool.h
d1ab782d84ecd6b7f7ce696c8e82f45656bf4185
[]
no_license
yksoft1/meisei
11ed79e459c48daf5f768624319043ba212c4db5
99977105d3147c7debb69a06ca58f7feec28419c
refs/heads/master
2020-06-28T00:16:58.224279
2019-08-01T17:19:41
2019-08-01T17:19:41
200,090,431
1
0
null
null
null
null
UTF-8
C
false
false
1,461
h
#ifndef TOOL_H #define TOOL_H #define TOOL_REPAINT (WM_APP+1) #define TOOL_POPUP (WM_APP+2) #define TOOL_MENUCHANGED (WM_APP+3) #define TOOL_DBM_EMPTY 0x2e333d /* dark gray/blue */ #define TOOL_DBIN0 '.' /* binary 0 */ enum { TOOL_WINDOW_TILEVIEW=0, TOOL_WINDOW_SPRITEVIEW, TOOL_WINDOW_PSGTOY,...
[ "yksoft1@gmail.com" ]
yksoft1@gmail.com
6aead26de7d116ebc63f3e3114bb20acddd7a2e6
7f3855cb9dcf5e91493ff230bd6fa46addf93b18
/kernel/isr.h
298a9a46707b3ecc3687161f04fae6394e6eda8a
[]
no_license
nunogmartins/CodebitsOS
e87d6273ce742ccdb47ed9b032dcb22ce693d752
49f44d697901253cc52fa76cb2f0092e66538a0c
refs/heads/master
2021-01-21T19:47:21.965604
2014-04-12T11:05:48
2014-04-12T11:05:48
18,763,491
1
0
null
null
null
null
UTF-8
C
false
false
1,549
h
#ifndef ISR_H #define ISR_H #define PIC_MASTER 0x20 #define PIC_SLAVE 0xA0 #define MASTER_COMMAND PIC_MASTER #define MASTER_DATA (PIC_MASTER+1) #define SLAVE_COMMAND PIC_SLAVE #define SLAVE_DATA (PIC_SLAVE+1) #define PIC_EOI 0x20 // Initialization word (setup) #define PIC_ICW1 0x11 // (hi) 0001b IC...
[ "vagrant@hacky.(none)" ]
vagrant@hacky.(none)
165ef0302da8b90c9594df7ae9118d00857b11e1
4f29ef3ce652e5dd68a5d40f5198102596a7ddc6
/kungfu/skill/songyang-shou/junji.c
22a7b7c4440a3ac5f1caf6d5f6fe9df739235ef1
[]
no_license
lnsoso/shujian
957b4893bfa5669a975ed6867f4b186a311f8ff0
2454658a8f0d1a23ee0254835ba5a8eb03e135cb
refs/heads/main
2023-07-20T05:04:39.381950
2021-09-08T11:40:35
2021-09-08T11:40:35
null
0
0
null
null
null
null
GB18030
C
false
false
6,104
c
// junji.c // by snowman@SJ 13/05/99 #include <ansi.h> inherit F_SSERVER; #include "/kungfu/skill/eff_msg.h"; string perform_name() {return CYN"峻极神掌"NOR;} int perform(object me, object target) { string msg, dodge_skill; int damage, p, jiali, skill, neili, neili2; int focus = me->query_temp("ss/focus"); if(...
[ "i@oiuv.cn" ]
i@oiuv.cn
187c971f80e0c44dc8b66db208c8d08a760cbfd0
75fe812af4f59f754b3b7990a0da2f05456e3dcc
/SimplicityStudio/v4_workspace/soc-thunderboard-sense-2/hardware/kit/common/bsp/thunderboard/icm20648.h
6c9efc0c96f785aad727530513b16e37b7e6b6e1
[]
no_license
danieta/thunderboard
bd703a9640b1e703634deded18dc5d1c6196a9a7
0f44a0c1b5878c8d6709b3668946a062084d14a3
refs/heads/master
2021-08-11T14:06:54.529411
2017-11-13T20:29:38
2017-11-13T20:29:38
110,598,258
2
0
null
null
null
null
UTF-8
C
false
false
26,486
h
/***************************************************************************//** * @file icm20648.h * @brief Driver for the Invensense ICM20648 6-axis motion sensor * @version 5.3.3 ******************************************************************************* * # License * <b>Copyright 2017 Silicon Laboratories...
[ "daniel.tavakoli1@gmail.com" ]
daniel.tavakoli1@gmail.com
250ae72e8b15183f8e0efb91bd2764ae76fcd808
f20107de8917da3820843a66bc3730b626690468
/Complex/hl7/server/free_hl7/src/log.c
b3886c2ef9332f379987502e58f9a054bf3f5694
[]
no_license
BuckRogers1965/Examples
4f0ff55631fb492f3028f29d017b4780c4f63a13
c33f157ea66ba62c2ffbfb9dbb41442c1762f653
refs/heads/master
2021-01-21T14:09:10.443717
2018-06-19T01:05:52
2018-06-19T01:05:52
8,240,243
1
1
null
null
null
null
UTF-8
C
false
false
519
c
/* All program logging goes through this code modual */ #include "includes.h" /* */ void set_log_level ( ) { } void set_log_file ( ) { } /* Central method of writing to the main log file. */ void notify(char *file, int line, char *error) { FILE *logfile; logfile = fopen ("/home/jrogers/html/proj...
[ "JamesMRogers@gmail.com" ]
JamesMRogers@gmail.com
f8d8b8a3a855f1be41357e0c5321e57a00514672
991ec9e6d460aab20760d3d03999fbda4e478a91
/ECE59500/lab3/one-level/include/os/process.h
f4d1df4ac8246844a2fea9ac12808c5bbd37b6f5
[]
no_license
dhanyasreeprem/purdue-comp-engr
c7c60369ac6af390b83c5d3b50e14b7f6213cf7b
9080b31211f2155ec29f64ee1cf9ca7f22fc9d5f
refs/heads/master
2022-03-23T19:02:36.649520
2019-12-06T20:06:11
2019-12-06T20:06:11
null
0
0
null
null
null
null
UTF-8
C
false
false
4,254
h
// // process.h // // Definitions for process creation and manipulation. These include // the process control block (PCB) structure as well as information // about the stack format for a saved process. // #ifndef __process_h__ #define __process_h__ #include "dlxos.h" #include "queue.h" #include "memory_constants.h" ...
[ "andrew.stpierre@gmail.com" ]
andrew.stpierre@gmail.com
b9ab1306d8721c4cb227a855117145461de4355f
32056cf2a9af9ff234c60779d5e026cd5d63b123
/include/mln_websocket.h
3e336205d8079a954729151ecf7abfa367c6b8b9
[ "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
Water-Melon/Melon
d513c764c503a4513c3e55430b28fe5d2dbab8b0
41e4cc44120cc57ffc7697a43c87ea355b0628c2
refs/heads/master
2023-08-25T08:37:48.730809
2023-08-24T12:06:45
2023-08-24T12:06:45
22,993,286
900
125
null
null
null
null
UTF-8
C
false
false
7,915
h
/* * Copyright (C) Niklaus F.Schen. */ #ifndef __MLN_WEBSOCKET_H #define __MLN_WEBSOCKET_H #include "mln_connection.h" #include "mln_string.h" #include "mln_http.h" #include "mln_chain.h" #include "mln_alloc.h" #include "mln_hash.h" /* * return value */ #define M_WS_RET_ERROR -1 #define M_WS_RE...
[ "melon-c@hotmail.com" ]
melon-c@hotmail.com
6ca7d736cf136fe4c707e59cdeb7ac2ca1dfe00a
122b8d03e3127050ed4b2b9fa020a04b755b9ea8
/example/src/test1.c
385b4f60b24e5e1844cd9898bd8a20f9acc9a88b
[]
no_license
risc2009/chaos
41c03fadad49e079ea31e1c2c17529c00dec67e0
528791f710b9cb3dd0d0110bbd8f8e9951f58656
refs/heads/master
2021-01-21T12:03:30.720481
2013-04-09T20:44:10
2013-04-09T20:44:10
null
0
0
null
null
null
null
UTF-8
C
false
false
93
c
#include<stdio.h> int main(int argc, char** argv) { printf("hello,world!\n"); return 0; }
[ "risc@chronos.local" ]
risc@chronos.local
0a97c5febc89688f9c3f00bf6665f307820689d4
8174bfe222f42e3a95e0cab3f4c7541a41641fa7
/main.c
427ada34e251d6d0a4afd3e9d30c9687ff876805
[ "ISC" ]
permissive
edolstra/lowdown
b967f8020608618a3d92978a1bd0f380070886fb
caade6c37eb9fcc4958aa53e897af545e0198b2a
refs/heads/master
2022-12-06T01:49:39.581443
2020-08-20T09:59:00
2020-08-20T09:59:00
290,005,789
1
0
ISC
2020-08-24T18:20:29
2020-08-24T18:20:28
null
UTF-8
C
false
false
15,270
c
/* $Id$ */ /* * Copyright (c) 2016, 2017, 2020 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 appear in all copies. * * THE SOFTWAR...
[ "kristaps@bsd.lv" ]
kristaps@bsd.lv