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
b50ac97f555e24621da215b2f1b6352c1cc1d122
357c68d24389b7708d0d11f920340c9b283c824e
/ida_build/bin/isidl/bground.c
c43e7fa410760a3553ec0131640ee877f07a773a
[]
no_license
joeledwards/asl-station-processor
80361a786ee277999b30d87ac1497c0bdc47d119
d73f5167baf01e2d7455b180f8757b0988c78d45
refs/heads/master
2020-05-31T10:06:58.948122
2012-10-29T16:38:27
2012-10-29T16:38:27
6,052,634
1
1
null
null
null
null
UTF-8
C
false
false
1,449
c
#pragma ident "$Id: bground.c,v 1.2 2006/06/21 18:30:57 dechavez Exp $" /*====================================================================== * * Go into the background, preserving disk loop locks * *====================================================================*/ #include "isidl.h" #ifdef unix BOOL Bac...
[ "maint@SLATE1.(none)" ]
maint@SLATE1.(none)
4834805475230566ed0520cf6f1578b6db477c2c
0e816999037d73f20f8728b02165d39fe13b30d8
/717C.c
d81ab15c3e8592d069b3b9835e65c5939614ee5e
[]
no_license
NoSoul/CodeForces
00e76827a951660a879809c05e7805ecb360754e
4090298c515e0cc7aa369eed0a0d79f5f9ad6e17
refs/heads/master
2021-01-17T03:28:53.753741
2019-12-04T12:42:46
2019-12-04T12:42:46
23,138,921
2
0
null
null
null
null
UTF-8
C
false
false
1,590
c
#include <stdio.h> #define MOD 10007 typedef int DataType_t; int DataCMP(DataType_t a, DataType_t b) { return a > b ? 1 : 0; } void BinaryHeapPush(DataType_t *array, int *len, DataType_t val) { ++(*len); int now = *len; while(now > 1 && DataCMP(val, array[now >> 1])) { array[now] = array[now...
[ "NoSoul.Love@GMail.com" ]
NoSoul.Love@GMail.com
3146ef36545cee743c886f408c62cfe0e36864fd
52807559e632068bbd1c5c43d6b3acaacfef523e
/src/control.h
b81ad0fb653149bc87098e3234e7ba8df99269cf
[]
no_license
eriknyquist/modbus
45d3ff46b76c6c3b886bdabc5f6ec69c0ade1584
f08f0286555307cebfe7ca539b1b1ab613f0964a
refs/heads/master
2016-09-09T19:36:41.568312
2015-08-01T15:54:56
2015-08-01T15:54:56
23,459,314
1
1
null
null
null
null
UTF-8
C
false
false
907
h
/* Modbus logging daemon * Copyright (C) 2015 Erik Nyquist <eknyquist@gmail.com> * * 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) an...
[ "eknyquist@gmail.com" ]
eknyquist@gmail.com
0b96cd6c0fe4a0f3e540d6d5d01acdee5db9c3f6
7d91871a88f7f345068b489b355ea4ae62befacd
/src/utils.c
399af039210816b1ff3e7baa64375e720dad5307
[]
no_license
Ouadio/CUpler
2096c376b056065c790148d7235a2407d7c25eb0
4e75d9e918bca5da3da70301606e8b0163587d81
refs/heads/master
2023-03-01T15:57:08.039958
2021-02-07T17:52:17
2021-02-07T17:52:17
336,342,034
0
0
null
null
null
null
UTF-8
C
false
false
413
c
#include "sys/time.h" #include "time.h" #include "utils.h" double now() { struct timeval t; double f_t; gettimeofday(&t, NULL); f_t = t.tv_usec; f_t = f_t / ((double)1E6); f_t += t.tv_sec; return (f_t); } double dotProd(double *x, double *y, size_t len) { double result = 0; for (s...
[ "oualfarouki@gmail.com" ]
oualfarouki@gmail.com
7d6d07632b2baa4399627800d263fa5ac93ad627
7096ccd063a2c8b05c6969fb5552d612841203cf
/lab8/kern/sync/monitor.c
713eb9b6fe6d7c1d24b3899409f00b198de6de46
[]
no_license
yangchb/lab8
b9ba00c2f9c4eea12f1bef64d79219e4377f0107
e4d4b34d04b051bfb48fdaede5bbe5fff4448825
refs/heads/master
2022-12-06T07:54:38.535729
2020-08-29T09:27:35
2020-08-29T09:27:35
291,240,391
0
0
null
null
null
null
UTF-8
C
false
false
2,670
c
#include <stdio.h> #include <monitor.h> #include <kmalloc.h> #include <assert.h> // Initialize monitor. void monitor_init (monitor_t * mtp, size_t num_cv) { int i; assert(num_cv>0); mtp->next_count = 0; mtp->cv = NULL; sem_init(&(mtp->mutex), 1); //unlocked sem_init(&(mtp->next), 0); ...
[ "14331330" ]
14331330
db21059e7084f662cc495b3efd8b679dd0684a35
29a48ed7aa9e12261f64c46f42de54551c00a546
/src/hal/error.h
146d5b70363961d4ed8b6c9520a70895abbd5008
[]
no_license
notsnail/dvi
0d909eb519e6955e6c99df1a18176948620e5774
1dbf482519e53a5cd4d1ea9e6d72f58dc0442018
refs/heads/master
2023-06-16T06:57:24.920402
2021-07-09T04:29:53
2021-07-09T04:29:53
362,305,194
0
0
null
null
null
null
UTF-8
C
false
false
364
h
// hal error reporting tools #ifndef HAL_ERROR_H typedef enum { HALCYON_INFO, HALCYON_WARNING, HALCYON_ERROR } ReportErrorLevel; extern void ReportErrorToWindow(const char* why, ReportErrorLevel type); extern void FatalErrorWithCode(const char* why, int code); extern void TheGameIsLackingCo...
[ "anayawastaken@gmail.com" ]
anayawastaken@gmail.com
d4f2da4fcf587da5bc3e2cdfd94b2a3495f6989d
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/staging/isdn/gigaset/extr_common.c_gigaset_block_channels.c
4a7ebf214a9735d5201798660fca15448aad6a9b
[]
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,096
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
53e7b60840c7992e61ec871ca6735e6456722e24
cd760d6f8e318941e37c0ffb8566993896606e6e
/.phoronix-test-suite/installed-tests/compilebench/compilebench-0.6/t/native-0/drivers/media/video/compat_ioctl32.c
9ec1100ec31d45365857ba02b19b35b02a6d0a96
[]
no_license
aorzerep/neb
3fab34e1ad05cd0c1f2274f4d143664c1ed4368d
6dda5d3c432f2636973c9a98370056e57fe8e79f
refs/heads/master
2020-09-08T10:06:34.548290
2019-11-12T01:00:41
2019-11-12T01:00:41
221,099,011
0
0
null
null
null
null
UTF-8
C
false
false
25,051
c
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...
[ "root@neb.intranet.highprophil.com" ]
root@neb.intranet.highprophil.com
cd86e2c4a6e24c69ed088c0784dd4013e7ca7f08
4479a886d211d2322ac35a47850550cb3f34d5ed
/os/2.1/uart.c
2d2a157a659931c89d3bac9dde572e1a183380fe
[]
no_license
KevinJ94/Cpts460
050ff6a169d876dd501b7026921777ac7f3a2023
337405000df7c878219758ef18d9a51b9fbbcdfb
refs/heads/master
2023-01-31T14:09:28.220994
2020-12-18T00:48:44
2020-12-18T00:48:44
322,449,149
0
0
null
null
null
null
UTF-8
C
false
false
2,802
c
/******************************************************************** Copyright 2010-2017 K.C. Wang, <kwang@eecs.wsu.edu> 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 Licens...
[ "chaojiang1994@gmail.com" ]
chaojiang1994@gmail.com
70f07d89e6d8dfcc9f8a07a3c6f2bd7f65cda8a2
2266eb133fc3121daf0aa7f4560626b46b94afe0
/d/dali/shilin1.c
514ca3ae5086f74584bd5d80563150f55093cfe7
[ "MIT" ]
permissive
oiuv/mud
6fbabebc7b784279fdfae06d164f5aecaa44ad90
e9ff076724472256b9b4bd88c148d6bf71dc3c02
refs/heads/master
2023-08-18T20:18:37.848801
2023-08-13T07:00:15
2023-08-13T07:00:15
112,278,568
99
49
MIT
2023-02-01T03:42:14
2017-11-28T03:05:14
C
UTF-8
C
false
false
824
c
//Room: /d/dali/shilin1.c //Date: June. 29 1998 by Java inherit ROOM; void create() { set("short","李子箐石林"); set("long",@LONG 相传优人于隆冬遥见石上有李二株,结实鲜红,晚不及收,次日 寻之不复见,故称李子箐。面积约一千二百亩,包括大石林,小石林, 和外石林,是路南石林最精华者之一。千峰比肩,大小高矮,较为接 近,远观但见一片密密簇簇,似缺少变化跃动,近赏则大不相同,那 神奇的大自然的精雕细琢,使得顽石无论壮鸟,壮兽,或拟人,拟物, 均表情逼肖,疑真还假。 LONG); set("out...
[ "i@oiuv.cn" ]
i@oiuv.cn
3f0beb0db676d49f1ae4b90ad7f3a7016756f086
b60da22bc192211b3978764e63af23e2e24081f5
/cdc/src/share/basis/native/awt/microwindows/Window.c
639233bea095cfed4e6f54c86826da8111730538
[]
no_license
clamp03/JavaAOTC
44d566927c057c013538ab51e086c42c6348554e
0ade633837ed9698cd74a3f6928ebde3d96bd3e3
refs/heads/master
2021-01-01T19:33:51.612033
2014-12-02T14:29:58
2014-12-02T14:29:58
27,435,591
5
4
null
null
null
null
UTF-8
C
false
false
1,359
c
/* * @(#)Window.c 1.12 06/10/10 * * Copyright 1990-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, a...
[ "clamp03@gmail.com" ]
clamp03@gmail.com
af37114bc8e9ec6ad75966a63d0917ae2b055140
84aacfa9d4dbb48175c9700b85fbbda294e0d8d3
/src/PuTTY/unix/xpmputty.c
8f1199102b03d895083e9881df305cf742a1da66
[ "MIT" ]
permissive
OS-Q/W37
8c3c501a9d4834fdcb405bf757362cf790f412b4
be2f45cc975f93f2079ff9427de53936c6e033cb
refs/heads/master
2022-12-31T09:01:52.835552
2020-10-21T09:58:29
2020-10-21T09:58:29
153,408,131
1
0
null
null
null
null
UTF-8
C
false
false
5,299
c
/* XPM */ static const char *const main_icon_0[] = { /* columns rows colors chars-per-pixel */ "16 16 8 1", " c black", ". c navy", "X c blue", "o c yellow", "O c #808080", "+ c #C0C0C0", "@ c gray100", "# c None", /* pixels */ "####### ##", "###### @@@@@+O #",...
[ "qitas@qitas.cn" ]
qitas@qitas.cn
671c0ca597fdefd4717defbf090649a43f9b9990
0873acd1da316e7096d3277e0c9d369537209f8e
/lumiEffectCompare.C
0be6c5578cc13c67715b22f4e74e137e2aea2510
[]
no_license
dhruvdixit/photonCrossSection
e4f0cf27db14dce0e7d6adcccb71f92a3594f561
d068e56f34b23079a5504d95ff91d99847a9ff30
refs/heads/master
2022-08-31T04:59:04.654190
2022-08-26T15:46:42
2022-08-26T15:46:42
197,413,266
0
1
null
null
null
null
UTF-8
C
false
false
23,578
c
#include <fstream> #include <vector> void lumiEffectCompare(){ gStyle->SetOptStat(0); gStyle->SetLegendBorderSize(0); gStyle->SetEndErrorSize(5); //Obtain and plotting histograms from data TFile* file13d = new TFile("/global/homes/d/ddixit/photonCrossSection/xSectionHists/13d_all10runs_noSkim_crossSe...
[ "dhruvdixit94@gmail.com" ]
dhruvdixit94@gmail.com
68c171a2a383a84f6df824a2b904438c0c6b2a05
09cb1aa38c21c3b8b0a042aaf7b79ca6f418b928
/libft/ft_isascii.c
a1d8c4c1961b85c8053ac847905c7de88af51b06
[]
no_license
SinhB/GNL
6ad474265f1e117d2169d33325eae65981b826ce
fb9aa1bfc5d001a7cf205aed81ba5743596a478a
refs/heads/master
2021-07-15T12:14:43.134106
2017-10-20T13:14:17
2017-10-20T13:14:17
88,965,495
0
0
null
null
null
null
UTF-8
C
false
false
997
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: ...
[ "ybecret@e3r12p6.42.fr" ]
ybecret@e3r12p6.42.fr
ba08959ab59b3dcc83ae04deafb975af4b2cc917
23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f
/Windows API函数参考手册/第02章窗口处理/2.4窗口的大小、位置和布局/2_4_9_1/2_4_9_1.h
87bee4bfdcacf47b72d035d1c78b930e53524bd6
[]
no_license
IgorYunusov/Mega-collection-cpp-1
c7c09e3c76395bcbf95a304db6462a315db921ba
42d07f16a379a8093b6ddc15675bf777eb10d480
refs/heads/master
2020-03-24T10:20:15.783034
2018-06-12T13:19:05
2018-06-12T13:19:05
142,653,486
3
1
null
2018-07-28T06:36:35
2018-07-28T06:36:35
null
UTF-8
C
false
false
321
h
#if !defined(AFX_2_4_9_1_H__D1C4C61B_B4FC_11D6_993A_00E04CE474BB__INCLUDED_) #define AFX_2_4_9_1_H__D1C4C61B_B4FC_11D6_993A_00E04CE474BB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "resource.h" #endif // !defined(AFX_2_4_9_1_H__D1C4C61B_B4FC_11D6_993A_00E04CE474BB__INCLUDED_)...
[ "wyrover@gmail.com" ]
wyrover@gmail.com
85c9b2eba29aaf5d89df95ffed05d2e1a2895e14
84e5cfb1eb415d0d57c0d51daa9879bf29e8522b
/ft_printf_num.c
7d7403b619ce61a3768e3616416be03fcdc05a47
[]
no_license
htagrour/ft_printf
f19c0511225fdc74d03e4037793b5fe5a6f1a2a0
1972ca8d1c4581da192dc0c4774077604a2aa50f
refs/heads/master
2022-03-23T23:01:41.270943
2019-12-19T19:33:11
2019-12-19T19:33:11
226,695,338
2
0
null
null
null
null
UTF-8
C
false
false
3,665
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_num.c :+: :+: :+: ...
[ "htagrour@e1r1p12.1337.ma" ]
htagrour@e1r1p12.1337.ma
e22db38bf624f77117bc30afb1e7ad6b4caba6ee
fd5df5039b9193d9c954e7cd41790fd60de48438
/strtok_demo.c
3245cc06fcded926907b8192ad02a6730470ac3c
[]
no_license
RavirajWalke/C
02abf1b68fe1d257d41f2de13632dcf476b38efc
ecedc1145fb741a82d60b6e5adf0c63555d5a57c
refs/heads/master
2021-07-22T19:22:59.444230
2017-10-30T06:55:58
2017-10-30T06:55:58
108,813,573
0
0
null
null
null
null
UTF-8
C
false
false
225
c
#include<stdio.h> #include<string.h> int main() { char str[100]; char *token; char delim[10]; gets(str); gets(delim); for (token = strtok(str,delim); token != NULL; token = strtok(NULL, delim)) { puts(token); } }
[ "ravirajwalke9@gmail.com" ]
ravirajwalke9@gmail.com
c37fa54730734427efad98e850d0433ae8bb9873
baa46113c3e2a35a31e32b516e34b9b21ec967dd
/tesseract-ocr/dependencies/liblept/src/seedfill.c
982c5326cbbf118a857a2a0199f122bba7cd7767
[ "MIT", "BSD-2-Clause", "CC-BY-2.5" ]
permissive
Coderrob/openalpr-windows
5be410015b493962be8cc98320765baf414d2500
75ed8df7e07ac85f1c81e9e1946f5b175dd5d111
refs/heads/master
2020-04-10T19:35:47.063097
2018-12-10T22:53:36
2018-12-10T22:53:36
161,240,896
2
2
MIT
2018-12-10T21:50:18
2018-12-10T21:50:17
null
UTF-8
C
false
false
63,284
c
/*====================================================================* - Copyright (C) 2001 Leptonica. 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 c...
[ "peter.sunde@gmail.com" ]
peter.sunde@gmail.com
904c61c0ee31f6300ef9e2851afc79ff9262577a
6adc3b6f6323966f40e668d5e3935ddca7b70509
/bsp/stm32f20x_car/drivers/usbh_usr.h
c9a2c124e92aebd9e1a24dc2889156b72e003047
[]
no_license
nathanlnw/tw705_new_ver_combineVer
4585180c7feb50d9830ab285de6a719a386f8493
ad5379464281e106f15ba610601c9863de166413
refs/heads/master
2016-09-05T09:45:20.051675
2015-03-17T01:46:29
2015-03-17T01:46:29
29,120,139
1
0
null
null
null
null
UTF-8
C
false
false
3,493
h
/** ****************************************************************************** * @file usbh_usr.h * @author MCD Application Team * @version V2.1.0 * @date 19-March-2012 * @brief Header file for usbh_usr.c ****************************************************************************** * @atte...
[ "lnw.nathan@foxmail.com" ]
lnw.nathan@foxmail.com
f32fdb9f6e3fec978b4e3eddf7475d464a874223
1fe8d4133981e53e88abf633046060b56fae883e
/venv/lib/python3.8/site-packages/tensorflow/include/external/aws/aws-cpp-sdk-s3/include/aws/s3/model/Error.h
60d93c9df58b49fff75997ebed9d6ac67b342677
[]
no_license
Akira331/flask-cifar10
6c49db8485038731ce67d23f0972b9574746c7a7
283e7a2867c77d4b6aba7aea9013bf241d35d76c
refs/heads/master
2023-06-14T16:35:06.384755
2021-07-05T14:09:15
2021-07-05T14:09:15
382,864,970
0
0
null
null
null
null
UTF-8
C
false
false
131
h
version https://git-lfs.github.com/spec/v1 oid sha256:37e9b59ff0a9a041ae007247e1edb5c19ae79cb2aefdd320327073a0fc2dee65 size 246143
[ "business030301@gmail.com" ]
business030301@gmail.com
b42c2104e86ea0ba361e221fa36619da308089cc
607f791540208808432132c74a59d4b3bf9eb8e3
/DS18X20/ds18x20.c
4da07f3430ddf26bd99beb8db3b22cdb836e6880
[]
no_license
lamik/PHmetr_termostat
7236f4e87d6fe5e5769b81d3bdaf8f3367c7b91d
9bc2e6a887d538e9bcf92a94ed637ef880fae11e
refs/heads/master
2020-03-10T08:15:59.065454
2018-04-12T17:37:06
2018-04-12T17:37:06
129,281,311
1
1
null
null
null
null
WINDOWS-1250
C
false
false
5,763
c
/************************************************************************/ /* */ /* Access Dallas 1-Wire Device with ATMEL AVRs */ /* */ /* Auth...
[ "mateusz.salamon91@gmail.com" ]
mateusz.salamon91@gmail.com
1c9d521469a10407f439b62445743bf6ea48a13e
f5cf540240c24398593cde7c2f4d56e0da9e9e75
/clear.c
f6eb7583124f8ce1a8d81a607274004edd03dd81
[]
no_license
xsoameix/tinyprograms
9d8516c69b7470ab562a2f6655fb216fb73324da
e08392987943c09a01d75a72ff4967a834f77a68
refs/heads/master
2021-01-16T19:02:40.414428
2015-11-09T19:01:31
2015-11-09T19:01:31
24,753,056
0
0
null
null
null
null
UTF-8
C
false
false
123
c
#include <stdio.h> int main(void) { int ary[2] = {1,2}; ary = {0}; printf("%d %d\n", ary[0], ary[1]); return 0; }
[ "xsoameix@gmail.com" ]
xsoameix@gmail.com
b71cb3c20be7386767d44aff3ae4a8297e4476c7
8a1c75c3e174f7185735579c1235a5cea2aa68ad
/02_MSP430/StartUpName/battery_LCD.h
9aff329cd90399d6b45384bada7d86f608c413b5
[]
no_license
rb-hslu/PrgC2020FSRolandBeutler
40b8ac67d4037a99fc5162fdbaed36fb7fff849f
da6dac30098426a61624eee9be8e896536f20a9a
refs/heads/master
2021-02-04T01:01:15.632726
2020-04-25T12:24:25
2020-04-25T12:24:25
243,592,214
0
0
null
null
null
null
UTF-8
C
false
false
211
h
/* * battery_LCD.h * * Created on: Apr 25, 2020 * Author: roli */ #ifndef BATTERY_LCD_H_ #define BATTERY_LCD_H_ void displayBatteryStatusOnLCD(unsigned int batValue); #endif /* BATTERY_LCD_H_ */
[ "rbeutler#git config --global user.email rbeutler@gmx.chgit config --global user.email rbeutler#" ]
rbeutler#git config --global user.email rbeutler@gmx.chgit config --global user.email rbeutler#
aaba0b8c70fbf358d3d6fcfbfd5a334e5021a914
a7d4bf2461fdf3bfa8cebfcd93a72252c9868cca
/AMUPconfig.h
42e0d544fdfd1c2c9cb3d9b46f8be9e08c586bbd
[]
no_license
julioterra/AMUP_Libraries
dd6cdbe91f57678f004deb88105049097999c4af
4f8b78b7612a68f02fcf1712e2a8fb3f64b6ec1f
refs/heads/master
2016-09-06T10:42:36.799131
2012-01-12T04:31:11
2012-01-12T04:31:11
1,888,143
0
0
null
null
null
null
UTF-8
C
false
false
2,109
h
/* AMUP Config, configration file for AMUP Input Element Libraries Set. Created by Julio Terra, June 4, 2011. Configuration file with constants used across various different AMUP components and switch types. File name: AMUPconfig.h */ #ifndef config_h #define AirSensor_h #if defined(ARDUINO) && ARDUINO...
[ "julioterra@gmail.com" ]
julioterra@gmail.com
cf1947be93d0f6124f325b0c66289029db05d769
6b27783cbde1e39fb4f8e0f727e28d8702e31066
/kn_king/chapter_2/2-7.c
25147174de7e5b8d6b4f0d1c658b67af6c7505dd
[ "MIT" ]
permissive
jcalendo/c_practice
dc5fdadd9dae1b829620ab860dcb9ce0e406b411
a406138336b43b7ef2b1db7d4d137bcb73c8f14e
refs/heads/master
2023-05-29T10:05:45.480023
2021-06-16T02:43:37
2021-06-16T02:43:37
277,946,516
0
0
null
null
null
null
UTF-8
C
false
false
676
c
#include <stdio.h> // Write a program that asks the user to enter a USD amount and then shows // how to pay that amount using the smallest number of $20, $10, $5, and $1 // bills int main(void) { int dollars; int twenties, tens, fives, ones; printf("Enter a dollar amount: "); scanf("%d", &dollars); twent...
[ "jcalendo@gmail.com" ]
jcalendo@gmail.com
f05e2a1a249782065c11ce013a8cc656737d0155
3587e1e87f426382d301fa36f92492c67b0a5359
/leetcode/minimum-genetic-mutation/solve.c
19d0e0cbbac98084ee19663ed7822bd37041b07f
[]
no_license
tt67wq/euler_project
b3e714373e36436d1d504a560ee32b5556a4964b
843cd66a81032a5cdf140b59eaa95b3600a249b7
refs/heads/master
2023-05-25T11:57:13.726509
2023-05-22T02:42:20
2023-05-22T02:42:20
109,090,240
30
1
null
null
null
null
UTF-8
C
false
false
2,177
c
/* * ===================================================================================== * * Filename: solve.c * * Description: * * Version: 1.0 * Created: 2020-04-01 * Revision: none * Compiler: clang * * Author: * * ======================================...
[ "alex@mys4s.cn" ]
alex@mys4s.cn
ee598d278ded78cb75c758ec9ac1b62256f668f8
d4a92cde84c66ae334e612f89c8244bdaf09a1ce
/development/rtl87xx/libraries/SdSimplyFtp/ftps.c
aff399b08d02bcd69568b8c55cc74f396a0993bb
[]
no_license
mirecta/RtlDuino
b7a0d1770be23942d289766941a95066b370e596
4f0377001eb993143885387b9de5804b394cec4c
refs/heads/master
2021-09-18T00:58:15.976472
2018-07-07T17:21:13
2018-07-07T17:21:13
109,432,950
0
1
null
2017-11-20T08:28:36
2017-11-03T19:04:51
C
UTF-8
C
false
false
2,281
c
/* * * FTP Server on STM32-E407 with ChibiOs * * Copyright (c) 2014-2015 by Jean-Michel Gallego * * Please read file ReadMe.txt for instructions * * 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 Softwa...
[ "pvvx@mail.ru" ]
pvvx@mail.ru
185bafc8a968558fb6d40ce804c897213fcd141c
b41284aeead870e1575cb5f39cea0b06a83243d9
/src/adc.c
2a6b2ceee05ebe809b4ba775462081254b5f0bbf
[]
no_license
martin2250/otter-iron-pro-fw
71d3bcae030693ed5f166fbeb84555d021674491
c60ab0581638b10395540de32ebec6def163b23c
refs/heads/main
2022-12-31T16:45:46.970597
2020-10-25T18:59:12
2020-10-25T18:59:12
307,158,569
0
0
null
null
null
null
UTF-8
C
false
false
697
c
#include <libopencm3/stm32/gpio.h> #include <libopencm3/stm32/adc.h> #include "adc.h" void adc_init(void) { gpio_mode_setup(GPIOA, GPIO_MODE_ANALOG, GPIO_PUPD_NONE, GPIO0); gpio_mode_setup(GPIOA, GPIO_MODE_ANALOG, GPIO_PUPD_NONE, GPIO1); gpio_mode_setup(GPIOA, GPIO_MODE_ANALOG, GPIO_PUPD_NONE, GPIO2); gpio_mod...
[ "martinp2250@gmail.com" ]
martinp2250@gmail.com
b4da7d8f8af817f2d4a788a5fe906a3d008db395
b47df10a5cc7e58cddeb87da07430b7b8606a4e2
/myFindThread.c
23aaffbcf43eedbb23de0453279620bca478e83d
[]
no_license
vhamoreira/Project_MyFind_C
56a1bcb4bf2978aeddc4ef86a19fe5b69607d6b2
1f88fe62bb51c4c7317152adfbea306b93993c06
refs/heads/master
2022-12-18T07:16:11.917780
2020-09-22T09:46:03
2020-09-22T09:46:03
297,603,938
0
0
null
null
null
null
UTF-8
C
false
false
10,036
c
/* * Universidade Fernando Pessoa * Sistemas Operativos * * myFind.c * * by: * Eduardo Ribeiro (33812) * Vitor Moreira (33953) */ #define _POSIX_SOURCE #include <dirent.h> #include <errno.h> #include <sys/types.h> #undef _POSIX_SOURCE #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/stat.h> #i...
[ "noreply@github.com" ]
vhamoreira.noreply@github.com
e11086c0343916a730f8e8043b0139643620f9a2
7a471b531debc59cfb0b2bc89a264a06517519c9
/[5](a) storing result of a problem in a file simply.c
279dd37c20f2ce050636bede762c441ecfcdb4e8
[]
no_license
NeymanNasir/C-Lab-Assignment-solution-3-2-
2aa30b21be4d5541b64e8f4e91613bf72012a598
9f284a0a97d154a2179ba03287d609344e1571e2
refs/heads/master
2023-07-09T02:55:02.823680
2018-08-31T14:29:45
2018-08-31T14:29:45
null
0
0
null
null
null
null
UTF-8
C
false
false
440
c
#include<stdio.h> ///storing sum and multiplication of a and b in file1.txt int main() { FILE *fp; char *filename = "file1.txt"; fp = fopen(filename, "w"); int a, b, sum, mul; printf("Enter a and b:\n"); scanf("%d %d", &a, &b); printf("\nFor sum and multiplication, check file...
[ "noreply@github.com" ]
NeymanNasir.noreply@github.com
61b6473028714ba43e4dd8cdbcbb67d253ed7425
5c255f911786e984286b1f7a4e6091a68419d049
/code/290bda0a-b859-46f5-a47c-babdb6a6377d.c
7483ecd680968cb64eed5642d22c791029cc2ceb
[]
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
218
c
#include <stdio.h> int main() { float i; float j; float k; float l; i = 6; j = 9; printf("vulnerability"); j = 3; l = l*j*k/9; printf("vulnerability"); printf("%f\n",l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
dd0c43fcad75ae8c47f7137223cab9212738b198
2266eb133fc3121daf0aa7f4560626b46b94afe0
/d/death/obj/tang.c
4203624826cde07bdb6e631085ab2d958c9f697b
[ "MIT" ]
permissive
oiuv/mud
6fbabebc7b784279fdfae06d164f5aecaa44ad90
e9ff076724472256b9b4bd88c148d6bf71dc3c02
refs/heads/master
2023-08-18T20:18:37.848801
2023-08-13T07:00:15
2023-08-13T07:00:15
112,278,568
99
49
MIT
2023-02-01T03:42:14
2017-11-28T03:05:14
C
UTF-8
C
false
false
1,408
c
#include <ansi.h> inherit ITEM; void setup() {} void init() { add_action("do_eat", "drink"); } void create() { set_name(HIW "孟婆汤" NOR, ({"mengpo tang", "soup", "tang"})); if (clonep()) set_default_object(__FILE__); else { set("long", HIW "一碗热气腾腾的孟婆汤,散发着...
[ "i@oiuv.cn" ]
i@oiuv.cn
d0d99b2c7e313e013204e009fc25991cb6548994
573ab85bd53922ef8151a1d41af16f868d8e1ef1
/src/lofreq/multtest.c
cdcd7ac078f2813aea05a256206bede8b5602e61
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
CSB5/lofreq
87b9c554a6d960cef8eabdcc23c8fdddbb37ccb6
54281cd875821257adfd92baa957c13d96fa58c5
refs/heads/master
2022-07-28T16:42:54.379384
2022-07-22T00:54:55
2022-07-22T00:54:55
26,000,312
88
33
NOASSERTION
2022-06-11T18:22:01
2014-10-31T03:19:19
C
UTF-8
C
false
false
20,507
c
/* -*- c-file-style: "k&r"; indent-tabs-mode: nil; -*- */ /********************************************************************* * The MIT License (MIT) * * Copyright (c) 2013,2014 Genome Institute of Singapore * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and ass...
[ "wilma@gis.a-star.edu.sg" ]
wilma@gis.a-star.edu.sg
26461681d0f7f648fe493e3851b1a4fa68b2f127
775c8e62b33994540214172f24fbbf6d5c8bcee2
/chapter01/1.5.c
cf3928b2f2e80271d082cfbc6166af70e1bfcd0b
[]
no_license
addercop/knr
74d9ffda3a6fd86cc28cbb85dd0bd5535a8ef04b
c2002d2966238eab2c72a706e587b6214fe390f6
refs/heads/master
2020-05-18T15:26:39.112988
2012-07-29T19:40:44
2012-07-29T19:40:44
null
0
0
null
null
null
null
UTF-8
C
false
false
324
c
#include <stdio.h> int main(int argc, char *argv[]) { float fahr, celsius; int lower, upper, step; lower = 0; upper = 300; step = 20; printf("%3s %6s\n","F","C"); for(fahr = upper; fahr >= lower; fahr = fahr - step) { celsius = (5.0/9.0) * (fahr-32.0); printf("%3.0f %6.1f\n", fahr, celsius); } return 0...
[ "addercop@addercop.com" ]
addercop@addercop.com
7bd0fead206eae1512f9719b8414584ca4b58fc8
1b788fe231040bae0c7c86697e30af2f4553b28f
/lib/my/my_isneg.c
bf4856deec57414da2996a86f282e7226ecad4b9
[]
no_license
zachmae/palindrome
29f6d64dc90e56f806411b700ab6a5049a921a62
651b8277a822e432f60d6855a77d15810481bb30
refs/heads/main
2023-06-04T12:00:16.951052
2021-06-25T13:13:03
2021-06-25T13:13:03
380,239,632
1
0
null
null
null
null
UTF-8
C
false
false
189
c
/* ** EPITECH PROJECT, 2020 ** my isneg ** File description: ** contain the function my isneg */ #include "my.h" int my_isneg(int nb) { return (my_putstr(nb >= 0 ? "P\n" : "N\n")); }
[ "zacharie.lawson@epitech.eu" ]
zacharie.lawson@epitech.eu
4ccdc46e6137b701c419a8e2de1b0b98a092835f
d14b5d78b72711e4614808051c0364b7bd5d6d98
/third_party/marl/src/osfiber_aarch64.c
9d9a381073b7c00b3b9594088102ba2bdc1985db
[ "Apache-2.0" ]
permissive
google/swiftshader
76659addb1c12eb1477050fded1e7d067f2ed25b
5be49d4aef266ae6dcc95085e1e3011dad0e7eb7
refs/heads/master
2023-07-21T23:19:29.415159
2023-07-21T19:58:29
2023-07-21T20:50:19
62,297,898
1,981
306
Apache-2.0
2023-07-05T21:29:34
2016-06-30T09:25:24
C++
UTF-8
C
false
false
1,951
c
// Copyright 2019 The Marl 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed...
[ "bclayton@google.com" ]
bclayton@google.com
a9e0a087be401c7af5f71b3a5d5c87a43bad9dfd
8306e4626edde123bf769d63f0916b5740e58976
/fillit/fillit/lib/libft/ft_strncpy.c
7a731a2b0d69122761f1e98c4f3ce9a3d506091e
[]
no_license
mlenoir42bis/c-42
6a7a7a7bff16c3ef7879238ee1e5ff1541f9b3c9
9adccdb5fe77526e523308b6bf20ceece828954e
refs/heads/master
2020-06-21T07:57:18.667771
2019-07-17T12:59:05
2019-07-17T12:59:05
197,388,399
0
0
null
null
null
null
UTF-8
C
false
false
1,113
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strncpy.c :+: :+: :+: ...
[ "marceau.lenoir@yahoo.com" ]
marceau.lenoir@yahoo.com
ca4627342762cbb9924d8609ca10893f8841b0ac
a7b78ab632b77d1ed6b7e1fa46c33eda7a523961
/third_party/lapack-3.7.1/LAPACKE/src/lapacke_ssyconv_work.c
2ffaf8deed3b0cbcff88b6425a8221cfdbc1b64d
[ "BSD-3-Clause-Open-MPI", "BSD-3-Clause", "BSD-2-Clause" ]
permissive
frovedis/frovedis
80b830da4f3374891f3646a2298d71a3f42a1b2d
875ae298dfa84ee9815f53db5bf7a8b76a379a6f
refs/heads/master
2023-05-12T20:06:44.165117
2023-04-29T08:30:36
2023-04-29T08:30:36
138,103,263
68
13
BSD-2-Clause
2018-12-20T10:46:53
2018-06-21T01:17:51
C++
UTF-8
C
false
false
3,680
c
/***************************************************************************** Copyright (c) 2014, Intel Corp. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source cod...
[ "t-araki@dc.jp.nec.com" ]
t-araki@dc.jp.nec.com
017d6e01ec7883119404ec4866252ad7ee7dceaf
2f423fd59d9ce38ae73d5f1d9c46a7ffb98a19d7
/headers/msp430f5504.h
5d1ce08327b927033ed707794e059b1ccf38d402
[]
no_license
tmathmeyer/arch-mspgcc-bin
f068e91f686fc574380a84bbcfe33a7663df80a2
b4e627c8d5467e587483db9b318dc75c541f43c9
refs/heads/master
2021-01-21T08:01:35.637879
2015-01-27T19:18:19
2015-01-27T19:18:19
29,926,308
0
0
null
2015-01-27T17:45:14
2015-01-27T17:45:13
null
UTF-8
C
false
false
260,279
h
/* ============================================================================ */ /* Copyright (c) 2013, Texas Instruments Incorporated */ /* All rights reserved. */ /* ...
[ "tmathmeyer@gmail.com" ]
tmathmeyer@gmail.com
eea55be2f393fe219f6475e9b3295c616c01a983
5d222e9eb564ae817816a562d6982c0167eca6b2
/大一/数学/判断两直线是否垂直.c
5c293112ff10e744d605000bcff611b75db9d1c2
[]
no_license
pure-xiaojie/acmCode
00c811796de44d4a0316c22f1a7956d2dc868e19
5c1932ba5fa7c3d141ae7f5294004c862102a4b7
refs/heads/master
2021-02-14T19:55:02.546355
2020-08-11T13:54:09
2020-08-11T13:54:09
244,829,610
0
0
null
null
null
null
UTF-8
C
false
false
614
c
#include"stdio.h" main() { int a[4],b[4]; int i; int k1,k2; for(i=0;i<4;i++) scanf("%d",&a[i]); for(i=0;i<4;i++) scanf("%d",&b[i]); if(a[2]!=a[0]) k1=(a[3]-a[1])/(a[2]-a[0]); if(b[2]!=b[0]) k2=(b[3]-b[1])/(b[2]-b[0]); while(a[0]||a[1]||a[2]||a[3]) { ...
[ "1952175699@qq.com" ]
1952175699@qq.com
0599fb87fc6fc72ee266cc8d1ca438d8c7b4cf86
e52495f0c732bc13d79adc447d1b0bb77a893c29
/firmware/medulla_lib/include/ac.h
fd968663ad671dbef2f6bd4535514dbc1a45b44f
[]
no_license
alireza1405/medulla
59fa1cc04150cd900a5f7733cc1b59a48156f9f4
53227752b575b9393d2e04cc2782d4b27012055f
refs/heads/master
2021-01-01T20:06:14.780173
2015-01-15T19:05:51
2015-01-15T19:05:51
33,768,691
2
0
null
null
null
null
UTF-8
C
false
false
2,018
h
#ifndef AC_H #define AC_H /** @file * @brief Provides an asyncronous interface to the xMega internal ACs * * This driver provides an interrupt driven analog comparator interface * which allows the user to configure the reference voltage from the DAC * and change which pins are being read from. */ #include <...
[ "Ryan.Domres@a59f3039-f2c6-8282-4e09-36716e3c124a" ]
Ryan.Domres@a59f3039-f2c6-8282-4e09-36716e3c124a
736d692fb39c1cd3ff9a9a86237490d66b0d0da4
f078fc118bd31f5d820aa443b4d2447ceba2cd08
/bl_helloworldhw/src/pincfg_table.c
81a454167a92d7cf85fe41b50c284c1865ce6f45
[]
no_license
Blinkinlabs/bl_apps
a66ef8c4cee5fc66c803758daf14d91fc805eb1b
551c727ca79c6efdb245587bea9928a41782dfcb
refs/heads/main
2023-02-27T02:27:20.177143
2021-02-05T00:21:12
2021-02-05T00:21:12
311,807,330
1
0
null
null
null
null
UTF-8
C
false
false
6,431
c
/*========================================================== * Copyright 2020 QuickLogic Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licens...
[ "matt@blinkinlabs.com" ]
matt@blinkinlabs.com
d9b2048b6f3d59dc60c86e4a52fb3529ae90eccd
a3bb2dcdd3e999367616b70583fe1ff423758f6c
/1. Sorting/150101046/5.c
53f11eafe2494ac4a4b0072a3e19e3889df6e5ed
[]
no_license
piyush-jain1/Data-Structures
65553317b1d4158a6b5fafe2098b93073a5c61dc
5ece56433e35506e4ad668912633b7306e85346a
refs/heads/master
2021-05-03T21:37:06.318722
2016-11-09T07:34:30
2016-11-09T07:34:30
71,497,424
0
0
null
null
null
null
UTF-8
C
false
false
2,230
c
/* Name - PIYUSH JAIN Roll No. - 150101046 */ #include <stdio.h> #include <stdlib.h> #define MERGE_SORT_THRESHOLD 55 // for binary insertion, finding the position after which element has to be inserted int binary_pos(int a[],int l,int r,int key) { int m=l+(r-l)/2; if(r-l==-1) { return r; } ...
[ "piyushjain1sa@gmail.com" ]
piyushjain1sa@gmail.com
6d9d007e2a388b936fea3490f13ff3afa11ae8c5
c3f7b0502bf0e42114a880355d015556726696e7
/include/env.h
045205abaeec4519ad55e27e52ccf59f71c9d92b
[]
no_license
alexander-miroch/WebMail
63484ab6911a77652e72411892846823e5756840
8a3e4da9e9bb47bd3d6ceabd4ad15221f3019319
refs/heads/master
2020-06-11T22:37:12.616265
2016-12-05T10:53:41
2016-12-05T10:53:41
75,615,857
1
0
null
null
null
null
UTF-8
C
false
false
448
h
typedef struct { char *ip; char *cookie; char *req_method; char *ctype; int clength; char *qs; char *ref; } env_t; void init_env(void); void read_post(void); void read_get(void); char *read_cookie(void); void set_cookie(char *); void process_post(char *buf, short); void do_val(char *,char *, short); typedef st...
[ "alexander.miroch@gmail.com" ]
alexander.miroch@gmail.com
063836289ed315607fd1b2ab0b5427337ca36126
d7f2e6b7fe1cb59c4b02df7047506d18e4257791
/GPRS/Inc/stm32f1xx_it.h
efebb4e2e9a68611fef2e182e977adbdd3f17581
[]
no_license
MNDSG/SmartFire
6d691c89bfced86253b1987030912da5dbbffd03
a2bc3162fa78e8fa5bc11ae48799badc88f2fb04
refs/heads/master
2022-06-13T06:12:33.628105
2020-05-06T02:03:32
2020-05-06T02:03:32
261,623,876
0
0
null
null
null
null
UTF-8
C
false
false
2,202
h
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file stm32f1xx_it.h * @brief This file contains the headers of the interrupt handlers. ****************************************************************************** * @attention * * <h2...
[ "15023820769@163.com" ]
15023820769@163.com
1356391c25d67d363a1685dfffbddf9ce12e8cef
058366d0dd1a4214c2e310ce1875016834464d9b
/test/dt_arith.c
2031e70540731389ba95e647f0f4dced5b2223f7
[ "LicenseRef-scancode-hdf5", "LicenseRef-scancode-llnl", "LicenseRef-scancode-hdf4" ]
permissive
dearman/HDF5
45ac8d017c401a3e48d5bc653b3233bcccfb6845
d333f2c3e0d010cf46b00a64eb3d9e6c7658b84f
refs/heads/master
2020-04-13T23:19:50.717938
2018-04-23T12:43:58
2018-04-23T12:43:58
163,503,639
0
0
null
null
null
null
UTF-8
C
false
false
218,287
c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * ...
[ "mark@cascadeacoustic.com" ]
mark@cascadeacoustic.com
b0787801e024d7cef62be748af9bb5bc7c1c8e40
b2faca87de72fb24ef755595ed1e2ddf26643747
/Assignment6/a6p14.c
0858d6dddf497e8c8a7e9cc41d1765aab0bfc009
[]
no_license
Aryankharinta/Assignment1
2036c4e68a5d190d804901745a9433448b61f047
053ee74cf3243d95416d9111c0f1372177ecf117
refs/heads/master
2020-07-30T09:00:34.338331
2019-09-22T18:41:00
2019-09-22T18:41:00
210,165,000
0
0
null
null
null
null
UTF-8
C
false
false
117
c
#include<stdio.h> int main() { int i,j; for(i=1;i<=4;i++) { for(j=1;j<=i;j++) { printf("%c",(64+i)); } } }
[ "noreply@github.com" ]
Aryankharinta.noreply@github.com
25ad096b2aa8ed97046ddb8030811ec52c4803ef
1744185a1e318fd0705b7c8d71635966bf2f7451
/template/lib/Projects/STM32F4-Discovery/Examples/BSP/Inc/audio_play.h
2fd4456c00af5a7db0e41b9d6e3337d4b3f17944
[ "BSD-2-Clause", "MIT" ]
permissive
swedishhat/stm32f4-bear-metal
99554444acc611433190b00599d5be9ebbcbac49
04c8ae72ee6ea658dc376afe64f7f3a47c67512b
refs/heads/master
2020-12-24T09:09:59.574026
2016-11-09T18:07:57
2016-11-09T18:07:57
73,302,594
0
1
MIT
2020-03-08T01:27:48
2016-11-09T16:45:24
C
UTF-8
C
false
false
2,872
h
/** ****************************************************************************** * @file BSP/Inc/audio_play.h * @author MCD Application Team * @version V1.2.6 * @date 06-May-2016 * @brief Header for audio_play.c module ********************************************************************...
[ "patrick.d.lloyd@gmail.com" ]
patrick.d.lloyd@gmail.com
2656801b34e6e211fa3c3293003a6ece0c7c1da3
c3043fcc60c2a98b0f2703e36a445594bd255dfb
/libft/srcs/ft_tabdup.c
2a6d1a8a1c3426ba75781a93926fb129ead7896c
[]
no_license
martigan/Alcu
a2981e62639bcb84f7f68114ee10ece606c9a3b3
47d8d7ad4157d5658bc6ba60c43fba62936d3228
refs/heads/master
2018-12-29T06:28:59.933173
2014-05-28T12:01:06
2014-05-28T12:01:06
null
0
0
null
null
null
null
UTF-8
C
false
false
1,238
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tabdup.c :+: :+: :+: ...
[ "mgaspail@e3r8p12.42.fr" ]
mgaspail@e3r8p12.42.fr
53162b8494a8fd58c82699db607609910d2eb0e1
c3603869c1a05936a378ae6701e9b7f444cf911e
/spatial/semip/randomlib.h
f030a98f2c22086d36f494cf90d7003fb6067a4d
[]
no_license
jfhawkin/Spatial-Econometric-Software
6a83a524b96241ed17d8a708f2f8e5a449d2b71b
684cee3f6f2bb19b878b8d1c5079ac4c0d862958
refs/heads/master
2020-09-01T12:31:49.977107
2017-06-15T03:57:29
2017-06-15T03:57:29
94,397,305
3
2
null
null
null
null
UTF-8
C
false
false
7,235
h
/* Prototypes for all user accessible RANDLIB routines */ extern int mexPrintf( const char *fmt, /* printf style format */ ... /* any additional arguments */ ); extern void mexErrMsgTxt( const char *error_msg /* string with error message */ ); #define printf mexPrintf extern void beta_rndc(in...
[ "jfhawkin@gmail.com" ]
jfhawkin@gmail.com
cc7da3c27d4d4c2a881c39ec5f4c58cf9c07e140
38772abf89b1ee886e16fd188fd076cb1725ffe7
/apps/usb_device_hid_bootloader/bootloader/firmware/src/config/pic32mx470_curiosity/peripheral/gpio/plib_gpio.c
bc1409496f30a014d98f49c4eeaaed01214c4a15
[ "ISC", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
AixwareTechnologies/bootloader_apps_usb
0ed9e86b95782ac81b8fc3e4b1f5ee6a63cc0f30
9f47d92d302afd894727a347747ff88fdc8153f2
refs/heads/master
2023-05-04T03:47:12.836636
2021-05-17T09:42:45
2021-05-21T10:02:09
null
0
0
null
null
null
null
UTF-8
C
false
false
6,844
c
/******************************************************************************* SYS PORTS Static Functions for PORTS System Service Company: Microchip Technology Inc. File Name: plib_gpio.c Summary: GPIO function implementations for the GPIO PLIB. Description: The GPIO PLIB provides a sim...
[ "amit.raddi@microchip.com" ]
amit.raddi@microchip.com
178f73f5389b1ae60854f45c21d9d04bde2df991
8fa707feb77d7f3892343a83edc39c20909e13bf
/Mutli-Level Job Scheduling/Stage1/mlq.c
5d79854a58aadd4df4d82da456934d1f84785b3c
[ "MIT" ]
permissive
YiranJing/SystemProgramming-and-DataStructure
66539c5af2bf392da3b97d38f993a403b611cec9
15e024a3aaf847a89d2c9a5f847a64a3b2277fb6
refs/heads/master
2023-01-23T10:25:35.838411
2020-12-03T00:16:52
2020-12-03T00:16:52
291,374,420
2
0
null
null
null
null
UTF-8
C
false
false
9,801
c
/* COMP3520 Assignment 3 Stage 1 - Multi-Level Queue Dispatcher usage: make ./mlq <TESTFILE> where <TESTFILE> is the name of a job list */ /* Include files */ #include "mlq.h" // global variable int time_quantum = 0; int quantum = 0; /*Function to find minimum of x and y */ int min(...
[ "yjin5856@uni.sydney.edu.au" ]
yjin5856@uni.sydney.edu.au
6b629d805ed0fcfeddc585e1b3cda7f6680d6eea
1ee97762e07387dc71781cef4db14f6d5228447c
/ndmp2/client/temp/ndmp_common.h
e8a937ce714aa0927013885a50f8bd1052cbfda0
[]
no_license
deleriux2/testbed
e17eb647d7ffed8dcfea2ab53ca5c1ce9529ada7
f85b6989c5ffb5f431ba31f993609d697ddf9729
refs/heads/master
2020-12-26T00:26:31.344665
2016-09-18T11:14:13
2016-09-18T11:14:13
68,513,819
0
0
null
null
null
null
UTF-8
C
false
false
1,985
h
#ifndef _NDMP_COMMOBN_H #define _NDMP_COMMON_H #include "ndmp.h" #define NDMP_VER 4 #define NDMPSRV_PORT "10000" #define NDMPBACKUP_PORT_START 10001 #define NDMPBACKUP_PORT_END 20000 #define QUAD_TO_U64(target, source) \ *(uint32_t *)(&target+1) = source.high; \ *(uint32_t *)&target = source.low; struct ndmp_sess ...
[ "matthew@home.localdomain" ]
matthew@home.localdomain
81a769f05700a8323c1a30499e48e20ddc254687
9254939d504e935ec93f516c79ef6f79c17062a0
/src/dataSubset.h
486d090600606be630e613eefd8aed9485542b50
[ "MIT" ]
permissive
LLNL/ddcMD
5f11fa81d1337ef862336b97075d1b88f1fe0f5f
3545c823359ff7010ecd17240487935d3907b9b5
refs/heads/master
2023-06-03T21:30:52.021716
2022-12-06T20:04:48
2022-12-06T20:04:48
269,431,133
28
8
MIT
2020-08-05T22:11:01
2020-06-04T18:09:40
C
UTF-8
C
false
false
662
h
#ifndef DATASUBSET_H #define DATASUBSET_H #include <stdio.h> #include "collection.h" #include "analysis.h" typedef struct field_st { int type; char*name; char*units; char *format; double convert; double accumulatedValue; double (*function)(COLLECTION *, int i); double nParticleSamples; } ...
[ "zhang30@llnl.gov" ]
zhang30@llnl.gov
18e1380675fbc7c2aed8e1f51b854cbc5d94337e
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant100787_dwarf2out.c
1b2d47b719aa4f40c24ab2aba8728516a7ea388c
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
460,086
c
/* Output Dwarf2 format symbol table information from GCC. Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. Contributed by Gary Funck (gary@intrepid.com). Derived from DWARF 1 implementation of Ron Guilmette (rfg@monk...
[ "agroce@gmail.com" ]
agroce@gmail.com
9a41c4021beb10255a5a5cb1799eff78634ef3cd
741cf82252d18adbec0724d8200804605a421770
/crypto/ex_data.c
65ce4fb852f11aa5a844f4b6fbbe9811ad136886
[]
no_license
timr11/openssl-ecdsa-verify
d3c17adafa601ddca655ef972f62ff08b26510f2
a58a4e5af0f26c19e5e101874577a1d8f125f44a
refs/heads/master
2023-03-30T15:16:00.967137
2021-03-31T20:23:17
2021-03-31T20:23:17
353,486,088
0
0
null
null
null
null
UTF-8
C
false
false
15,743
c
/* * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/l...
[ "timromanski@gmail.com" ]
timromanski@gmail.com
b9a85636e6ea4c3eefb60379c8aa4083a3373c76
f7fadc413cad92f03721742b9c5d94281c12ba02
/C++/project/union.c
704c012b1899357be07f8b88c2f5522677080949
[]
no_license
amitmca/EducationalMaterial
f7acc7f701b42fb5f2821e56bab4ce253532c3f7
088a1fe34a0bdd4b46ea5cc7f930d8d1a3f510d0
refs/heads/master
2021-06-06T18:20:39.774159
2019-11-30T15:52:07
2019-11-30T15:52:07
134,157,178
0
0
null
null
null
null
UTF-8
C
false
false
170
c
#include<stdio.h> union u { char s; int num; }u1; main() { union u *ptr; ptr->num=5; printf("%d",ptr->num); ptr->s='a'; printf("%c",ptr->s); }
[ "amitbaramatimca@gmail.com" ]
amitbaramatimca@gmail.com
43c30acad8175ba1e00536c78acc906d4d9a3952
b0b1e6f333201db3bc676ad5ede72d35ebd4e699
/benchmarks/automatica/headerfiles2/flexbeam/flexbeam_ss_disc1.h
2b1bfe8f70bff70535d12041c4fe3c04409a80df
[]
no_license
polgreen/control2
ee4a47a2ea6877cdffadb8cf2398043c99334531
d63a8a797e9ed4e962f463c3f45d4add1ff09b5b
refs/heads/master
2020-07-02T08:09:34.078539
2019-08-05T14:52:47
2019-08-05T14:59:12
201,461,277
0
0
null
null
null
null
UTF-8
C
false
false
2,194
h
#ifndef BENCHMARK_H_ #define BENCHMARK_H_ // time discretisation 0.100 #ifndef INT_BITS #define INT_BITS 8 #define FRAC_BITS 8 #endif #define NSTATES 6 #include "control_types.h" #define NINPUTS 1 #define NOUTPUTS 1 #define INPUT_UPPERBOUND (__plant_precisiont)10000 #define INPUT_LOWERBOUND (__plant_precisiont)...
[ "elizabeth.polgreen@cs.ox.ac.uk" ]
elizabeth.polgreen@cs.ox.ac.uk
a610a337b1f803f36ff1a53a5a03113138d1128d
2b846a512dff597a60c3dcefe4563d8567c7f87d
/ch10ex1.c
4e29a6f6970e76fcad60aab4a6441584b99dec19
[]
no_license
steven-mcmaster/cweek2
1b319442b2c1255d01722a6d19a3992e026e86cd
0dd0257684758f560ae4c426dbd64893e78b8156
refs/heads/master
2021-05-03T23:49:10.770376
2016-10-27T01:39:07
2016-10-27T01:39:07
71,805,333
0
0
null
null
null
null
UTF-8
C
false
false
1,167
c
#include <stdio.h> #include <sysexits.h> int main(int argc, char *argv[]) { int ret_code = 0; if(argc != 3) { puts("Please run with 2 cmd line params"); ret_code = EX_USAGE; goto end; } FILE *fp1 = fopen(argv[1], "r"); if(!fp1) { perror("no file 1"); ...
[ "steven.mcmaster314@gmail.com" ]
steven.mcmaster314@gmail.com
705a2c5ebb5e0b042b29bb22b833001052687f75
063b05400484cdf6080dfb03be15012ed782f4f3
/code/c/05-objfile/bintool/sum.c
c47e17c114d943e90070f09a1df8deae05cb4069
[ "MIT", "CC-BY-SA-3.0" ]
permissive
yushichenchen/sp
2315fe215080f5a9b3f8bc2b9ec2299a654e9a02
eb320e6c991aee9185427379ef5317b1f2baf501
refs/heads/master
2021-02-14T17:58:54.168744
2020-03-18T07:16:55
2020-03-18T07:16:55
244,824,145
0
0
MIT
2020-03-04T06:24:38
2020-03-04T06:24:37
null
UTF-8
C
false
false
170
c
#include <stdio.h> int sum(int n) { int s=0; for (int i=0; i<=n; i++) { s=s+i; } return s; } int main() { int t = sum(10); printf("sum(10)=%d\n", t); }
[ "ccckmit@gmail.com" ]
ccckmit@gmail.com
ca8cb7357cac26e134e33d9f50baddbf92e95750
e92edf2c40b256e2e7fd29908264a19e65f80289
/tests/munit/list.c
762a5cb5b6ae376d6b11d29a9f1a4db0399e74d0
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "MIT", "LicenseRef-scancode-bsd-unmodified", "ISC", "BSD-2-Clause" ]
permissive
bmanGH/xdispatch
7c84336722616813a0a81c5100765ed39615e1b8
06d31d4bd299952078f0bc067e207b1b8af411b3
refs/heads/master
2021-01-22T07:27:46.998071
2013-11-21T15:33:54
2013-11-21T15:33:54
null
0
0
null
null
null
null
UTF-8
C
false
false
1,276
c
/* * list.c * * Copyright (c) 2010 MLBA. * All rights reserved. * * @LICENSE_HEADER_START@ * 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 * *...
[ "marius@9e4c620c-c391-4b63-a7fb-4924991ea895" ]
marius@9e4c620c-c391-4b63-a7fb-4924991ea895
5a5535f44c24f71e62578cd39e430b7d3194ab32
77244ab151f0a66578bcf65e1fe56164edbb2b5d
/TinyWebServer-raw_version/main.c
796bf6f71e77341777f12ed2950230b89d8f1f76
[]
no_license
shajunguang/Algorithm_competition
4ff9726cd4e68a3f46b2d7174c365a12f7d84746
ce83a697900586042ccfb7665331b389ab0916aa
refs/heads/master
2022-12-08T02:32:51.338680
2020-08-27T13:49:44
2020-08-27T13:49:44
277,822,145
0
0
null
null
null
null
UTF-8
C
false
false
11,748
c
#include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <stdio.h> #include <unistd.h> #include <errno.h> #include <fcntl.h> #include <stdlib.h> #include <cassert> //#include <bits/stdc++.h> #include <sys/epoll.h> #include "./lock/locker.h" #include "./threadpool/threadpool.h" #include "./timer/...
[ "shajunguang@gmail.com" ]
shajunguang@gmail.com
6551fe236d9404910c9c084e30e1272efbb10e8d
8ec083cfbc483a1f96d007e5e29cc613b8a86e97
/ios/Pods/Headers/Private/Flipper-Folly/folly/experimental/coro/Mutex.h
b646eeee22dcea21b844a7f3a822f70bb2834e49
[]
no_license
hamid/react-native-ios-settings-bundle
c2fec5ee34cd5a386dce7f66f6273fcb4796c38a
a9be54b8782031ad47a93c6cb73a8f82127b1455
refs/heads/master
2023-02-11T02:01:27.129147
2022-06-16T09:55:27
2022-06-16T09:55:27
190,860,083
39
9
null
2023-02-09T04:31:54
2019-06-08T07:43:53
Java
UTF-8
C
false
false
63
h
../../../../../../Flipper-Folly/folly/experimental/coro/Mutex.h
[ "xsx.hamid@gmail.com" ]
xsx.hamid@gmail.com
4d6b42bc7e7451e42d81fa07a1273e9c9ed8e8e5
d1d666a51b36074b15de451448fd6737c00fa47c
/src/mame/drivers/hotblock.c
a461911235ae3f59ca72bbfbcf99c760566a5ba0
[]
no_license
mp-lee/historic-mame
f58011e11497c180b6976152b51d54c0e24e929c
6f03755e212f33ae6e4681d56351bf3c44f20916
refs/heads/master
2020-12-25T00:56:07.454750
2007-12-18T09:04:43
2007-12-18T09:04:43
null
0
0
null
null
null
null
UTF-8
C
false
false
5,844
c
/* Hot Blocks */ /* driver by David Haywood */ /* HotBlock board Tetris with naughty bits |||||||||||||||| +-------++++++++++++++++-------+ | | | YM2149 TESTSW | | | | 62256 62256 6116 6116 | | | | ...
[ "mame@mamedev.org" ]
mame@mamedev.org
0213b377c8c14228bcf7f770c9201c6ea1292678
1e12f93c4ca6bec2dbdd8170a65c7efe9bde6d51
/app/test/hal/cmd_wdt.c
180e29d0519a30f0bb4351d1edfe23063f77345b
[]
no_license
mhv75/hfirmware
85f643113ac49fde9621d2381b889623159b3bda
422ca2663d6d464691dc13177b6399178935521b
refs/heads/master
2021-12-23T10:28:13.467045
2017-11-12T05:05:10
2017-11-12T05:05:10
null
0
0
null
null
null
null
UTF-8
C
false
false
1,559
c
/* ChibiOS/RT - Copyright (C) 2014 HunterSun Technologies zutao.min@huntersun.com.cn 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.apac...
[ "pin@ping.localdomain" ]
pin@ping.localdomain
7e3fbb2d65cd16f383acf2dc6165f1cf3ac50040
1e1a6d6eddcf28d0eec77de85fa9da69a8dde735
/DLA/KNL/knl_autotune/kernel/17.17x4kernel31x8x0_155x20000x348_558+192.c
92f44f932e43d311cb776479405b4f0d8bc687d3
[]
no_license
hpc-sslab/lamma
8d0b55d6d1e8811110927d210b37a1bea4e02f9c
52caa049fa9cb70021f7f7a3952c232125b3632e
refs/heads/master
2020-03-25T17:51:14.860753
2018-08-08T11:45:28
2018-08-08T11:45:28
143,999,367
0
0
null
null
null
null
UTF-8
C
false
false
15,855
c
#include "immintrin.h" #include "x86intrin.h" #include "zmmintrin.h" #include <hbwmalloc.h> #define MR 31 #define NR 8 #define MB 155 #define NB 20000 #define KB 348 #define L1_DIST_A 558 #define L1_DIST_B 192 void micro_kernel0(int k, const double * A, const double * B, double * C, int ncol) { int i; register _...
[ "choi@ssu.ac.kr" ]
choi@ssu.ac.kr
341260bff0e9e6a0fa5eaef61a1374d0aaa63d88
b3043df0f8448a06aff9b00061c3d6ebd9845ca3
/src/BoxTools/Chombo_CH_OpenMP.H
41b5bd9027ff21e1ed988859576bc25fe46d30c8
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
applied-numerical-algorithms-group-lbnl/Chombo_4
60216bcd696d7715ccab8d95ed25061a28e4f75c
e22dbc8e3b74fc77ffbeb17f1f689be14ffce0e0
refs/heads/master
2023-09-03T22:23:28.604673
2023-09-01T19:46:03
2023-09-01T19:46:03
190,819,277
12
4
NOASSERTION
2022-08-18T17:34:39
2019-06-07T22:42:48
C++
UTF-8
C
false
false
589
h
#ifdef CH_LANG_CC /* * _______ __ * / ___/ / ___ __ _ / / ___ * / /__/ _ \/ _ \/ V \/ _ \/ _ \ * \___/_//_/\___/_/_/_/_.__/\___/ * Please refer to Copyright.txt, in Chombo's root directory. */ #endif #ifndef _Chombo_CH_OpenMP_H_ #define _Chombo_CH_OpenMP_H_ #include "Chombo_DataIte...
[ "dtgraves@lbl.gov" ]
dtgraves@lbl.gov
d15dd56bff03cf88566b42abfcef30f4bd258561
f99fe5e7d6b160cef405cba7775899a81ed2a5e5
/src/cnbdi.c
d21ea78efdeed9820fca81b0e1dc32c37d715430
[]
no_license
rajdipnayek/cslatec
83122616f72769b36fa7b6d00b3ec988bbb35fe3
c2a4301febfe44e2d1e0c0fa3a73ca49e44780db
refs/heads/master
2021-01-06T16:47:40.152730
2015-05-01T20:03:32
2015-05-01T20:17:48
null
0
0
null
null
null
null
UTF-8
C
false
false
4,310
c
/* cnbdi.f -- translated by f2c (version 12.02.01). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of ...
[ "rf@rufflewind.com" ]
rf@rufflewind.com
d16f163122fd59bdc6a71b089b5e8229bad42ee0
9af06d87a71077eb3e1675eb343aacdacdc16471
/MotorDriver.h
b4d66533f455c65589caa0364dec5a22dec20e72
[]
no_license
rogermadjos/bbot
750fce7172470b1a45742d4dfb66fd62efce9472
b00b1ccec7e9a34e8c51ba6ce3bb5bc3dbf62962
refs/heads/master
2016-09-05T21:21:44.611374
2014-04-01T16:38:24
2014-04-01T16:38:24
null
0
0
null
null
null
null
UTF-8
C
false
false
1,420
h
#include <Arduino.h> #define MOTOR_PIN_LEFT_A 7 #define MOTOR_PIN_LEFT_B 6 #define MOTOR_PIN_RIGHT_A 8 #define MOTOR_PIN_RIGHT_B 9 #define MOTOR_LEFT 1 #define MOTOR_RIGHT 2 #define MOTOR_LEFT_SCALE_POS 1 #define MOTOR_LEFT_SCALE_NEG 1.15 #define MOTOR_RIGHT_SCALE_POS 1.02 #define MOTOR_RIGHT_SCALE_NEG 1 void m...
[ "roger.madjos@gmail.com" ]
roger.madjos@gmail.com
23aa892ba3a05f92321bee02eefbb3ce1b6143c4
3798ced87146b5112e43290c362baf02e119f6d7
/common/pagedir.h
dd0b44974f753f967ff50ace4b9bb9a1f9c99f96
[]
no_license
saksham324/Tiny-Search-Engine-1
68af0cb72681f1113c6668b784752866f79f0f7d
305441207e3ccfc2499df2ee08ff76fe1a3f048b
refs/heads/master
2022-11-12T09:52:49.344633
2020-06-25T11:46:36
2020-06-25T11:46:36
420,512,414
1
0
null
null
null
null
UTF-8
C
false
false
381
h
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include "webpage.h" // checks to see if the directory exists and can be written into bool isValidDirectory(char * dirname); // saves a webpage bool pageSaver(webpage_t* page, const char * dirname, const int id); // loads a file creted b...
[ "markgitau@flume.cs.dartmouth.edu" ]
markgitau@flume.cs.dartmouth.edu
20d914726eec895066e36d085dd77849bc365a26
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/infiniband/core/extr_uverbs_std_types_flow_action.c_esp_flags_uverbs_to_verbs.c
9a4bd4c8303b3ec66b3e62b1abf617b1dd551759
[]
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,284
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
e8951c3a703ef972a695881b2573458fb700e478
d85707cd5e194bb302070c094b1458b7fbf22f5c
/src/cloud/ztk-adaptor/ntp_app.c
7f375a9bb7431e9f87a7974c17516fe3eb0a1804
[]
no_license
clemente79/rowan
fde63cbb9599a0f5e3e16cff0026f5608c959f53
9dcce544fd881dd840c066db62008abd4af7c86b
refs/heads/master
2022-02-26T02:06:33.428961
2018-10-17T02:01:45
2018-10-17T02:01:45
null
0
0
null
null
null
null
UTF-8
C
false
false
3,251
c
/* Copyright Statement: * * This software/firmware and related documentation ("MediaTek Software") are * protected under relevant copyright laws. The information contained herein is * confidential and proprietary to MediaTek Inc. and/or its licensors. Without * the prior written permission of MediaTek inc. an...
[ "andrew@example.com" ]
andrew@example.com
32e11fcdfd12b81dc27bc45bf7d0738d34ef9f3b
b024c80a6904d971df9b6808fed4ad7d9a2f8873
/System/Library/Frameworks/Security.framework/Security-Structs.h
7ec7fd8258a9ba3779e0ede5bfd9a1103de53512
[]
no_license
corbie11/tvOS143Headers
ba743d9de935e82dd21490ccb51b76d7044652ba
312b2224a69f7c59f6e90937f401a4f26d2cccfd
refs/heads/master
2023-04-29T23:53:57.684022
2021-04-06T05:54:55
2021-04-06T05:54:55
null
0
0
null
null
null
null
UTF-8
C
false
false
954
h
/* * This header is generated by classdump-dyld 1.5 * on Friday, January 1, 2021 at 5:06:48 AM Mountain Standard Time * Operating System: Version 14.3 (Build 18K561) * Image Source: /System/Library/Frameworks/Security.framework/...
[ "kevin.w.bradley@me.com" ]
kevin.w.bradley@me.com
f35d32915a7475d0046d32bf94941f70c663258c
c5cb98ad5c3fa37ce761cb9b430b69e29a33141f
/kungfu/skill/lonely-sword/poqiang.c
bc55d4846bf224180e5da868d8f6dcb2cfc0a23e
[]
no_license
cao777/mudylfy
92669b53216a520a48cf2cca49ea08d4df4999c5
266685aa486ecf0e3616db87b5bf7ad5ea4e57e4
refs/heads/master
2023-03-16T20:58:21.877729
2019-12-13T07:39:24
2019-12-13T07:39:24
null
0
0
null
null
null
null
GB18030
C
false
false
2,504
c
// poqiang.c 「破枪式」 #include <ansi.h> inherit F_SSERVER; int perform(object me) { string msg; object weapon, weapon2, target; int skill, ap, dp, damage; me->clean_up_enemy(); target = me->select_opponent(); skill = me->query_skill("lonely-sword",1); if( !(me...
[ "i@chenxuefeng.cn" ]
i@chenxuefeng.cn
6cba8163933d0006bcb333b00f40131884cad947
1a493a48b4058e40b663786e29eac9028038e7d1
/蓝桥杯大赛/HARDWARE/DS1302/ds1302.h
ddebe38b41e70a39de4ff46332792efd322300e4
[]
no_license
Xprice/My-codes
64ee7ff5412c01bd8c0ee19929932c40b550b30d
b4a9a1871e8ad935ed0424b9cc015085a4989088
refs/heads/master
2023-01-24T06:47:31.227230
2020-12-08T04:38:29
2020-12-08T04:38:29
265,141,708
0
0
null
null
null
null
UTF-8
C
false
false
423
h
#ifndef _DS1302_H #define _DS1302_H #include "stc15f2k60s2.h" #include "intrins.h" sbit SCK=P1^7; sbit SDA=P2^3; sbit RST = P1^3; // DS1302复位 void Write_Ds1302(unsigned char address,unsigned char dat ); void Write_Ds1302_Byte( unsigned char temp); unsigned char Read_Ds1302_Byte( unsigned char address ); void ...
[ "1450362882@qq.com" ]
1450362882@qq.com
2dfccd7da54589a6cd96052c2b62cbfdb945dfa3
7d71fa3604d4b0538f19ed284bc5c7d8b52515d2
/Clients/MGX/Crayola/Old/SRC/TRACER.C
d16f7a27907691d4d06383ed7d6d1be97e35b6ae
[]
no_license
lineCode/ArchiveGit
18e5ddca06330018e4be8ab28c252af3220efdad
f9cf965cb7946faa91b64e95fbcf8ad47f438e8b
refs/heads/master
2020-12-02T09:59:37.220257
2016-01-20T23:55:26
2016-01-20T23:55:26
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
11,542
c
//®PL1¯®FD1¯®TP0¯®BT0¯ // (c) Copyright 1991 MICROGRAFX, Inc., All Rights Reserved. // This material is confidential and a trade secret. // Permission to use this work for any purpose must be obtained // in writing from: MICROGRAFX, 1303 E Arapaho, Richardson, TX 75081 #include <windows.h> #include "id.h" #incl...
[ "jim@facetofacesoftware.com" ]
jim@facetofacesoftware.com
e56dce2a2492ac4107a0e91230b03e340de3b17c
ab01b7cc84d4bc73b176dade1e94f236d256fcb8
/ntshell/webserver/websocket_fbs.c
e454e65df2830b7e683b20f6d0d55819338cde18
[ "Apache-2.0" ]
permissive
h7ga40/PeachCam
097a0cecabe100c92fb61c63d17455ce22fb397f
1af2b041a4eb22b962183905ff81a2ee57babc3c
refs/heads/master
2023-09-05T02:46:02.335574
2023-08-07T13:15:22
2023-08-07T13:15:22
177,606,980
1
1
null
null
null
null
UTF-8
C
false
false
10,683
c
/* * TOPPERS WEBSOCKET Lite Communication Middleware * * Copyright (C) 2017 Cores Co., Ltd. Japan * * 上記著作権者は,以下の(1)~(4)の条件を満たす場合に限り,本ソフトウェ * ア(本ソフトウェアを改変したものを含む.以下同じ)を使用・複製・改 * 変・再配布(以下,利用と呼ぶ)することを無償で許諾する. * (1) 本ソフトウェアをソースコードの形で利用する場合には,上記の著作 * 権表示,この利用条件および下記の無保証規定が,そのままの形でソー * ...
[ "hi6aki_7ga40@hotmail.com" ]
hi6aki_7ga40@hotmail.com
e9ebac6d9df011f53d3843a925bec6950950fbd2
d071f2b1937b5923c7e4c4874cf934372f165266
/shower simulation/151223/profile_muon_theta.C
7d9b588fc9f35083ba2d785ce726c534d7252af1
[]
no_license
TuringTW/ntu_2015_fall
2297ef4cb32ac2f41924f543de3ada48b29d17b2
b9de790208cf14487b17ec68c8f436e666b11b99
refs/heads/master
2016-08-12T10:43:31.641214
2016-01-28T10:07:11
2016-01-28T10:07:11
50,574,332
0
0
null
null
null
null
UTF-8
C
false
false
1,441
c
void profile_muon_theta(){ TCanvas * c1 = new TCanvas("c1", "c1", 1200, 500); TFile *f1 = TFile::Open("muon.root"); // TNtuple *ntuple = (TNtuple*)gDirectory->Get("ntuple"); TNtuple *ntuple = (TNtuple*)f1->Get("ntuple"); c1 ->Divide(2, 0); c1 ->cd(1); ntuple ->SetMarkerSize(25); ntuple ->Draw("nobs:theta");...
[ "kevin831130810620@gmail.com" ]
kevin831130810620@gmail.com
d16e1de15e4d07d5337ff6399c452cd3b0471ca3
6f03b4d4dd4955b35e46cc50ab39121f42c3631c
/Timer_9/stm32types.h
50600a0e0b90052fd843c2d9ac05181b48c46b2f
[]
no_license
SugumaranEvil/STM32F401CC
e6ed329b0bd9685952382312c6f54ce2b8a3e410
98f8951100dfe4b22ca0d6b778c1d615a22b75a6
refs/heads/main
2023-07-17T12:45:44.320070
2021-08-31T06:44:32
2021-08-31T06:44:32
396,832,428
0
0
null
null
null
null
UTF-8
C
false
false
1,192
h
/***************************************************************/ /* Author : Sugumaran A */ /* File Name : stm32types.h */ /* Description : TIMER9 on STM32 */ /* Date : 24-08-2021 ...
[ "suguanbu321@gmail.com" ]
suguanbu321@gmail.com
47c09acf77260b83ded3b1d9df5dc8b436134cbe
928aa27319c4618e36c08556d2f44b16fc41c482
/canfestival/src/lss.c
5afe3e5f21c8b70e36e63b5f9c564f8f0c5e942b
[]
no_license
DoryPym/STM32CANopenFestival
c72c23f1cb51adb11df63d104f4a4afce16b9b00
b539f6988643116094619872483c246d733e4de1
refs/heads/main
2023-01-19T05:49:31.733429
2020-11-27T02:54:12
2020-11-27T02:54:12
316,385,036
3
0
null
null
null
null
UTF-8
C
false
false
38,005
c
/* This file is part of CanFestival, a library implementing CanOpen Stack. Copyright (C): Jorge Berzosa See COPYING file for copyrights details. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Found...
[ "youth_zhao@foxmail.com" ]
youth_zhao@foxmail.com
ee8427e579204364b312bcbf9458f95f9dee9839
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function13953/function13953_schedule_17/function13953_schedule_17_wrapper.h
0b42224fb472d82055cb8d7c4a26bda3d1cfd5e0
[]
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
474
h
#ifndef HALIDE__generated_function13953_schedule_17_h #define HALIDE__generated_function13953_schedule_17_h #include <tiramisu/utils.h> #ifdef __cplusplus extern "C" { #endif int function13953_schedule_17(halide_buffer_t *buf00, halide_buffer_t *buf01, halide_buffer_t *buf02, halide_buffer_t *buf03, halide_buffer_t ...
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
b502596ee56684db9865bb66e5514208a494be41
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/m68k/platform/coldfire/intc.c
1a4a07e3184146391e4d203315969d5b60a67ee3
[]
no_license
weilaidb/PythonExample
b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466
798bf1bdfdf7594f528788c4df02f79f0f7827ce
refs/heads/master
2021-01-12T13:56:19.346041
2017-07-22T16:30:33
2017-07-22T16:30:33
68,925,741
4
2
null
null
null
null
UTF-8
C
false
false
509
c
unsigned char mcf_irq2imr[NR_IRQS]; #define EIRQ1 25 #define EIRQ7 31 void mcf_setimr(int index) void mcf_clrimr(int index) void mcf_maskimr(unsigned int mask) void mcf_setimr(int index) void mcf_clrimr(int index) void mcf_maskimr(unsigned int mask) void mcf_autovector(int irq) static void intc_irq_mask(struct irq_data...
[ "weilaidb@localhost.localdomain" ]
weilaidb@localhost.localdomain
9bc3f823018eee4c9b8313c71614da9124bb8021
de2a3ca7e439797046219fc6f46250d1fa33998a
/word_clock_controller/I2C.h
a36734b2e09d0525362ce5955f081dabed51f965
[]
no_license
ryanjsims/word_clock
9b26c714c147705f07267f31686023a3ca89f940
d2d18182cd5587f895f3ccc13b96e4dc253726e5
refs/heads/master
2020-03-28T02:53:02.598911
2018-12-21T18:26:24
2018-12-21T18:26:24
147,604,858
0
0
null
null
null
null
UTF-8
C
false
false
2,288
h
#ifndef I2C_h #define I2C_h #include <avr/io.h> #include <avr/interrupt.h> int sendStart(){ TWCR |= (1 << TWSTA) | (1 << TWINT); while(!((1 << TWINT) & TWCR)); if(!((TWSR & 0xF8) == 0x08 || (TWSR & 0xF8) == 0x10)){ TWCR |= (1 << TWSTO) | (1 << TWINT); return -1; } return 0; } int send...
[ "ryanjsims@email.arizona.edu" ]
ryanjsims@email.arizona.edu
04386acbaf6428341775bab4086bb514560c452d
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant100155_pointer-set.c
eb1eb737db13964eaf6336f48b78bb0797b85191
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
8,653
c
/* Set operations on pointers Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) ...
[ "agroce@gmail.com" ]
agroce@gmail.com
163eeed29dc8ff8768cd8dbe78cdb3aef456525c
19e9a212f91fd0d371c988cf2d30366627a0758a
/prog-avancée/Exercice_7-codeCesar-LYS.c
a5844e59eb7efd36c3f12bfc0d76ea71f45b59b8
[]
no_license
nathanlys/ati01-iax
6dcac9cc46ec77a6a968a07482258a31e8af0c56
3d94c27cab29e9a607a3723518a07ddcd8c13a59
refs/heads/master
2021-01-02T09:49:36.356861
2020-03-02T16:11:06
2020-03-02T16:11:06
239,564,174
0
0
null
null
null
null
UTF-8
C
false
false
1,148
c
#include <stdio.h> int longueurChaine(char*); void codeCesar(char*,int); void decodeCesar(char*,int); int main(){ char message[255]="Bonjour"; char message2[255]="Erqmrxu"; printf("Le message est : \n%s\n",message); codeCesar(message,29); decodeCesar(message2,3); return 0; } //Exercice 1 int longueurChaine(char* mes...
[ "nathanlysp@gmail.com" ]
nathanlysp@gmail.com
febc7251c4e7f4c37842f687809fd0a881333e03
34625362d4ec8ba7d0c89fe4cd02fde608f1e72d
/src/base/cmd/cmdStarter.c
7bcace4af908f0a95a1efddd221212b19c009269
[ "MIT-Modern-Variant" ]
permissive
vanever/ABC
eff156bd9f59eeb2e383dff112576343f1b0eafd
e2bfb56dbb3d8a938e3b6c15d4e91911184e1416
refs/heads/master
2021-04-12T05:19:31.747876
2014-04-11T06:31:31
2014-04-11T06:31:31
18,664,578
3
2
null
null
null
null
UTF-8
C
false
false
8,183
c
/**CFile**************************************************************** FileName [cmdStarter.c] SystemName [ABC: Logic synthesis and verification system.] PackageName [Command processing package.] Synopsis [Command to start many instances of ABC in parallel.] Author [Alan Mishchenk...
[ "chaofanyu@gmail.com" ]
chaofanyu@gmail.com
5b2407353f8937642c711d4fa4c15b0b12f86a05
f2e72b46e134db74be65ae86ea66ddb884cec38f
/maestro/phase.h
b1a8f185167a900864f2ac0b42c75dc5de134c37
[]
no_license
ChopinDavid/Maestro-cpp
32ec8fec3dd3ae3c4403b864aa90a27ee2a4b07f
004f7db46567494633c3a7cee9ed05f00d06e6d4
refs/heads/master
2023-01-09T01:05:14.199171
2020-10-25T18:25:51
2020-10-25T18:25:51
279,200,063
2
1
null
null
null
null
UTF-8
C
false
false
134
h
#ifndef PHASE_H_INCLUDED #define PHASE_H_INCLUDED enum Phase { Unknown, OpeningMiddle, End }; #endif // PHASE_H_INCLUDED
[ "dchopin1@live.maryville.edu" ]
dchopin1@live.maryville.edu
a9a0f178096c45235eff2be7899da8f1c4229a09
59cf44bb6424ad49ff9c753c4e7e5a6530bf68a5
/3/1/main.c
55d5b69273ad0a573f5999ebf816ae83c9924569
[]
no_license
github-jxm/openssl_programing
9964ad223d8e00b16dc925127373f8274b2873ef
a6a517af9d397b9df7629d75fb9ab548f7b4cc7f
refs/heads/master
2020-04-13T10:38:39.725749
2019-01-18T17:30:50
2019-01-18T17:30:50
163,147,438
5
1
null
null
null
null
UTF-8
C
false
false
1,512
c
#include <stdio.h> #include <openssl/safestack.h> void popfreeCallBack(void *arg) { printf("pop and free %d \n",*(int*)arg); } /* **************** * 通用链表 ***************** */ int test_stack() { //创建一个空的栈 OPENSSL_STACK *st = OPENSSL_sk_new_null(); int a = 10; OPENSSL_sk_push(st, &a); int b...
[ "cjiangxumin@gmail.com" ]
cjiangxumin@gmail.com
7ffcc0d8ddddce1d2d9d35f4ce7acc77731a69f4
37d575cda07619c23a61593ac267ff49e10a8c2b
/header/app.h
81d441af9cf1076edd6b6f6ee0c7f45ca6a4830c
[]
no_license
Teybeo/3D-Engine
bd40c26f6771e6d2b8bcb5776415f1632ea6bf8b
170bfe0cc64e0e789c842b210f8638b358c9ed34
refs/heads/master
2021-01-18T14:18:36.269804
2019-09-11T16:21:30
2019-09-11T16:21:30
9,493,147
6
1
null
null
null
null
UTF-8
C
false
false
343
h
#ifndef _APP_GUARD #define _APP_GUARD #include "fenetre.h" #include "scene.h" #include "renderer.h" #include <stdbool.h> #include "SDL.h" #include "glew.h" #define NB_BULLETS_MAX 4 typedef struct App { Fenetre fenetre; Scene* scene; Renderer renderer; } App; void App_Run(App* app); bool App_Init(App...
[ "thibault.darchivio@free.fr" ]
thibault.darchivio@free.fr
da28467faec2ae3ba4ac4868ad61679cf4a97048
ed444c4a0ed1fe679da64b81ec6aa1ddf885a185
/Foundation/Render/Common/Transform/import.h
6ba03322920182c1fae61483d6244a87426e11a2
[]
no_license
swaphack/CodeLib
54e07db129d38be0fd55504ef917bbe522338aa6
fff8ed54afc334e1ff5e3dd34ec5cfcf6ce7bdc9
refs/heads/master
2022-05-16T20:31:45.123321
2022-05-12T03:38:45
2022-05-12T03:38:45
58,099,874
1
0
null
2016-05-11T09:46:07
2016-05-05T02:57:24
C++
UTF-8
C
false
false
37
h
#pragma once #include "Transform.h"
[ "809406730@qq.com" ]
809406730@qq.com
8de266abd8decee3025e634d0219ee2d89be130e
e45791d54a24e8bdcf963485d6927758bf5030fd
/learn/c5/sortlines2/qsort.c
fbc9c250dc66b809ce9052013f6b375d5fea91ee
[]
no_license
frnorth/C
e34057e4cade78b50eda89d7255861386480b15f
e087fd8692d4127411a4d9d63967cd0e645f1325
refs/heads/master
2021-06-14T10:35:22.973922
2021-03-15T10:42:17
2021-03-15T10:42:17
163,723,416
2
0
null
null
null
null
UTF-8
C
false
false
1,113
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define defprintf(x) printf(#x ": %f\n", x) #define defprints(x) printf(#x ": %s\n", x) int numcmp(const char *, const char *); void qsort2(void *v[], int left, int right, int (*comp)(void *, void *)) { int i, last; void swap(void *v[], int i, int j); if ...
[ "763211690@qq.com" ]
763211690@qq.com
6f663f94d524b7ea423d1d27228140f418197a49
72f2515c4cef9e02c27452b32269ca403f76c69a
/src/modules/PowerOCR/PowerOCRModuleInterface/resource.base.h
20984c734f6148b7e464998a3cfb10665361a283
[ "LicenseRef-scancode-generic-cla", "MIT", "BSL-1.0", "Unlicense" ]
permissive
microsoft/PowerToys
4625ffc4c513265094bf9e0f490753a54aabeaa0
3244ba989921dd26dd32be75021ed68c9cfcdda9
refs/heads/main
2023-08-17T00:10:06.645243
2023-08-16T16:31:10
2023-08-16T16:31:10
184,456,251
103,306
7,187
MIT
2023-09-14T16:52:26
2019-05-01T17:44:02
C#
UTF-8
C
false
false
341
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by PowerOCR.rc ////////////////////////////// // Non-localizable #define FILE_DESCRIPTION "PowerToys TextExtractor" #define INTERNAL_NAME "PowerToys.PowerOCR" #define ORIGINAL_FILENAME "PowerToys.PowerOCR.dll" // Non-localizable //////////...
[ "noreply@github.com" ]
microsoft.noreply@github.com
87c0b5804c9422ea79cb3af6073c7279c375aa9c
80e4ed2e00767462f6c9fafaf297ac9210f1897c
/A-Protect/KernelHook.h
de803f4ef7f39613b245de1a9389b7050c85a3fd
[]
no_license
lsjgithub/freefall
bc6ddec8fe6b1ae841bd7cce25302299685d4bc8
6d6cfd60db3829cf5c06be2da3bb740706d52b95
refs/heads/master
2022-03-25T11:02:47.231741
2020-01-08T07:31:46
2020-01-08T07:31:46
null
0
0
null
null
null
null
UTF-8
C
false
false
2,131
h
#include "StdAfx.h" #define SystemModuleInformation 11 #define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS)0xC0000004L) #define STATUS_SUCCESS 0x00000000 #define STATUS_UNSUCCESSFUL (0xC0000001L) typedef LONG NTSTATUS; typedef struct _SYSTEM_MODULE_INFORMATION // 炵苀耀輸陓洘 { ULONG Reserved[2]; ULONG Base; ...
[ "58566856+enduro35@users.noreply.github.com" ]
58566856+enduro35@users.noreply.github.com
254411f875c692f32ab3f6ffd4706c9231fe01e0
f83608bf597d1545a3eb1b32384d31ceab74cf57
/BOJ/2438.c
5ec25b4c67d3502542c5399d27a54f33640cc4a8
[ "MIT" ]
permissive
dolaeul-company/Study
1facbeded34512e4204aac653534285c66d14fad
ce0e51e6b2451425478580d9fa32ef7d07e61dd9
refs/heads/master
2020-06-06T09:49:35.428092
2019-06-22T16:39:21
2019-06-22T16:39:21
192,705,840
0
0
null
null
null
null
UTF-8
C
false
false
248
c
#include <stdio.h> //https://www.acmicpc.net/problem/2438 int main(void) { int d; scanf("%d", &d); for(int i = 1; i <= d; i++){ for (int j = 1; j <= i; j++) { printf("*"); } printf("\n"); } return 0; }
[ "k2005118@gmail.com" ]
k2005118@gmail.com
ee25b5a33cb1c974fdc78c48cb0a634992bd08c3
c795f24bbc4d3c20c63a1e2c0f9ed144af1bac54
/Accelerometer Node_code/header/accel_i2c.h
d860b7b77b6039e78633a7be10f21c6ef27fd854
[]
no_license
talvi1/road-roughness
f474888e69e464227d2cb5492b5ddd1e10b59935
a76d51c58a87cbb56c8c831c0e17db2a355b38b2
refs/heads/master
2020-11-25T14:09:35.648023
2020-08-30T03:50:36
2020-08-30T03:50:36
228,705,236
0
0
null
null
null
null
UTF-8
C
false
false
352
h
#include "stm32f1xx_hal.h" #include "stm32f1xx_hal_i2c.h" uint8_t MPU6050_Init(I2C_HandleTypeDef* I2C); int16_t getAccel(I2C_HandleTypeDef* I2C); void read_register(I2C_HandleTypeDef* I2C, uint8_t reg, char *name, int length); void calibration(I2C_HandleTypeDef* I2C); void send_to_xbee_for_transmitting(uint8_t *accel...
[ "natnaeleshetu@yahoo.com" ]
natnaeleshetu@yahoo.com
22bd657a0f4c7d2765d3a327b1af6243e8d363bd
f0dfd88459d5aa2f19ab5ee1fbc993952cb37332
/usr.sbin/ldapd/btest.c
970cda8f97f1b317ad548bb0cb9ab875b35f81a6
[]
no_license
radixo/openbsd-src
5f93c09735d519689ffc0c5144d05abfeaacf82c
2554c092cef615cba187243a9e2fe6e943ef6248
refs/heads/master
2021-01-10T21:48:43.347196
2015-12-04T02:34:41
2015-12-04T02:34:41
41,678,666
0
0
null
null
null
null
UTF-8
C
false
false
3,338
c
/* $OpenBSD$ */ /* Simple test program for the btree database. */ /* * Copyright (c) 2009 Martin Hedenfalk <martin@bzero.se> * * 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 not...
[ "wsouzant@gmail.com" ]
wsouzant@gmail.com
fb8dc542aa9a6be676cfabf2c23634c10f44ed36
cb796d9cc879e8caf80cac00a3953c43b312f21c
/common2/applications/user_application/user_board/config_samd09_d10_d11/conf_clocks.h
c6463ecea6bd59b5716687de7ad4d9b20c953e1c
[]
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
8,389
h
/** * \file * * \brief SAM D1x Clock configuration * * Copyright (C) 2014-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
a67579ffb3eb1243ad5606a8940d116137f6566c
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/2488949a-928c-4054-b5e4-4a0be236d8da.c
df861358b37ef635cc2d11729fa1670287b8adb8
[]
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
599
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; j = 53; l = 64; k = i/j; l = i/j; l = i/j; l = i%j; l = i%j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; int b[70]; int c[94]; a = 0; do { ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
48701716562f7a735ba1e8053ab293f3338c3341
9ebedff73bd47bd78060911e6a27a38e0564db6a
/src/my_strace/log.c
d5803dac09ca2ab60f894f136b76dd6177816be4
[]
no_license
schischi/my_ltrace
a90dfc98b6915c7483758cc4b8b1bb1d292a57fb
89536db8a069182948eb86c7af6d774f6dd47e60
refs/heads/master
2021-01-17T14:37:01.473189
2013-12-22T03:41:20
2013-12-22T03:41:20
18,099,445
2
0
null
null
null
null
UTF-8
C
false
false
956
c
#include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> #include <stdarg.h> #include "log.h" void my_log(e_log_level level, s_debug_info debug, char *fmt, ...) { va_list ap; va_start(ap, fmt); if (level == INFO) { fprintf(stdout, "%-17s", COLOR_BLUE"[INFO]"COLOR_RESET); ...
[ "adrien+dev@schischi.me" ]
adrien+dev@schischi.me
c88f6a4f4008b8ae69af2f19c53ef4fd1d87ac1b
4e46e00e408aa2b04c0489a910eae7120dc7716e
/misc.c
7ee27b068fdef188e304de7605dc6a01eaed21ef
[]
no_license
Tevo45/cuefs
dd54f01322f21cdcefce85679fd69ceb3fa37592
4ad43d5b0a8e37800f0268da29564e69333b7dcf
refs/heads/master
2023-03-05T11:15:10.188906
2021-02-15T06:08:21
2021-02-15T06:08:21
314,648,227
0
0
null
null
null
null
UTF-8
C
false
false
1,769
c
#include <u.h> #include <libc.h> #include "cuefs.h" #include "y.tab.h" int verbosity = 0; void* erealloc(void *p, ulong s) { p = realloc(p, s); if(s > 0 && p == nil) sysfatal("realloc: %r"); setrealloctag(p, getcallerpc(&p)); return p; } void* emallocz(ulong s, int clr) { void* p = mallocz(s, clr); if(p == ...
[ "estevan.cps@gmail.com" ]
estevan.cps@gmail.com