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
8e7a3d7bc24c8900224708e2474998d4b72c8a2b
0498c65963e030a56d8dd750ba5b47bb492e7dfb
/0x14-bit_manipulation/0-binary_to_uint.c
e92ccd0586005cd7614e7faf5b2b8fa9746315b8
[]
no_license
JuanJoseGomezR/holbertonschool-low_level_programming
20724fbb3e4c414088b8bf434369e0195b05389f
cbee0d98a1bfb8fe3802a2de36dcfea3f26be81b
refs/heads/master
2020-12-29T05:35:35.255903
2020-08-27T20:21:47
2020-08-27T20:21:47
238,473,633
0
0
null
null
null
null
UTF-8
C
false
false
402
c
#include "holberton.h" /** * binary_to_uint - convert binary to uns int * @b: constant var * Return: unsigned int */ unsigned int binary_to_uint(const char *b) { unsigned int convert = 0; if (b == NULL) return (0); while (*b != '\0') { convert = convert << 1; if (*b != '1' && *b != '0') return (0...
[ "juangomez0149@gmail.com" ]
juangomez0149@gmail.com
f665e21333b197747f47c86e5fc80ad8303fedbe
77d54166b2f9613d56a5b9543a058be8bbd4307d
/Chap01_Introduction/hello.c
a86f76c472074974d515396f5b6085c435420286
[]
no_license
ohwada/MAC_OpenGL_redbook
f3abeb54373cf13387ce8ed75457120d182b8019
ee7caecca32a63ff21e9435bd0cb4d9880121c9c
refs/heads/master
2021-05-27T13:09:00.874761
2020-04-11T02:16:15
2020-04-11T02:16:15
254,272,304
0
0
null
null
null
null
UTF-8
C
false
false
4,254
c
/** * OpenGL Sample * 2020-03-01 K.OHWADA * original : https://www.opengl.org/archives/resources/code/samples/redbook/ */ // change log // add dumpGLInfo /* * Copyright (c) 1993-1997, Silicon Graphics, Inc. * ALL RIGHTS RESERVED * Permission to use, copy, modify, and distribute this software for * any purp...
[ "ml.ohwada@gmail.com" ]
ml.ohwada@gmail.com
f4d439de02694ad1102cb4fcd12343716e7564e5
b1558ebb2e42034b9a6ccf4f16a87bf8e90f255a
/ARRAY/remove double element from string.c
f4476b3a15c69edec6ae89617abceb52e5808d73
[]
no_license
mansoor4/Datastructure-and-Algorithms
201cc2c18e1d24667de266eaa6db74645b494b93
5f5e903ccda84912759cf9bf35c2c2dd3acccaca
refs/heads/master
2022-07-08T13:08:48.249648
2020-05-09T10:56:29
2020-05-09T10:56:29
262,548,050
0
0
null
null
null
null
UTF-8
C
false
false
699
c
#include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> #include<stdlib.h> int main() { int a[13]={132,12,2,12,12,2,1,2,2,11,12,6,6}; int *h; int max=a[0],i; for(i=1;i<13;i++) { if(a[i]>max) { max=a[i]; } } h=(int*)malloc(sizeof(i...
[ "mansoorshakir642@gmail.com" ]
mansoorshakir642@gmail.com
7b3ca4d966c1cb2d947e819911019b7b58f9454e
92e81f7ef2807597bd9c66ba7b0e04dca0ec0409
/Plugins/RuntimeMeshComponent/Intermediate/Build/Win64/UE4/Development/RuntimeMeshComponent/PCH.RuntimeMeshComponent.h
207066847a872dca80247d38690c5ff5f8c60aa4
[ "MIT" ]
permissive
Sixmorphugus/Voxels-UE4
8a365e4cb427ced0bc053838d46f4eca84e0307f
2d2c631bc0cbd1b15ee18aaf790502353f9a314f
refs/heads/master
2021-03-27T08:54:31.379036
2017-08-14T12:32:47
2017-08-14T12:32:47
80,782,935
2
0
null
null
null
null
UTF-8
C
false
false
2,538
h
// PCH for D:\Repos\SuperAlchemist\Plugins\RuntimeMeshComponent\Source\RuntimeMeshComponent\Private\RuntimeMeshComponentPluginPrivatePCH.h #define UE_GAME 1 #define IS_PROGRAM 0 #define WITH_DEV_AUTOMATION_TESTS 1 #define WITH_PERF_AUTOMATION_TESTS 1 #define UNICODE 1 #define _UNICODE 1 #define __UNREAL__ 1 #define IS_...
[ "Chris Sixsmith" ]
Chris Sixsmith
9e8a60ce28d049efe2a49394e8afc91cdb1e3fcc
613c58d156f671f2328689838729ef6381201311
/ARM/wangjie/uhal/uhal.h
0aff39b0c4dd37f889e7a153d86b2509c9efe48a
[]
no_license
wangjie483216300/wangjie483216300
6b804128013be6324e129d5a766ceef71dea1318
cb2e18aa237d294203eefb7069858381397d9b70
refs/heads/master
2020-12-11T11:03:48.679312
2020-05-19T01:20:54
2020-05-19T01:20:54
233,830,943
0
0
null
null
null
null
UTF-8
C
false
false
206
h
/* ARM board targetting source file.*/ //#define uHALr_InitInterrupts() ISR_Init() //void uHALir_DefineIRQ(void *is, void *iq, void *n); //void BreakPoint(void); //void ARMTargetInit(void);
[ "noreply@github.com" ]
wangjie483216300.noreply@github.com
69433896f03a57c0a07fc094ae06e6c5a38bd449
be3167504c0e32d7708e7d13725c2dbc9232f2cb
/mame/src/mame/drivers/s8.c
d9aa34faf05fe9a99bdd9789f688038494bd7238
[]
no_license
sysfce2/MAME-Plus-Plus-Kaillera
83b52085dda65045d9f5e8a0b6f3977d75179e78
9692743849af5a808e217470abc46e813c9068a5
refs/heads/master
2023-08-10T06:12:47.451039
2016-08-01T09:44:21
2016-08-01T09:44:21
null
0
0
null
null
null
null
UTF-8
C
false
false
3,001
c
/*********************************************************************************** Pinball Williams System 8 ************************************************************************************/ #include "emu.h" #include "cpu/m6800/m6800.h" class williams_s8_state : public driver_device { pu...
[ "mameppk@199a702f-54f1-4ac0-8451-560dfe28270b" ]
mameppk@199a702f-54f1-4ac0-8451-560dfe28270b
df7492c889d91cd83a8cc32d113c5ce7771d29ab
26e380cd46503400f88289ef76d77448fceefdea
/src/driver_coreaudio.c
fd041d0f37e408ab76db1a3a5b2355001559980e
[]
no_license
jonof/jfaudiolib
53e0fd454a7a48a2a5946bb00acfc30c1559ba64
d72aa171a6fad72d4f19e689f4be989fe472e763
refs/heads/master
2023-01-25T04:33:21.880471
2022-12-30T11:11:11
2022-12-31T02:10:47
1,178,819
16
16
null
2022-09-19T05:02:51
2010-12-18T01:55:53
C
UTF-8
C
false
false
19,614
c
/* Copyright (C) 2009 Jonathon Fowler <jf@jonof.id.au> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is...
[ "jf@jonof.id.au" ]
jf@jonof.id.au
0c3a24e4650ff671d0db2c93991d009803eb2602
7e62f0928681aaaecae7daf360bdd9166299b000
/external/DirectXShaderCompiler/tools/clang/test/Preprocessor/predefined-macros.c
3da40cccee807a899c911200750dd156855be22d
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yuri410/rpg
949b001bd0aec47e2a046421da0ff2a1db62ce34
266282ed8cfc7cd82e8c853f6f01706903c24628
refs/heads/master
2020-08-03T09:39:42.253100
2020-06-16T15:38:03
2020-06-16T15:38:03
211,698,323
0
0
null
null
null
null
UTF-8
C
false
false
6,989
c
// This test verifies that the correct macros are predefined. // // RUN: %clang_cc1 %s -E -dM -triple i686-pc-win32 -fms-extensions -fms-compatibility \ // RUN: -fms-compatibility-version=13.00 -o - | FileCheck %s --check-prefix=CHECK-MS // CHECK-MS: #define _INTEGRAL_MAX_BITS 64 // CHECK-MS: #define _MSC_EXTE...
[ "yuri410@users.noreply.github.com" ]
yuri410@users.noreply.github.com
87cd7f5fdf497bf581474cb05bef472e06bb5522
f27584ee0f90de486bf739236c9193112b278e0d
/c codes/lcd.c
f2eea3044699401c5775f4daa77927984eb36bbc
[]
no_license
dog94/AR-bascketball-game-on-Android
77bfa1fbdfc7d888084f310ad6d9353ff87cc387
8d4bf9a5e29ae5c79bbfaa3fc5588b8c911a1c75
refs/heads/master
2020-12-11T03:44:05.314396
2016-09-20T06:29:58
2016-09-20T06:29:58
68,681,189
0
0
null
null
null
null
UTF-8
C
false
false
732
c
#include "lcd.h" alt_up_character_lcd_dev * char_lcd_dev; void printLCD(char * message) { // open the Character LCD port char_lcd_dev = alt_up_character_lcd_open_dev("/dev/LCD"); if (char_lcd_dev == NULL) alt_printf("Error: could not open character LCD device\n"); else alt_printf("Opened character LCD device\...
[ "dog94@163.com" ]
dog94@163.com
1e95c6b0e52a3098455a91cd41ba5e96735fa7fd
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/bluetooth/bluedroid/stack/sdp/sdp_utils.c
842e75784a40f6eaadf694bbddf57567604c9b3c
[ "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C
false
false
30,566
c
/****************************************************************************** * * Copyright (C) 1999-2012 Broadcom 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: * ...
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
44ac2510e510b40eab51785cf8d7ebd14daccf06
e24a981d22dc9f08eaead51792f5933d359f003d
/contrib/sdk/sources/Mesa/mesa-10.6.0/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
7f227868f737ef2c9c68c2e5c1697905a2a4cae0
[]
no_license
Harmon758/kolibrios
d6001876fefb006ea65e5fe3810b26606e33284e
0d615a7c442e8974f58b7260b094c1212c618bcf
refs/heads/master
2023-08-20T11:47:59.999028
2023-08-20T10:40:03
2023-08-20T10:40:03
66,638,292
32
4
null
null
null
null
UTF-8
C
false
false
5,504
c
/* * Copyright 2012 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, d...
[ "serge@a494cfbc-eb01-0410-851d-a64ba20cac60" ]
serge@a494cfbc-eb01-0410-851d-a64ba20cac60
f48a9efad15b195ab179ba062423754a4ef5c6b0
317410b28757af216145d23259d63fc96d07f613
/cpu/br34/audio_dec/audio_dec_pc.c
5bc1f98096b9f133e4fb49adbf5c4a1ce56f5025
[ "Apache-2.0" ]
permissive
Jieli-Tech/fw-AC63_BT_SDK
48c757dca7e8000ec763bf5466583a4cd8c4a11c
393d63758081d56f0bf0a39ac596bee32c33d493
refs/heads/master
2023-07-18T02:14:56.187266
2023-06-21T03:14:20
2023-06-21T03:14:20
272,586,610
113
76
Apache-2.0
2022-10-20T23:07:31
2020-06-16T02:02:15
C
UTF-8
C
false
false
25,886
c
#include "uac_stream.h" #include "app_config.h" #include "audio_decoder.h" #include "media/includes.h" #include "audio_config.h" #include "system/includes.h" #include "audio_enc.h" #include "application/audio_eq.h" #include "application/audio_drc.h" #include "app_config.h" #include "audio_config.h" #include "audio_dec....
[ "32678837.qq.com" ]
32678837.qq.com
d80fd5b9cbc29e547812849b7117447ba6237278
264cc34d1d5322c9c955f351e5ed710836f6a1a5
/cmake_targets/basic_simulator/enb/CMakeFiles/S1AP_R14/S1AP_IntendedNumberOfPagingAttempts.c
78e07d1043c636f0bda11d3168f458e0dce78cdd
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-generic-cla" ]
permissive
mr-ytseng/openairinterface5g
8d40a768b2046da8c521f58d34c0466226f1c154
54d541c22cdfcb774774089291c93e4e79294a1d
refs/heads/master
2021-10-27T20:56:33.843199
2019-04-19T15:37:55
2019-04-19T15:37:55
177,127,103
0
1
null
null
null
null
UTF-8
C
false
false
2,162
c
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" * found in "/home/user/openairinterface5g/openair3/S1AP/MESSAGES/ASN1/R14/s1ap-14.5.0.asn1" * `asn1c -pdu=all -fcompound-names -fno-include-deps -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/cmake_targ...
[ "yuchia.tseng@irt-systemx.fr" ]
yuchia.tseng@irt-systemx.fr
f18d676b87da84053870dd0e63f636f8927921d2
8234f108d0c187fec8cb6039ee34188a4f093100
/multipleSpawn.c
98e0b07eb3db537205deafbe477538ab8e1b9f22
[]
no_license
mpucka/Systems-Programming
6b8e93d1b1b2cde6daa9dad49ccbe0ed57ebc2a2
fbcf126a26a8d90a708920a4d0ecb7636da66d63
refs/heads/master
2020-04-05T23:15:42.936640
2016-06-26T20:21:57
2016-06-26T20:21:57
62,005,757
0
0
null
null
null
null
UTF-8
C
false
false
983
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include "morph.h" int main(int argc, char *argv[]) { int i,location=0,remember[location],num, j, count=0, count2=0,status=0; if (argc < 2){ printf("Please enter at least 1 argument\n"); return 0; } el...
[ "iplacidoo@gmail.com" ]
iplacidoo@gmail.com
dca5e9fcf4908c05260a8f0c1e21ead85ea55ea5
d932cd7a8a65a7fc55d8383760ec1736a1d5d561
/sensorCode/bmp180-master/bmp180dev3.c
f08ed5a076ced6f76ec13f83a8ea765cf888ae9d
[]
no_license
byui-rocket-dynamics/Avionics_Flight_Control
41c0b997eefc468d9b8447fe436824236038e90d
d7c054c549f73342e6aa0779c9d6cad416df0642
refs/heads/master
2020-04-27T22:02:38.129928
2019-06-14T22:36:59
2019-06-14T22:36:59
174,721,298
1
0
null
null
null
null
UTF-8
C
false
false
10,667
c
/* (Dev) - (Pi) SDA - SDA SCL - SCL GND - GND VCC - 3.3V This code is compatible with bmp085 & bmp180 Note: Check your pin-out Note: Make sure you connect the PI's 3.3 V line to the BMP085/180 boards Vcc 'Vin' line not the 3.3v 'OUT' How to compile, @ command line ...
[ "zcarico03@gmail.com" ]
zcarico03@gmail.com
9b99ed4cede454ac2bee2583af5aa0e2ecb2fbad
21da28ffd9144c1454c0f3623d4d2d65ea5baa83
/my_main.c
3f92e9de8608cfd161979198a292710d3402746b
[]
no_license
KillyBOT/Graphics_final
f21464ee5c63813c0b719d78cc4534477ad640fa
58afacc1201b3843887b95c3ca371d69345cdaaf
refs/heads/master
2022-10-08T06:37:10.341996
2020-06-12T00:36:48
2020-06-12T00:36:48
268,351,492
0
0
null
null
null
null
UTF-8
C
false
false
30,087
c
/*========== my_main.c ========== This is the only file you need to modify in order to get a working mdl project (for now). my_main.c will serve as the interpreter for mdl. When an mdl script goes through a lexer and parser, the resulting operations will be in the array op[]. Your job is to go through ea...
[ "edwards.kyle.j@gmail.com" ]
edwards.kyle.j@gmail.com
78f22d3287b5f8c0df8ab819a3a9a131c8bdcdb2
5b4afa2c06031ae9161d406c572fb7c721bf5c26
/Chapter6/Chapter6.h
cc2eef38928ed4019da3532b822932b397bb36bf
[]
no_license
AstroYoung617/Cplusplus-study
e304df897521c97a6c70f6d5a82190bcbc0397d7
f4073c1e00db1809a8412bfff12cde9ce159350d
refs/heads/main
2023-07-03T04:29:55.325630
2021-07-19T02:34:02
2021-07-19T02:34:02
361,659,526
3
0
null
null
null
null
UTF-8
C
false
false
83
h
#ifndef CHAPTER6_H #define CHAPTER6_H int fact(int val); #endif // !CHAPTER6_H
[ "413294996@qq.com" ]
413294996@qq.com
3f91dbdcb043b46858ffb8a1b6f969f365bd5f78
36a1e3698421edc64f95e15c150538d958048cc4
/TE/01_Basics/11_pointers.c
a2d28ee2aa342cf30fcbc5feb276161e3de9e42b
[]
no_license
kazifarhan199/C-Language-Basics
687f9a38dbee0e4df7b838401393d387c1117219
bc981ed9974e397ce394c76a889d47099741ff3e
refs/heads/master
2022-11-19T23:10:34.638494
2019-08-25T07:27:54
2019-08-25T07:27:54
null
0
0
null
null
null
null
UTF-8
C
false
false
691
c
#include <iostream> int main() { // 'void' pointers mean we don't care for the datatyper we just want the address // void* pointer = 0; // void* pointer = NULL; // void* pointer = nullptr; int var = 8; int* ptr2 = &var; // if // int* a, b ; // "a" is a pointer but "b" is not a poinetr //We cant u...
[ "kazifarhan199@gmail.com" ]
kazifarhan199@gmail.com
b7ba3343388ac2b439afd484da319cfc9ac6b7cc
1bbb58d0ca2aadf33bfb6ec9ddbd917b342e005f
/GGO2016/Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Runtime_Serialization_Serializatio2904781384MethodDeclarations.h
d6acecb42577f80eca831c7579a00067e723b992
[]
no_license
MelvinPoppelaars/game-off-2016
2f00538ec4d42cf44d3eacc3e114bfa2f06a71f0
6c145b7c1853995f0c3eb46d92e25ec3670dd8a9
refs/heads/master
2020-06-14T07:58:16.082966
2016-11-30T20:08:52
2016-11-30T20:08:52
75,213,122
6
1
null
2016-11-30T18:02:19
2016-11-30T18:02:19
null
UTF-8
C
false
false
2,547
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_t2904781384; // System.Collections.ArrayList st...
[ "melvinpoppelaars@gmail.com" ]
melvinpoppelaars@gmail.com
1c3fa243217278f3f1b8f5c72e87b2c7f58ee7b5
84b44a0f5e84d2e6a27054171e79928fd6fe4d56
/components/esp_hw_support/port/esp32s2/mmu_psram.c
f72e88a9728be4891feb21dd3c39b4174abbe1f0
[ "Apache-2.0" ]
permissive
volca/esp-idf
98a608f46362923422dfa99a246350e2d197d50e
229ed084847455da5aeda1dfd17ad3b6ccadc9b0
refs/heads/master
2022-03-05T20:49:52.942413
2022-02-25T08:33:10
2022-02-25T08:33:10
174,945,940
0
0
Apache-2.0
2019-03-11T07:17:53
2019-03-11T07:17:52
null
UTF-8
C
false
false
9,537
c
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #include <sys/param.h> #include "esp_attr.h" #include "esp_log.h" #include "esp_private/mmu_psram.h" #include "esp32s2/rom/cache.h" #include "esp32s2/rom/ets_sys.h" #include "soc/cache_memory.h" #in...
[ "douyiwen@espressif.com" ]
douyiwen@espressif.com
203843664c044de3f952b5395f343ce0baaf8af2
1d8c4eddf50c811a8748df2241d7965a0f06561e
/src/who/who2.c
531dfb8b8f49f4f0af8cd399585f3e2912f2b102
[]
no_license
luliyucoordinate/play-linux
a05e47aad7b09afb9946c2cd744faf69a0460091
1e120ae3481da4a8482412aa19df46791d94571c
refs/heads/master
2020-05-15T09:22:21.825323
2019-05-02T02:04:23
2019-05-02T02:04:23
182,175,935
1
0
null
null
null
null
UTF-8
C
false
false
1,049
c
#include <stdio.h> #include <stdlib.h> #include <utmp.h> #include <fcntl.h> #include <unistd.h> #include <time.h> #define SHOWHOST void show_info(struct utmp* utbufp); void show_time(struct timeval* utimep); void show_info(struct utmp* utbufp) { printf("%-8.8s", utbufp->ut_name); printf(" "); printf("%-...
[ "luliyucoordinate@outlook.com" ]
luliyucoordinate@outlook.com
ca806bc20f81f1cbdaae0a43e8b38e53df28f488
fc7ff6160626dea852009c2d97fbdf451608020f
/2ºAno/2ºSemestre/SO/19-20/Teste/guiao5/5/ex5.c
79caa29142bfb874dc390b9c00f649a42c6bce61
[]
no_license
JorgeDPSilva/LCC
5b55a254a7346a5f9d4b3ea056988f83ad96c5ac
2f79b623a19bfe57e3607e2c751e6619a38d0de2
refs/heads/main
2023-08-19T07:17:32.521939
2021-09-27T14:20:38
2021-09-27T14:20:38
null
0
0
null
null
null
null
UTF-8
C
false
false
1,503
c
#include <unistd.h> #include <stdio.h> #include <sys/wait.h> int main(int argc, char* argv[]){ int pfd[2]; pipe(pfd); if(fork() == 0){ close(pfd[0]); dup2(pfd[1], 1); close(pfd[1]); execlp("grep", "grep", "-v", "^#", "/etc/passwd", NULL); perror("grep"); _e...
[ "ricardocruz244@gmail.com" ]
ricardocruz244@gmail.com
6a20b9956fde74650f3c201ee760412744afc9d9
5099e708628c84c22dafdaa15fba70a88cfdeebe
/examples/donnabad/dut_donnabad.c
d747c168f95b709970e1103d732fb49694e2922b
[ "MIT" ]
permissive
oreparaz/dudect
5b9b6eee5d68febe22eb9d717fe43a55efe7e782
bebf0cda74fcb448dc80ff47a7e73b632134cc93
refs/heads/master
2023-08-31T04:13:08.990753
2023-08-24T12:12:08
2023-08-24T12:12:08
63,608,731
167
25
MIT
2023-08-14T11:49:00
2016-07-18T14:14:01
C
UTF-8
C
false
false
1,175
c
#include <stdlib.h> #include <stdint.h> #include <stdio.h> #include <string.h> // memcmp #include "donna.h" #define DUDECT_IMPLEMENTATION #include "dudect.h" uint8_t do_one_computation(uint8_t *data) { uint8_t out[32] = {0}; const uint8_t secret[32] = {1,2,3}; uint8_t ret = 0; const uint8_t basepoint[32] = {9...
[ "noreply@github.com" ]
oreparaz.noreply@github.com
72fbb5df6c3d0792aefe2ebf95082b6bddf63ea5
b0e87d40b0ea7ca08c925c803d4a07392dfb40e3
/Project Phase 3/minijava.c
ad668c7012857ec64bf8a7aa6469dbba93b7284e
[]
no_license
syed-faraz97/-CC-106395-Spring-2021-Course-Repository-
681a06519d963114234625c8354058c1bed6ba47
13bb2b281fa6deb876210a799230128600e9f0c6
refs/heads/main
2023-04-06T13:30:50.151643
2021-04-25T09:54:02
2021-04-25T09:54:02
329,523,059
1
0
null
2021-02-11T22:20:02
2021-01-14T06:05:14
null
UTF-8
C
false
false
559
c
#include <stdio.h> #include "minijava.h" extern int yylex(); extern int yylineno; extern char* yytext; int main(void) { int ntoken, vtoken; ntoken = yylex(); while(ntoken){ printf("%d\n", ntoken); vtoken = yylex(); switch(ntoken){ case PROGRAM: case OPERATOR: case STRING: case NUMBER: case B...
[ "noreply@github.com" ]
syed-faraz97.noreply@github.com
2c6d52cdd32b1896d8ea9a5988002b7bbbe6da53
bc23cfd2ddd09d53fc6951e4e64763a327e4840e
/libft.h
35b23b49c95ed66b91bcb92a96e971caf170b081
[]
no_license
ealbert-42/Get_Next_Line
b1c7ed73eb95078fd7453241aecf004ce796b6c3
054a72c9ec20448b61ef38b20eceac28e7a4e484
refs/heads/master
2021-01-10T12:22:48.703900
2016-04-11T16:06:51
2016-04-11T16:06:51
49,478,750
0
0
null
null
null
null
UTF-8
C
false
false
4,250
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft.h :+: :+: :+: ...
[ "ealbert@student.42.fr" ]
ealbert@student.42.fr
938b9c221ceec5c5c652367f1ad7e9646a83690c
d697c2a020590ac6aa895516548ea922977ab4f7
/OOP/lab1-3/main.c
9ba9b6f395407a0aec39bb2adb38469cc3d28c30
[]
no_license
lakatosandrei/OOP
460f031246add5de6a9be19c263d5a9b18800237
166b0fabb6f9b0580b4958ba77e36550b1c69636
refs/heads/master
2021-01-15T18:14:11.871116
2015-04-23T08:15:00
2015-04-23T08:15:00
32,278,305
0
0
null
null
null
null
UTF-8
C
false
false
1,199
c
#include "domain/domain.h" int main(void) { part *partM; vector *newList; iterator *it; char *fname = "Potor"; char *lname = "Vasile"; int score[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; int *scoreP; int i; scoreP = score; partM = createPart(fname, lname, scoreP); printf("%s\n%s\n", getFName(partM), getLN...
[ "you@example.com" ]
you@example.com
ecb8c4822913efbdcac021f76eafd37487eb9f7e
9cf3b68775b6495c345f9a7b9122883c17d1a60c
/Hyeta_camtest/include/hw/hw_prm_mpu.h
48a0940385d663b479e48d3946fcd49e39caddbb
[]
no_license
huigzi/moisture-analyser
c0f99d98e7653089f0c3366898ed3cb78f3aad09
45e791d73111de64380e20684b9d3d6ebe44adf9
refs/heads/master
2021-07-07T15:58:48.698881
2017-09-29T07:09:34
2017-09-29T07:09:34
105,248,788
1
1
null
null
null
null
UTF-8
C
false
false
7,408
h
/** * @Component: PRM * * @Filename: ../../CredDataBase/prcmCRED/prm_mpu_cred.h * ============================================================================ */ /* * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ */ /* * Redistribution and use in source and binary for...
[ "tysh0030@outlook.com" ]
tysh0030@outlook.com
2cd1ea0abc8f0e05a25fa2bf8537fff49869b504
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/sdktools/pview/explode.h
39ec93eecb2ba374c14e9aea6c262a944a8b4189
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C
false
false
4,801
h
#define PXPLODEDLG 200 #define PXPLODE_PROCESS_ID 202 #define PXPLODE_PRIORITY_NORMAL 207 #define PXPLODE_PRIORITY_HIGH 208 #define PXPLODE_PRIORITY_IDL 206 #define PXPLODE_IMAGENAME 209 #define PXPLODE_TOTALIMAGE_COMMIT 212 #define PXPLODE_IMAGE_NOACCESS ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
f32017250c69b1df56fc4973cb38017042bd0785
9665eac554dec5215dbfedd1a9b93184882f959c
/DatasetManager/DatasetManager.C
f96db92be8c199accd70c851f4e38a5b37717e72
[]
no_license
GonzalezFJR/AnalyserPAF
ad1b4a447ad5533adb6482fc8ef4e8d6e71db535
518d1d5b2b13b15efbc001d46e51fc39824cba81
refs/heads/master
2021-01-09T06:09:44.592210
2017-03-08T09:24:23
2017-03-08T09:24:23
80,929,103
1
3
null
2017-03-21T10:12:53
2017-02-04T15:43:00
C
UTF-8
C
false
false
22,354
c
/////////////////////////////////////////////////////////////////////// // // FILE: DatasetManager.C // CLASS: DatasetManager // AUTHOR: I. Gonzalez Caballero // DATE: January, 2011 // /////////////////////////////////////////////////////////////////////// #include "DatasetManager.h" #include "TSystem.h" #in...
[ "juan.rodrigo.gonzalez.fernandez@cern.ch" ]
juan.rodrigo.gonzalez.fernandez@cern.ch
bc8aa02592cf233b2898c065e18dc0743c772c66
8fa8420de6720ed4e9e95a553af80213ea77fe16
/Redis-3.0/src/Win32_Interop/Win32_FDAPI.h
64cba17ad47d865c3d423a98d4e8c99e23c589d1
[]
no_license
isliulin/ServerCode
4861f27c4d397beedfed967365575ff62d88872a
2c95b718df36ba50eac2e835cc67351906d64350
refs/heads/master
2023-03-21T06:02:52.647561
2018-11-19T15:07:46
2018-11-19T15:07:46
null
0
0
null
null
null
null
UTF-8
C
false
false
10,531
h
/* * Copyright (c), Microsoft Open Technologies, Inc. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - Redistributions of source code must retain the above copyright notice, * this list...
[ "fanxiangdong7@126.com" ]
fanxiangdong7@126.com
140c2df5cd1222addb75f5dd1aaa23ceadeabeab
20d1c4a5f4d5a7dd4c6e2276b91e16f29f12be41
/semestr3/strings/ravstr.c
42068dd8efbccfc9e88baf9ba744d67632f7b033
[]
no_license
h-bekker/Kurs1-2
1147a63e62fe3920a14f2a161dd5bb58ceebbb79
b4a84f0ae96bf665f7fe79db305cc7e6e9fd6092
refs/heads/master
2021-08-23T12:42:33.709712
2017-12-04T23:24:36
2017-12-04T23:24:36
113,106,026
0
0
null
null
null
null
UTF-8
C
false
false
307
c
#include <stdio.h> #include <string.h> int main(void) { char str[100],dst[100]; if (scanf("%99s%99s",str,dst)==2) { if (strcmp(str,dst)==0) printf("Strings are equal\n"); else printf("Strings aren't equal\n"); } else printf("Error!\n"); printf("%d\n",strcmp(str,dst)); return 0; }
[ "root@localhost.localdomain" ]
root@localhost.localdomain
39892ec1cff267c15107012d63295541a29ca324
7578772afef5275e8d1edf5c9e6b34fc0368f492
/daemon/skill_wiz/spell/dengxian.c
2a33d274ac67108f4d6e063d9095844bc8cc67e1
[]
no_license
jackyueq/xyj2006
3b899323c4b891b57fa25d671527edea7f4fccd2
2d0681c32c6bb880c21a43aca127f5d4af1000a0
refs/heads/master
2020-04-06T04:25:29.851538
2015-03-18T07:22:28
2015-03-18T07:22:28
32,443,903
3
5
null
null
null
null
GB18030
C
false
false
538
c
// dengxian.c 【登仙大法】 inherit SKILL; int valid_enable(string usage) { return usage=="spells"; } int valid_learn(object me) { if( (int)me->query_skill("spells", 1) < 10 || (int)me->query_skill("spells", 1) <= (int)me->query_skill("dengxian", 1) ) return notify_fail("你的法术修为还不够高深,无法学习...
[ "jackyueq@gmail.com" ]
jackyueq@gmail.com
803ae2c8a0679fc36f86f6ac98109c161374cab7
0f4d661c75c209925373ca2f0226078356e1f911
/Assignment01_150576E_MuhammadNurhidayat/Assignment01Data/Vec2D.h
7206cfcc0fa08932acd8a12da3279b4b2431b55e
[]
no_license
hidtastic143/Assignment01
7955133b9c227e6d4ecf9e8fab9a24d6d9b8836a
b3ba414e7f92afa563c57b1afc6b3dbec8f929e7
refs/heads/master
2021-01-10T10:02:26.697989
2015-12-18T14:36:00
2015-12-18T14:36:00
47,906,426
0
0
null
null
null
null
UTF-8
C
false
false
736
h
/*********************************************************************************************/ /*! \file Vec2D.h \author Muhammad Nurhidayat Bin Suderman \par 150576E@mymail.nyp.edu.sg \brief Vec2D is responsible for the coordinates of Dweller */ /***********************************************************************...
[ "hidhandsome143@gmail.com" ]
hidhandsome143@gmail.com
3feb3cc50721d68ab7c9963c3a4c80ce0266c90b
e3d930b7f4f38634eb7dca21411d5499705bd989
/Project/mat3.h
558a7765458419ae5c4eb17344ebf8cbfcf1f3be
[]
no_license
vchizhov/SaarlandRayTracer
afba2164785fdbfc3db508e304a25b700aac5827
bb0173327e0c7e01205fa4246f76199b8c2e1030
refs/heads/master
2021-07-25T08:17:23.178565
2017-11-06T19:53:42
2017-11-06T19:53:42
109,516,227
0
0
null
null
null
null
UTF-8
C
false
false
865
h
#pragma once #include "vec3.h" struct Mat3 { union { Vec3 e[3]; struct { Vec3 r1, r2, r3; }; }; Mat3() {} Mat3(float s) : r1(s), r2(s), r3(s) {} Mat3(float e11, float e12, float e13, float e21, float e22, float e23, float e31, float e32, float e33) : r1(e11,e12,e13), r2(e21, e22, e23), r3(e31...
[ "vassillenchizhov@gmail.com" ]
vassillenchizhov@gmail.com
6148afbe26509be56a214029d2433cb819b0a744
b7a32a77d2f989fe562f2adc2c5776544e6fbd27
/tracers/qemu/qemu/hw/s390x/sclp.c
a061b49f191d0ed8a820c59b9fc48e0b6b4c1bf4
[ "MIT", "GPL-1.0-or-later", "LGPL-2.1-only", "LGPL-2.0-or-later", "LGPL-2.1-or-later", "LicenseRef-scancode-other-copyleft", "GPL-2.0-only", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
trusted-ws/qira
22f058502e22f282eb3b6974f0400e2bd521a1c3
bfa04c0089cd8c81a5cd96e1bd0c97fcf7355d97
refs/heads/master
2022-11-13T08:12:27.083485
2020-06-29T00:19:45
2020-06-29T00:19:45
266,877,987
0
0
MIT
2020-05-25T20:52:45
2020-05-25T20:52:44
null
UTF-8
C
false
false
20,808
c
/* * SCLP Support * * Copyright IBM, Corp. 2012 * * Authors: * Christian Borntraeger <borntraeger@de.ibm.com> * Heinz Graalfs <graalfs@linux.vnet.ibm.com> * * This work is licensed under the terms of the GNU GPL, version 2 or (at your * option) any later version. See the COPYING file in the top-level direc...
[ "eth0.db0@gmail.com" ]
eth0.db0@gmail.com
d4dbb4e465fb6a65d033c16e474471e95bc3c800
c5d4a0498e0632ffa9d08a748b1ffd898ed222a8
/src/kernel/h/libs/memory.h
4b1edbb348004fefc4a85d8d6c36f0484c8a7b41
[]
no_license
BackupGGCode/arcaneos
74da1b30e19c55ae366084b2b49b4695a9819f07
32f70b821d867c166cb6c001414d6d3e3ac0e3b4
refs/heads/master
2016-09-06T13:27:04.955486
2015-04-29T12:23:45
2015-04-29T12:23:45
34,781,801
0
0
null
null
null
null
UTF-8
C
false
false
361
h
#ifndef _STRING_H #define _STRING_H extern unsigned char *memcpy(unsigned char *dest, const unsigned char *src, int count); extern unsigned char *memset(unsigned char *dest, unsigned char val, int count); extern unsigned short *memsetw(unsigned short *dest, unsigned short val, int count); extern char memcmp(char* stra...
[ "turbodog10@yahoo.co.uk@453dd1c8-2af5-11df-9f82-5b465c4f9b88" ]
turbodog10@yahoo.co.uk@453dd1c8-2af5-11df-9f82-5b465c4f9b88
479e2a6a0313a839e6bedca82ef6987a7bc230cb
3d0e2d4bf865833c5304792a126801d98f000f40
/src/field/poketch/poketch_main.h
4699bdfdfa6e1a2d59434b96223d219a0131da38
[]
no_license
XLuma/retsam_00jupc
86311fa2927798e45070f9922046ba5e5a9539ae
9859bc2f4b5bedcadc791f39ce1e7c77172194e7
refs/heads/main
2023-07-25T04:24:49.694267
2021-07-30T23:08:09
2021-07-30T23:08:09
393,130,605
0
0
null
2021-08-05T17:56:40
2021-08-05T17:56:39
null
SHIFT_JIS
C
false
false
1,923
h
//============================================================================================ /** * @file poketch_main.h * @bfief ポケッチ(メイン) 内部ヘッダ * @author taya GAME FREAK inc. */ //============================================================================================ #ifndef _POKETCH_MAIN_H_ #define _POKETC...
[ "anon@4chan.org" ]
anon@4chan.org
03af97ff7082d47046cb2a1c3918a298cc684871
db557860a0b89f7987dd4f1c569a1622bb200a46
/sources/print2.c
bd8e68fbedd7dcfbc09ad64515b8749af62e4e94
[]
no_license
NuneTadevosyan/printf
fc8878405b2a84d2f9b6bd1965b7ec754fd8a110
dadbde7ebd36fed4337ca9b583667d32d9ff55a0
refs/heads/master
2023-05-02T06:34:58.486677
2021-05-24T07:05:27
2021-05-24T07:05:27
370,259,021
0
0
null
null
null
null
UTF-8
C
false
false
2,313
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* print2.c :+: :+: :+: ...
[ "ntadevos@c1r11s3.42yerevan.am" ]
ntadevos@c1r11s3.42yerevan.am
dd9a8dea96f14cc0a3e6903658f1a564e409f0e1
8f5e1867d472094829934bb7e9785b6bda6114f2
/sdk/ledCtrl/src/ByProtocol.c
69fbdd83f9db8c5ba316a19bf32ec567efc8ffeb
[]
no_license
isliulin/lcs100
7397ac741264fff913b29fb63e03c91b1015e228
30d752e9e8ce2bb4a2869e5faf08283b8783f894
refs/heads/master
2021-05-26T22:39:53.579522
2013-05-22T08:20:47
2013-05-22T08:20:47
null
0
0
null
null
null
null
GB18030
C
false
false
4,356
c
#include "ByProtocol.h" #include <stdio.h> #include <assert.h> #include <string.h> #define MAX_CONTEXT_SIZE 32 #define PAD_SIZE 3 #define KEY_HEADER 0xA3 #ifdef __C51__ #define VAR_ATTR xdata #else #define VAR_ATTR #endif #undef LENGTH_CHECK /* 一种基于消息头的不定长度的协议解析函数,用于总数据长度小于255个字节 头部 : 0xA3 数据总长度 : 1 Bytes 长度的补码 :...
[ "wangchen2011@gmail.com" ]
wangchen2011@gmail.com
bae6789b82eaec6db114115b2ee8c61af78dbe50
5dd702bb063987de8fc48be92b44143a286cedc6
/gaialib2/astrio.c
b24ee635995a69cf6a4e9328d26a13328c734a8a
[ "MIT" ]
permissive
samuelyeewl/gaia2read
f3196726a2c47886925c819e09c3464d7e53cb6f
4b472d90b7102a69e941f7c7169251fb86dc475e
refs/heads/master
2020-04-11T06:46:52.766869
2018-12-19T17:57:53
2018-12-19T17:57:53
161,591,633
1
0
MIT
2018-12-13T06:04:11
2018-12-13T06:04:09
null
UTF-8
C
false
false
8,247
c
#include "astrio.h" #include "astromath.h" #include "mmath.h" #include "gaia2ret.h" #include <string.h> #include <time.h> /* ========================================================================= */ /* converts degrees to sexagesimal representation (hh:mm:ss.ss) */ void deg2hms( real deg, char* out, size_t buf_l...
[ "noreply@github.com" ]
samuelyeewl.noreply@github.com
2a0883fef38abb4c9064494ee8b1147f98e176ac
7a029fada26b425703273d0d1e37d8b06b618bd2
/sockets/Server.c
346187f741e79a7e206f9dd6c498e8d11bb505d9
[]
no_license
NicoAleC/AppRedes
b673b2e56d46b96bff657deba7502cd2fbc4ca46
74a75b09bef710bf7b740f200a4c7c7ecb53ef6e
refs/heads/master
2020-04-07T14:11:00.167745
2018-12-20T16:30:17
2018-12-20T16:30:17
158,436,875
0
0
null
null
null
null
UTF-8
C
false
false
3,480
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include "Cola.c" #define PORT 4950 #define TAMANO 1024 void enviaratodos(int j, int i, int sockfd, int nbytes_recvd, fd_set ...
[ "chincholax@gmail.com" ]
chincholax@gmail.com
6cab69b18cf0c48a2173903e13a3d3fcc57006e2
ecdde5a8f6922c3c6868db18da086d3d7ae1a3ff
/src/main.c
7f23b14ac954b9c369d9eedca6c1128ab1ce9355
[]
no_license
xavor92/blinky_unity
b92b9370bd88788d032f3a64f72cda4a39d7dcce
5de55b5e8b20e35d15f180d631197d74805a48d2
refs/heads/master
2020-09-22T16:51:13.785374
2016-08-22T19:29:24
2016-08-22T19:29:24
66,211,054
0
0
null
null
null
null
UTF-8
C
false
false
3,791
c
// // This file is part of the GNU ARM Eclipse distribution. // Copyright (c) 2014 Liviu Ionescu. // // ---------------------------------------------------------------------------- #include <stdio.h> #include <stdlib.h> #include "diag/Trace.h" #include "Timer.h" #include "BlinkLed.h" // ----------------------------...
[ "no@one.com" ]
no@one.com
764dc1118a06f6bdfdb63d09ca032cef0d55d3d5
a6b4d21e3744f3d3d9ec99c2146362b3a751a3e7
/UART_1_1/isim/test_usart_test_usart_sch_tb_isim_par.exe.sim/simprims_ver/m_00000000000648012491_3151998091.c
8cbd28dadf87f3869bef83184d745c9db86bcf2e
[]
no_license
yisea123/BLDC_FPGA
ab4a8c9d037a6f0019f4a2c53dae601a3fd26c5a
eda204d65fb87a44420c290a364f044c1aa63517
refs/heads/master
2020-05-04T19:53:29.278334
2017-11-03T11:23:04
2017-11-03T11:23:04
null
0
0
null
null
null
null
UTF-8
C
false
false
4,412
c
/**********************************************************************/ /* ____ ____ */ /* / /\/ / */ /* /___/ \ / */ /* \ \ \/ ...
[ "chaitanya1445@gmail.com" ]
chaitanya1445@gmail.com
eb9252e59db21fa0b65d33ae7bd2d9046e34c482
5bfe1a837df09531329b6064fb43cc63b9b4dbde
/p2/led_real_v6/palettes.h
f0922761e97c53c2c69c83e128cd31d63d4f3dfe
[]
no_license
nathan-b/creative_engineering_class
581ef3a780ba3a2d255e0ee32388899852a35966
729ed2f7d066a201bf1b252f5901012751fa578a
refs/heads/main
2023-03-01T01:10:52.075923
2021-02-10T17:59:09
2021-02-10T17:59:09
337,802,536
0
0
null
null
null
null
UTF-8
C
false
false
3,506
h
// A mostly red palette with green accents and white trim. // "CRGB::Gray" is used as white to keep the brightness more uniform. const TProgmemRGBPalette16 RedGreenWhite_p FL_PROGMEM = { CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Gray, C...
[ "nathan.baker@sysdig.com" ]
nathan.baker@sysdig.com
27425e7aebc373f00bd1293baa2a70e345ba29c2
5cf4e60bce6165f296fef3c1961567df3b36a4c8
/multipliers_8/source_c/mul8_211.c
317ae930be9a7ffbdabd898446577b7ada60248e
[ "MIT" ]
permissive
mfkiwl/evoapprox8b
1b19476f82fcb979598bd019fbfeecb20a4f9c5f
ad6bb819bed0c641e26c882f06796efcfe406960
refs/heads/master
2021-10-10T19:59:44.757571
2019-01-16T12:40:35
2019-01-16T12:40:35
null
0
0
null
null
null
null
UTF-8
C
false
false
10,694
c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of appr...
[ "imrazek@fit.vutbr.cz" ]
imrazek@fit.vutbr.cz
30ced02b22ab1e7fccdc6e204facc7cc0fe5d4d2
180339981ebdb18afd718760be046329ded7ea66
/examples/3d_example_2/main.c
f6dd445fb725e020e0ab8dc9f7a5e9de058fe68a
[ "BSD-3-Clause" ]
permissive
hsk/gendev-0.5.0
33cce1b224474d5c6e168b9ae34c9b5acca14791
96635f1cb836f1882920119930582fb145eea897
refs/heads/main
2023-04-12T20:09:46.199345
2021-04-27T16:11:41
2021-04-27T16:11:41
362,175,207
1
0
null
null
null
null
UTF-8
C
false
false
9,898
c
#include "genesis.h" #include "meshs.h" #define MAX_POINTS 256 #define DEBUG 0 Vect3D_f16 pts_3D[MAX_POINTS]; Vect2D_s16 pts_2D[MAX_POINTS]; #define NUM_STARS 64 Vect3D_f16 stars_3D[MAX_POINTS]; Vect3D_f16 stars_t3D[MAX_POINTS]; Vect2D_u16 stars_t2D[MAX_POINTS]; extern Mat3D_f16 MatInv; extern Mat3D_f16 Mat; //...
[ "sakurai777@gmail.com" ]
sakurai777@gmail.com
f9c8dbb2dbe35de7a1618db529088c149f6d93a8
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/islands/elf/obj/fan.c
986f42a42b33e3cae5e3dd3acb310678a27d67de
[ "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
3,812
c
// fancy fan for blade songstress #include <std.h> inherit "/d/common/obj/weapon/fan"; void create() { ::create(); set_id(({"fan","bladed fan","fan of the elves"})); set_name("%^RESET%^%^MAGENTA%^elven fan%^RESET%^"); set_obvious_short("%^RESET%^%^MAGENTA%^A bl%^CYAN%^a%^MAGENTA%^ded fan%^RESET%^"); se...
[ "law@shadowgate.org" ]
law@shadowgate.org
369a3291f013ca425ed1df016892f2bb6dd0d17a
0f708bd25fa8e00c3891110cacb60a7c62c43529
/1ft_year/Projects/Unix_System_Programming/Tetris/src/ncurses/next_tetris.c
f3fb515c718c5dd843921bb729bd5530e03effe8
[]
no_license
I-dev-code/EPITECH
82fe15f4dfeef9e9d9f610b76c5641262612e992
f67cb3ed0b43590a408bf2b5159a339c64ecb49b
refs/heads/master
2022-12-05T23:13:16.224086
2020-09-02T12:35:28
2020-09-02T12:35:28
273,364,321
0
0
null
null
null
null
UTF-8
C
false
false
983
c
/* ** EPITECH PROJECT, 2018 ** next_tetris.c ** File description: ** next_tetris.c */ #include "my.h" void next_top(void) { int x = 0; int y = 150; int a = 0; mvprintw(x, y, "/"); while (a < 20) { mvprintw(x, y + 1, "-"); y++; a++; } mvprintw(x, y, "\\"); } void n...
[ "lucas.dos-santos@epitech.eu" ]
lucas.dos-santos@epitech.eu
6fcf112786c60e542ad6bd909884efeb88b4e2b2
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/e6fdb7c4-fc7a-48f5-9ab3-daf17488a47a.c
81252a9b32bf040e624f42c9842130a8dc0ad9bd
[]
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
535
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=142; int k; int l; k = 53; l = 64; k = i/j; l = i%j; l = l%j; i = j-j*i; //variables /* START VULNERABILITY */ int a; long b[27]; long c[89]; a = 0; while (b[( a - 1 )] != 0) { a++;...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
e2ed506e204a84290b75496913c12df2b04947e6
d44ee704ba062586e40d8fd0d6095b197fe6f07c
/frameworks/cocos2d-x/external/lua/sproto/sproto.c
902afe10b95e8ba90aa30e6a2f330a6a5f07e65f
[ "MIT" ]
permissive
wsltsg1988/spine364
d78542ab43fb312e258fbc6d74827ba93724797f
14e8765bc3f8da94b0f9ec0417f407eb18687970
refs/heads/master
2021-01-01T15:43:31.863562
2017-07-19T07:40:34
2017-07-19T07:40:34
97,685,936
0
0
null
null
null
null
UTF-8
C
false
false
34,867
c
#include <stdlib.h> #include <string.h> #include <stdio.h> #include <assert.h> #include "msvcint.h" #include "sproto.h" #define SPROTO_TARRAY 0x80 #define CHUNK_SIZE 1000 #define SIZEOF_LENGTH 4 #define SIZEOF_HEADER 2 #define SIZEOF_FIELD 2 struct field { int tag; int type; const char * name; struct...
[ "liangtao@3pjgames.com" ]
liangtao@3pjgames.com
6f6ad022f25d105171a6a67e913908eacd9f13d1
8613ec7f381a6683ae24b54fb2fb2ac24556ad0b
/150~159/ABC156/digit.c
57c4014113c062e396f9bc5e0a605945efffdbd1
[]
no_license
Forest-Y/AtCoder
787aa3c7dc4d999a71661465349428ba60eb2f16
f97209da3743026920fb4a89fc0e4d42b3d5e277
refs/heads/master
2023-08-25T13:31:46.062197
2021-10-29T12:54:24
2021-10-29T12:54:24
301,642,072
0
0
null
null
null
null
UTF-8
C
false
false
255
c
#include<stdio.h> int calc_digit(int n, int k){ int cnt = 0; while(n != 0){ cnt ++; n /= k; } return cnt; } int main(void){ int n, k; scanf("%d""%d", &n, &k); printf("%d\n", calc_digit(n, k)); return 0; }
[ "yuuya15009@gmail.com" ]
yuuya15009@gmail.com
551bbe8d4afaedb9fb49fdb15cea807cd4921cd6
ee73fdcceb1094108c0a9e209535d7915e2e33b3
/Green openETCS Non-Vital Demonstrator/Source Code/Source Code ETCS Onboard Unit System/Generated_Code/KCG-ERSA/Encode_NID_PACKET_TM_TrainToTrack.h
3c0fa63f6b1630bf1c88eeb5ee1defe03d260ebd
[]
no_license
stefan-karg/srcAndBinary
d912b03c44d75b807dc4f9b67938dde73dd52ccf
5e0a11c72a20ca8c1386c55d0cd3e4c7463fb600
refs/heads/master
2020-12-31T03:36:26.071772
2015-12-07T14:57:47
2015-12-07T15:00:53
47,557,434
0
0
null
2015-12-07T14:36:45
2015-12-07T14:36:45
null
UTF-8
C
false
false
1,076
h
/* $**************** KCG Version 6.4 (build i21) **************** ** Command: kcg64.exe -config R:/Repositories/modeling/model/Scade/System/OBU_PreIntegrations/Demonstrators/ERSA_EVC_Testrunner/config.txt ** Generation date: 2015-12-07T14:47:37 *************************************************************$ */ #ifndef _...
[ "info@stefankarg-it.de" ]
info@stefankarg-it.de
539c07aed83c971cf8e71b0ba1e351e3ad7bfd34
70a4bdadcf5844d4005b62a3c1576c855abfeb08
/multisim/cx70v56/adr_c.h
a2ca2043fcbed5e2b11d7f68eeb23da65a4e78ec
[]
no_license
KJhellico/sk65
8ed1f807b92c8393a3e32425a8740d72d4ea22ed
602a7844e62784b75331f93b0f199ae73b786486
refs/heads/master
2021-01-19T22:10:56.696349
2011-01-09T20:01:54
2011-01-09T20:01:54
32,673,537
1
0
null
null
null
null
UTF-8
C
false
false
1,114
h
#define SIM_Access_Function_ADR 0xA116C314 #define memcpy_ADR 0xA16EEC5C #define memset_ADR 0xA16EEDB8 #define malloc_ADR 0xA0820F98 #define Set_LAI_ADR 0xA12407BB #define RegisterInNetwork_ADR 0xA0BA514F #define Net_Search_ADR 0xA0BA51A9...
[ "KJhellico@users.noreply.github.com" ]
KJhellico@users.noreply.github.com
74162e9db89e20f64be548551c264c68dded7241
c6cfb0e3a94426f8574d980776599421761a72d1
/Example/Pods/Headers/Public/libspatialite/geos/geomgraph/EdgeIntersection.h
a318d1669fb20ab5ef74b4c895c47ee5eb61db3c
[ "MIT" ]
permissive
sera4am/libspatialite-ios
aa019e39d5763a6c2c52f687fe7368a79f4a2050
d398281204dd9fcface9c688ad3695f7740056c5
refs/heads/master
2022-11-15T03:37:53.888315
2020-07-09T06:52:39
2020-07-09T06:52:39
277,992,912
1
0
null
null
null
null
UTF-8
C
false
false
62
h
../../../../../../../include/geos/geomgraph/EdgeIntersection.h
[ "takeo@kazama.biz" ]
takeo@kazama.biz
338eb85947d6cd111c3a3b4a17abec194d08e960
c6389f9b11fd40ee9295f4e88a14a8057e294e4f
/components/tcp_transport/include/esp_transport.h
8e138464e6d9fa0de3f584ecdf8dd4624e6804b5
[ "MIT" ]
permissive
ghsecuritylab/N14
987ebb27cfbd7ebf84deadeb09a480aa51be34c7
76bc595e3face0903436e48165f31724e4d4532a
refs/heads/master
2021-02-28T19:46:09.834253
2019-11-19T14:36:58
2019-11-19T14:36:58
245,728,464
0
0
MIT
2020-03-08T00:40:31
2020-03-08T00:40:30
null
UTF-8
C
false
false
9,526
h
// Copyright 2015-2018 Espressif Systems (Shanghai) PTE LTD // // 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 require...
[ "qitas@qitas.cn" ]
qitas@qitas.cn
c67d3d58dabeaeae96f5f5363bad34f2ddd073ec
241f24e6a837081fd2f3c574c613cfd0b0ab4fb9
/usr.lib/libpc/SCCS/s.IOSYNC.c
673ae34eb8be990d610b74cc9c04eeee06227a1f
[]
no_license
b4/4.3BSD-Quasijarus
9474549f02d468f847adb58c797af650f3b803b9
2e0a87cbd51f1c47d04f3c57f07f6d9e1aa8ec1b
refs/heads/master
2021-01-22T20:07:46.920215
2017-03-17T04:39:43
2017-03-17T04:39:43
85,271,248
1
0
null
2017-03-17T04:36:05
2017-03-17T04:36:05
null
UTF-8
C
false
false
2,939
c
h08327 s 00004/00004/00060 d D 1.5 81/06/10 00:38:14 mckusic 6 5 c move the text of error messages from ERROR to the functions c which generate them. e s 00001/00001/00063 d D 1.4 81/03/07 15:57:17 mckusic 5 4 c merge in onyx changes e s 00021/00012/00043 d D 1.3 81/01/26 12:36:19 mckusic 4 2 c append a ne...
[ "abs@absd.org" ]
abs@absd.org
59aeda5ba4d60f43f53f1e2a2ed7ba05e3b8be0f
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/mn10300/unit-asb2305/pci-irq.c
d698671f9affdfe208777dbea4ff4d8afdf105aa
[]
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
163
c
void __init pcibios_irq_init(void) void __init pcibios_fixup_irqs(void) void __init pcibios_penalize_isa_irq(int irq) void pcibios_enable_irq(struct pci_dev *dev)
[ "weilaidb@localhost.localdomain" ]
weilaidb@localhost.localdomain
ac70554fb88d1fb54e875b25213b4ac47f7b5a74
01dd77ae2a795ad40ed985d5fa3ee16bcef143da
/HW1/HW1.c
ee26f43d7d60874224e55d26f0b7c2ca42330533
[]
no_license
imeunu/C_Programming
4c064a6164cd8ce55e216e4dc07193f2a23eb665
e93e70db469551d452c7f8ac688b43896a681d37
refs/heads/main
2023-06-08T18:35:11.360191
2021-07-05T15:46:39
2021-07-05T15:46:39
357,457,287
0
0
null
null
null
null
UTF-8
C
false
false
1,872
c
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int age, d, price=0 ; //나이는 age, 거리는 d, 추가요금은 p printf("나이를 입력하시오: "); scanf("%d", &age); //나이 입력 받기 printf("이용한 거리 (km)를 입력하시오: "); scanf("%d", &d); //거리입력받기 if (d > 10 && d <= ...
[ "noreply@github.com" ]
imeunu.noreply@github.com
9b08a0ff001f4408300e721278730bd6385daaba
c425afb8bb6b182168fd4c3a46c9b334f4740e60
/d/binghuo/jiangmian2.c
18f8e1bcd6b9dedb2d6613b5e765fbef6beaec58
[]
no_license
fluffos/nt7
ceef82b2465cf322549c7ece6ce757eaa8ec31ff
52727f5a4266b14f1796c2aa297ca645ca07282a
refs/heads/main
2023-06-17T10:07:33.000534
2021-07-15T11:15:05
2021-07-15T11:15:05
308,148,401
9
9
null
2021-06-28T14:11:57
2020-10-28T21:45:40
C
UTF-8
C
false
false
546
c
// Room: /binghuo/jiangmian2.c // Date: Oct.28 1999 by Lonely inherit ROOM; void create() { set("short", "钱塘江面"); set("long", @LONG 江船穿波越浪下驶。半个多时辰之后,上涌的潮水反退出海,顺 风顺水,舟行更远。远远望见钱塘江口的东海之中,有个荒凉小岛, 山石嶙峋,向无人居。那就是王盘山岛。 LONG ); set("no_sleep_room",1); set("outdoors", "wangpan"); set("no...
[ "i@oiuv.cn" ]
i@oiuv.cn
6d58502ca6ce02323b3da64f8756cb148bfdccde
c00d5e9f15e94b9455db012fc4a5aa239551c031
/cobacoba.c
f2a16016aa2bd5552529fe6c2378a764e4903e20
[]
no_license
murakumo512/Belajar-C
bbc62db6ed55c574b237bba749356b52faefc417
7effa5c74fdee959b4cfbded00da1f9341e3442a
refs/heads/master
2022-03-08T07:02:05.956692
2019-09-08T03:54:10
2019-09-08T03:54:10
null
0
0
null
null
null
null
UTF-8
C
false
false
389
c
#include <stdio.h> #include <stdlib.h> void tambah(float nila[100], int *count){ float data; print("nilai: ");scanf("%f",&data); *count=*count+1; nilai(*count)=data; printf("Data nilai berhasil dimasukkan") } void lihat(float nilai[100],int count){ int i; for(i=0;<=count;i++){ printf("nilai ke ...
[ "noreply@github.com" ]
murakumo512.noreply@github.com
516e52da5d5c144b5cf4faf96e5e34b2a6334f7c
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE122_Heap_Based_Buffer_Overflow/s09/CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_63a.c
157ba389b39ef960bf21912abc3cba089b09959c
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C
false
false
2,763
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_63a.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_CWE806.label.xml Template File: sources-sink-63a.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Initialize ...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
9fba28bb578a5fca18a6b92ad409e81780328e23
03e5e0950c348229745870b635a2fcff3b66d81a
/grain_acc.c
bf241af6b7f54d9dd3ba0182a25feff4f439fcc7
[]
no_license
ddeuel-zz/CS205
280d4878196afe5f2e0efedab4539ba85d25f16b
54f4ef85867092b5c31f07920bd6fc74b7c5365f
refs/heads/master
2022-01-11T17:12:44.357389
2019-05-08T16:45:13
2019-05-08T16:45:13
null
0
0
null
null
null
null
UTF-8
C
false
false
8,096
c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <math.h> // Includes `M_PI` #include "timing.h" #include "curand.h" #include "openacc.h" #define k_B (1.38065e-23) // Boltzmann constant in [J/K] #define stickcoeff 1 // Sticky coefficient in [0,1]; defines how likely particle t...
[ "drakedeuel@college.harvard.edu" ]
drakedeuel@college.harvard.edu
5a362d7599667552693741422befe9ef917a4003
d49b8536d996a81fd2a356f2ccd850abd4447217
/VirusPack/Urxbot.sKull-Reptile.Mix.GP/Urxbot.sKull-Reptile.Mix.GP/configs.h
2a8c6fbac7c957f050187095f7fc4c2191aaeb56
[]
no_license
JonnyBanana/botnets
28a90ab80f973478d54579f3d3eadc5feb33ff77
995b9c20aca5de0ae585ae17780a31e8bdfd9844
refs/heads/master
2021-07-01T01:51:01.211451
2020-10-22T23:14:57
2020-10-22T23:14:57
148,392,362
9
5
null
null
null
null
UTF-8
C
false
false
2,837
h
// bot configuration (generic) - doesn't need to be encrypted int port = 6668; // server port int port2 = 6667; // backup server port int socks4port = 1337; // Port # for sock4 daemon to run on - CHANGE THIS!!! int tftpport = 8082; // Port # for tftp daemon to run on int httpport = 8083; // Port # fo...
[ "mstr.be832920@gmail.com" ]
mstr.be832920@gmail.com
a566eb5afef4bc0f145cf5df16087a2e838fd28e
f79ef81e6e4e989ed14ed0283a9737f731101aab
/Unix Family/Linux.lrk.e/ssh-2.0.13/include/sshunixeloop.h
7309ab462730b67633c6b3499884e56e6cc24dfb
[ "MIT", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
TheWover/Family
9d5597eda68aeee5e99de993176b6bd1366b57f1
f3ed1713c6b71823d8236b80148b60982dd906e1
refs/heads/master
2020-09-11T15:11:21.601776
2019-10-30T04:33:43
2019-10-30T04:33:43
222,106,609
3
4
MIT
2019-11-16T13:54:02
2019-11-16T13:54:01
null
UTF-8
C
false
false
6,171
h
/* sshunixeloop.h Author: Tatu Ylonen <ylo@ssh.fi> Antti Huima <huima@ssh.fi> Tero Kivinen <kivinen@ssh.fi> Copyright (c) 1996-1998 SSH Communications Security, Finland All rights reserved Unix-specific event loop interface. These functions are not available on all systems. */ #ifndef SSHUNIXELOOP_H #define SS...
[ "57078196+vxunderground@users.noreply.github.com" ]
57078196+vxunderground@users.noreply.github.com
a00faae2aaa3522c8ba92dbfd5be61b3580e0e33
9aebe5b1ef911d15ea73f64c70a5a3bcf1912af3
/conman.h
d0c1993a71b6c2753b4a6360d0d62104eb455914
[]
no_license
jiangpinghan/MPTCP-double-proxy
287b7bc2b58844f19f0824e04181c5ce7e0aee24
db60698c1905388c83e1ef7a77b54d1b04042313
refs/heads/master
2023-06-25T05:26:53.751778
2023-06-09T03:29:58
2023-06-09T03:29:58
262,192,311
0
1
null
null
null
null
UTF-8
C
false
false
5,560
h
//***************************************************** //***************************************************** // // conman.h // Project: mptcp_proxy // //***************************************************** //***************************************************** // // GEORG HAMPEL - Bell Labs/NJ/USA: All Rights Res...
[ "noreply@github.com" ]
jiangpinghan.noreply@github.com
b19716a1dddf1cea90b7aae81e997dc057a2dd1a
23c6e6f35680bee885ee071ee123870c3dbc1e3d
/test/dios/trace-noleak.c
472904e3b60e4823b2ff3f89e7d6c12b023483da
[]
no_license
paradise-fi/divine
3a354c00f39ad5788e08eb0e33aff9d2f5919369
d47985e0b5175a7b4ee506fb05198c4dd9eeb7ce
refs/heads/master
2021-07-09T08:23:44.201902
2021-03-21T14:24:02
2021-03-21T14:24:02
95,647,518
15
3
null
null
null
null
UTF-8
C
false
false
143
c
#include <stdio.h> /* EXPECT: --trace non-zero --symbol _Exit --result error */ int main() { printf( "foobar: %d\n", 0 ); return 1; }
[ "me@mornfall.net" ]
me@mornfall.net
c881d7059abe88a680807786e25b58e2a9ee1b39
8784658ad2537469f7a7a4407728cc55cb0d8e0d
/Stack/paranthesis_checking_using_stack.c
37d2292147b75c12df802f07b065426c2a987eef
[]
no_license
chetan-187/Competetive-Q-n-A
2188fff256cc9004ef187db47070a1f9ab300f45
cc4e92a3dc285d5eda15494aa63dd2394add80c8
refs/heads/main
2022-12-27T18:34:33.921731
2020-10-16T07:52:34
2020-10-16T07:52:34
304,362,738
0
4
null
2020-10-16T07:52:35
2020-10-15T15:04:57
C
UTF-8
C
false
false
2,370
c
/* // implementation of bracket balancing program #include <stdio.h> #include <stdlib.h> #define SIZE 1000 typedef struct { char item[SIZE]; int top; }Stack; // function prototypes // function for stack operations void push(Stack *, char); char pop(Stack *); int isEmpty(Stack *); char stacktop(Stack...
[ "noreply@github.com" ]
chetan-187.noreply@github.com
de612ad3c8d3600e89c6db1270f6ce227b45be8f
436100c79181e5d58a35ee5692f2e59acd01c332
/src/tbox/platform/windows/interface/mswsock.h
8831fbc754ebb6c7eb5194c51ef42cbb800ec706
[ "OpenSSL", "BSD-3-Clause", "GPL-2.0-only", "Zlib", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
ideal/tbox
c262072ccb69bb4af52c43134c04f8f16a77c359
204db869cd9f4c10f95290331c548ee20b21da86
refs/heads/master
2022-11-23T16:10:43.976292
2020-07-22T08:55:54
2020-07-22T08:55:54
281,625,277
0
0
Apache-2.0
2020-07-22T08:51:20
2020-07-22T08:51:19
null
UTF-8
C
false
false
3,280
h
/*!The Treasure Box Library * * 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 applicable law or agreed to in wr...
[ "waruqi@gmail.com" ]
waruqi@gmail.com
dd93cb525558fe1a12334c4848fb5b82a51ef2c7
bde031a3371443e832ac1c5b2a76d8334cef5627
/ebob.c
910d019bdab23fc4625ef6a5333cb70280076f71
[]
no_license
recepkaya7/C
559b207fcdb737267c83e7e0d07bf6d112298b00
313b38ca58f610111f7f103e5dea390411fc260c
refs/heads/master
2023-04-12T20:43:32.996044
2021-05-05T16:35:50
2021-05-05T16:35:50
287,195,447
0
0
null
null
null
null
UTF-8
C
false
false
366
c
#include <stdio.h> #include <stdlib.h> int ebob(int sayi,int sayii){ int ebo=0; int i; for(i=1;i<=sayi && i<=sayii;i++){ if(sayi%i==0 && sayii%i==0) ebo=i; }return ebo; } int main() {int sayi; int sayii; printf("iki tane sayi giriniz:"); scanf("%d%d",&sayi,&sayii); printf("sayiarin ebob...
[ "noreply@github.com" ]
recepkaya7.noreply@github.com
16d80e561692d8491962f81e63fc041ada2eac23
e55cb85634d670b78bf9a6c25fd03b5c821239bd
/RPC GEN/CLIENT/cliente_circulo.c
363c68b4c362f723174bd3081b966bc56bef6bb6
[]
no_license
paucaro/SD_LAB
5847640d498b2984d373f7acea5c382b418f5188
62d04c81ce1cc865edd6dd18da7bf76fd286348d
refs/heads/master
2021-05-30T13:14:30.675831
2015-11-02T09:38:54
2015-11-02T09:38:54
null
0
0
null
null
null
null
UTF-8
C
false
false
422
c
#include <stdio.h> #include "circle.h" main(int argc, char *argv[]) { int radio; double cir; double are; if (argc !=2 ) { fprintf(stderr,"Error: %s a \n",argv[0]); exit(1); } a = atoi(argv[1]); cir = circunferencia(radio); are = area(radio); printf("La circun...
[ "PaulaAsto@github.com" ]
PaulaAsto@github.com
e3be45b2b65d07b07337b2243367668f5ee6374d
4336bb1302cb39910956bd1b4d519fd8f69a7ec3
/beacon/src/beacon/lib/beacon/lang/bc_int.c
e741272cac4d2251d00d9bfaa66d7359eea4ece5
[]
no_license
desktopgame/beacon
fbcaa98ae37f11ecb2f01289dc89e6eeda6c13ee
65781356a930a7e8d7ebd9b90df3747b334a34e4
refs/heads/master
2021-07-04T04:47:04.697205
2018-08-24T04:38:45
2018-08-24T04:38:45
112,838,438
3
0
null
null
null
null
UTF-8
C
false
false
7,161
c
#include "bc_int.h" #include "../../bc_library_impl.h" //proto static void bc_int_nativeInit(method* parent, frame* fr, enviroment* env); static void bc_int_nativeEquals(method* parent, frame* fr, enviroment* env); static void bc_int_nativeAdd(method* parent, frame* fr, enviroment* env); static void bc_int_nativeSub(m...
[ "koya0306@outlook.jp" ]
koya0306@outlook.jp
6bbd39d42e4b2a4e559646f974f21e832e5bda96
fd773aafc3fb2f2a969bffbba3ea3a0ff0f6e4d3
/mirt/melodies.h
726f77bd1bb11e85de90c6c7cab428a7d6b0f07a
[ "MIT" ]
permissive
bfw930/uv-eurovision-ai
6f5b9d81ca36ed7a9ccd71739458876049654f28
4d8353838873bfa75c95a26885ba8eee939d715e
refs/heads/master
2022-04-17T02:04:35.820567
2020-04-07T03:21:15
2020-04-07T03:21:15
241,341,618
0
0
MIT
2020-04-07T03:21:16
2020-02-18T11:15:16
Jupyter Notebook
UTF-8
C
false
false
2,070
h
/* melodies.h */ #define SIZE 20 #define IDFFILE "/vin1/idf/idf" typedef struct noteRec { short interval; short rhythm; short stress; } NOTE; typedef struct songRec { int songLength; int storageLength; char *fileName; NOTE **notes; } SONG; typedef struct melodyListRec { long numSongs; /* number of songs stored in ...
[ "noreply@github.com" ]
bfw930.noreply@github.com
17363e27a51734c375ffc1fe1c42ccd9f34555e0
a2116ff2da9e38cf345121ea0c5316978a4abec8
/ping/main.c
2a1bb29fae42721350839d1deb4cab65079afe66
[]
no_license
hyili/Network_Programming
f1986329b796328cdbc8a27fd5d5dcbb878c13dd
9f34a14d8f81f8ab809b1341b37e946c30a8b32f
refs/heads/master
2021-01-10T10:09:45.656368
2015-10-27T12:23:26
2015-10-27T12:23:26
45,039,074
0
1
null
null
null
null
UTF-8
C
false
false
2,300
c
#include "ping.h" #include "sock_ntop_host.h" /* XX */ #include "host_serv.h" /* XX */ #include "tv_sub.h" #include "in_cksum.h" #include "readloop.h" #include "sig_alrm.h" #include "proc_v4.h" #include "send_v4.h" struct proto proto_v4 = {proc_v4, send_v4, NULL, NULL, NULL, 0, IPPROTO_ICMP}; /* initialize proto_v4 w...
[ "a19931031@gmail.com" ]
a19931031@gmail.com
a1bc662c0cab58b0aeb070da15dd2637795681ab
5c255f911786e984286b1f7a4e6091a68419d049
/code/e390dc6c-f99a-4652-b55a-1566c29a7f2e.c
dc7e54a7b31f91d996722353c1d2a22b1e5f9d42
[]
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
242
c
#include <stdio.h> int main() { int i=0; int j=16; int k; int l; j = 53; l = 644; k = i/j; l = i/j; k = l%j; l = i%j; l = l+j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
ebc2dfe7a4cef2fa0c57b6ccb295e25496622bee
1520edd7eb07ec8a9f05792d538375746f9f80fe
/NDK/arm64/sysroot/usr/include/bits/epoll_event.h
054323cef54eeb98f1f2448bc61422f1d4f7ef1f
[ "MIT", "LGPL-2.0-or-later", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-free-unknown", "GPL-1.0-or-later", "LicenseRef-scancode-python-cwi", "Artistic-1.0", "Python-2.0", "GPL-2.0-only", "Artistic-1.0-Perl", "Apache-2.0", "LGPL-2.0-only", "LicenseRef-sca...
permissive
markspereira/meta-tx-mobile
ac752cba2cb6439ec23c4b1a11250bd8394a8482
564b8df900ff18b1292874cc41bb2aa3d87e8db0
refs/heads/master
2022-12-10T05:52:24.163462
2019-07-11T15:27:45
2019-07-11T15:27:45
196,419,985
0
0
MIT
2022-12-08T23:57:28
2019-07-11T15:24:38
C
UTF-8
C
false
false
1,708
h
/* * Copyright (C) 2017 The Android Open Source Project * 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 code must retain the above copyright * notice, t...
[ "markpereira17@gmail.com" ]
markpereira17@gmail.com
11019df5cc20146257963157a6fb1d5bcc042c69
b2811f9bd019b1ee5b753c8b1176e6cf19eea386
/Mahmutbey_cop_app/mahmutbey_cop_app/orig/debug_multicast.c
d52b5383d0daf15ef3ee1925d46394d7f2008974
[]
no_license
jungpic/test_code
c18a9689abf2484dbb775baa63bcb750f7a45983
e36befefdb02806f4abe8a63006b51e4f723c670
refs/heads/master
2020-03-29T22:18:20.108118
2018-09-26T11:40:04
2018-09-26T11:40:04
150,413,170
0
0
null
null
null
null
UTF-8
C
false
false
13,883
c
/* */ #include <stdio.h> #include <stdarg.h> #include <unistd.h> #include <signal.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <fcntl.h> #include <errno.h> #include <fcntl.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <sys/select.h> #include <sys/time.h> #in...
[ "jungpic@naver.com" ]
jungpic@naver.com
d375096df5f63e01f7748019b84713b8e258fdef
099ea860190f4ec1ce7a22f632ff1131129a1e43
/src/ft_isalnum.c
4442e5025870cf07a2c8134449390afc054458c2
[]
no_license
elidlocke/libft
c2c8156eefb7ed221b85c4ab4de5ba6c16c8eab4
3796bd9e6da87fe79827cfe019cafa3afce3ac72
refs/heads/master
2021-04-28T08:23:32.893317
2018-06-04T23:14:07
2018-06-04T23:14:07
122,247,096
5
4
null
null
null
null
UTF-8
C
false
false
1,214
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: ...
[ "enennige@e1z1r4p36.42.us.org" ]
enennige@e1z1r4p36.42.us.org
ef9202768007a16c918cddb2a353731cf3d4ec4e
38eb361bc13d4632b42ec15685391caa4c687745
/third_party/JavaScriptCore/include/JavaScriptCore/ByValInfo.h
c1f1d51cee4f3a1a97f6ab463738cc5466b794d3
[ "Apache-2.0" ]
permissive
adler0518/kraken
3fdbfb6ee3e7e003e7a16e8c094bbb26890ce01a
5ec29e552563571beb28706c253a8f9ebd67d10f
refs/heads/main
2023-03-26T22:44:43.987541
2021-03-31T02:07:14
2021-03-31T02:07:14
null
0
0
null
null
null
null
UTF-8
C
false
false
47
h
#include "JavaScriptCore/bytecode/ByValInfo.h"
[ "chenghuai.dtc@alibaba-inc.com" ]
chenghuai.dtc@alibaba-inc.com
374795b51dc62da7be53b208ba074d6582cf1cc2
849ca070d13ff046f5d98ad238805ef3433f4eb6
/2. Matrix Multiplication using MPI/matmult_p2p_blocking.c
5e98a5d7c04349fe2ab13660a54225019dab6ac2
[]
no_license
Yashpandey4/COL380-Parallel-and-Distributed-Programming
77f9eefdfcefee95b0a2e5bda7440c26730dfa78
efdbb17c1b40207ea957077487e71ac3edbf71a4
refs/heads/master
2022-11-12T13:21:49.099644
2020-06-29T11:10:02
2020-06-29T11:10:02
240,312,714
3
0
null
null
null
null
UTF-8
C
false
false
5,948
c
#include "mpi.h" #include <stdio.h> #include <stdlib.h> #include <time.h> #include <math.h> #define forn(i,n) for(int i=0; i < n; i++) #define MASTER 0 /* PID of Master process */ #define MASTER_TO_SLAVE_TAG 0 #define SLAVE_TO_MASTER_TAG 1 #define THIRTY_TWO 32 int IsEqual(float *A, float *B, int row, int col) { /** ...
[ "yashpandey4@gmail.com" ]
yashpandey4@gmail.com
6f2d1955d606cf4f235aa5867920e9b66043d840
8e762688227fea4533f1c9083a8f2de0585630a1
/firmware/projects/mascotas/inc/NVM.h
925577e54beb15999f556478c0accc69fc54b5af
[]
no_license
cventu/TDII_Grupo4_Proyecto
4800ee7981eed57435f08c9de13bf18b61269450
4f383eeda45c01d06f6ae886a613d532d54ff4dc
refs/heads/master
2020-03-08T12:35:52.750480
2018-12-12T00:02:41
2018-12-12T00:02:41
128,130,748
1
0
null
null
null
null
UTF-8
C
false
false
700
h
/**********************************INCLUDES************************************/ #include <stdint.h> /******************************************************************************/ /**********************************DEFINES*************************************/ #define STATUS 0 #define LATITUDE 1 #define LONGITUDE ...
[ "cventu21@gmail.com" ]
cventu21@gmail.com
61fab5c0ea2cc076247262b6eb9c833e3a987710
b90450452d71bb71e0b2a8f148cc243ec546ca6c
/BIN/FIRSTPRO.C
e448d4257cf146aa36753201325d8d39f2f41584
[]
no_license
ranjanachaurisya0005547/all-notes-of-mine
c2edcdd73bbd065afa5f1851af3ad7d94969d778
7f4f431587f82ce70b7b998c5a97588196712414
refs/heads/master
2023-02-21T03:21:40.222345
2021-01-23T09:37:42
2021-01-23T09:37:42
332,170,793
0
0
null
null
null
null
UTF-8
C
false
false
120
c
//wap a display a message #include<stdio.h> #include<conio.h> void main() { clrscr(); printf("Hi....."); getch(); }
[ "ranjanachaurisya0005547@gmail.com" ]
ranjanachaurisya0005547@gmail.com
8be95b85b3b9dd42447d121cddc7d9938768c3fd
85fe12e8c5b129b4bbe5c14a449b0d47aa49fda3
/boot/init/pit.c
e7618bb3fff601dc4e60d21acdc3ed48a3f7cc5e
[ "ISC" ]
permissive
imgits/Dancy
eac8dc9f100d5c0ef0b15a8109488c38fafeba65
855764cc71a35b67b98fa65a70c5ecb1a15296f7
refs/heads/master
2023-07-05T03:02:04.605752
2021-08-22T11:03:40
2021-08-22T11:03:40
null
0
0
null
null
null
null
UTF-8
C
false
false
1,409
c
/* * Copyright (c) 2020 Antti Tiihala * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCL...
[ "Tiihala@users.noreply.github.com" ]
Tiihala@users.noreply.github.com
ddb9b8eadff232d9db217da776c41fd51f22d362
c9b366a711f8c906ff76d96e122e90733f0a71e8
/unityreboot/Temp/StagingArea/Data/il2cppOutput/t5_266MD.h
a60cdd5284b0443136f9c8e3d2a32a5f22c2529a
[]
no_license
elliotfiske/growgame
6cdc75f715f3ce7f60f7a3bb30a9e787dce49226
61c597b1a1dfb00472e256b9353642c9733a8e2c
refs/heads/master
2016-08-11T08:14:00.215795
2015-12-15T22:28:26
2015-12-15T22:28:26
47,860,447
0
0
null
null
null
null
UTF-8
C
false
false
968
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> struct t5_266; struct t1_1; struct t1_29; struct t1_170; #include "codegen/il2cpp-codegen.h" extern "C" void m5_1459_gshared (t5_266 * __thi...
[ "elliotfiske@gmail.com" ]
elliotfiske@gmail.com
2f5c3f694267192363b8ac242169c38f6c31b82f
473cce8c96e7260f36e1dad3ec408b6563e8d04c
/src/daemon/detail/error_worker.h
da61c6d0a36752f0a3e480788acb92a5033b1080
[ "MIT" ]
permissive
TheSonOfDeimos/TCP-File-Transfer
0cfefc4d35cf43ba94359bbcf75f44080b9ea5f6
1bd258e05767cb96a6b8d9739ff319a328f7198b
refs/heads/master
2022-11-10T02:08:23.076087
2020-06-28T19:14:42
2020-06-28T19:14:42
265,822,186
0
0
null
null
null
null
UTF-8
C
false
false
998
h
#ifndef SIGNAL_ERROR_WORKER #define SIGNAL_ERROR_WORKER #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/file.h> #include <sys/resource.h> #include <execinfo.h> #include <unistd.h> #include <errno.h> #include "config.h" static void signal_error(int sig, siginfo_t *si, void *ptr) { void* Erro...
[ "l.kargalov@yandex.ru" ]
l.kargalov@yandex.ru
7805503d690ffe97a1e7377ee35823ac951f3983
9d06fe8ae4991df678ed69d37dff37b84f32fdb2
/WebbotLibV2/Sensors/Distance/Sharp/GP2Y0A21YK.c
552b2d88f8bd13c5a8bb7f710fbc6559ec1f29e5
[]
no_license
bechu/hexapod
004e24d128c3892a1a2f87d89dc219258fabad89
de0af30870f3338e1a955ae4d0c1a6c25a31eccd
refs/heads/master
2021-03-12T23:56:34.305151
2012-06-24T21:47:12
2012-06-24T21:47:12
3,721,059
1
1
null
null
null
null
UTF-8
C
false
false
2,410
c
/* * $Id: GP2Y0A21YK.c,v 1.8 2010/07/15 14:38:19 clivewebster Exp $ * * Revision History * ================ * $Log: GP2Y0A21YK.c,v $ * Revision 1.8 2010/07/15 14:38:19 clivewebster * Allow variable ADC reference voltage * * Revision 1.7 2010/06/14 19:03:07 clivewebster * Add copyright license info * * R...
[ "jonathan.grizou@gmail.com" ]
jonathan.grizou@gmail.com
cc4e6ee024be8a9c227d4f9c25900f0b16a20648
5aaa55b632bd4b11ac3f0d3e9fc8065b7b2702c9
/Matrix.c
3e6f5eb280deee10865c04b33ad21721d2968601
[]
no_license
anchithAcharya/matrixOperations
fe400adeca114f7ff2a179265b7e0127b05bd557
72b11d98c1db2524e829d4f55cb3c93c55956baa
refs/heads/master
2023-06-25T17:48:59.323575
2021-07-21T09:49:24
2021-07-21T09:49:24
388,067,191
0
0
null
null
null
null
UTF-8
C
false
false
8,630
c
#include <stdio.h> #include <windows.h> #include <conio.h> #include <stdlib.h> #include <math.h> float Ga[5][5]; void scan(float a[5][5],int *ma,int *na); void display(float a[5][5],int m,int n); void save(float a[5][5],int m,int n,char flag); float determinant(float a[5][5],int m,int n,char *error); void transpose(f...
[ "anchithacharya@gmail.com" ]
anchithacharya@gmail.com
2869e773af68a576c3746dc20d26c6fdaf46f0c5
b5c617372f9c3de08f2fadc234c9f4955577fd37
/raspberry/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/lib/gcc/arm-linux-gnueabihf/4.8.3/include/omp.h
2c19aa300c1996140334ed4db3cc9854c08e4ddc
[]
no_license
zhouswei/myrep
43164ae5f480db9d92d0be7d0691eaf0cef2703e
5394e2162715adf46dcf0e17a177f9ae16f0b17c
refs/heads/master
2022-12-25T06:56:31.720855
2020-05-13T02:54:40
2020-05-13T02:54:40
34,447,551
0
0
null
2022-12-11T05:46:09
2015-04-23T09:42:57
C
UTF-8
C
false
false
3,726
h
/* Copyright (C) 2005-2013 Free Software Foundation, Inc. Contributed by Richard Henderson <rth@redhat.com>. This file is part of the GNU OpenMP Library (libgomp). Libgomp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ...
[ "zhou19840902@gmail.com" ]
zhou19840902@gmail.com
9cb94935d1e7c4b235d68aefa4729c161425e566
f00827855326fb19e7df1853ca799d550da1fa77
/piq_ft_rmax.c
b3ba2c55e465444d5b82d6fc53f6eba867329135
[]
no_license
etmc/cvc
ffb7690ec91d0f4afbe1cd86258d6258539d8420
1beb4c1e8d1b3186f0fae349304919acbc8b98bf
refs/heads/master
2016-08-05T11:38:28.682674
2013-11-25T13:06:26
2013-11-25T13:06:26
14,685,645
1
3
null
null
null
null
UTF-8
C
false
false
27,908
c
/**************************************************** * piq_ft_rmax.c * * Tue Jun 7 19:05:21 CEST 2011 * * PURPOSE: * - analysis programme for \Pi_{\mu\nu}(\hat{q}^2) * * read Pi_mu_nu(q), Fourier transfrom, get Pi_mu_nu(z) * * restrict support of Pi_mu_nu(z) in Fourier transfrom; * use disc of radius...
[ "m.petschlies@cyi.ac.cy" ]
m.petschlies@cyi.ac.cy
669f4cc14232716fee406bf57ec8e2d529fb71f0
ad60e2656fcc333a22999815c7878a274caaacc8
/Linked List/Challenges/3_SparseMatrixWithLL.c
a327ee1f35b190b9a847073da5c630a2e39e0293
[]
no_license
khuzema786/Data-Structures-Algo
abacb4bd92370385dbd5d9e848b11a7a82b4d1bd
b03b7500a673167645ce3bea30118a9b829fe09c
refs/heads/master
2022-12-21T02:16:25.417425
2020-10-01T19:14:12
2020-10-01T19:14:12
299,887,319
0
0
null
null
null
null
UTF-8
C
false
false
2,471
c
// Representation of sparse matrix with LL #include <stdio.h> #include <stdlib.h> struct Node { int col; // column index int val; // non zero value in that column struct Node *next; // address to next node } *first = NULL; void Display(struct Node *p, struct Node *A[], int m, int n) {...
[ "khomosikhuzema894@gmail.com" ]
khomosikhuzema894@gmail.com
23699d69ad3274df4bfe5f85b4bfcb6f0250073d
a24a465870cfb2e65aea9290b1ed0d6d8b8b7934
/libft/str/ft_isalnum.c
4b7fa3cd75326bb93030646f58ec18f6636a957c
[]
no_license
jeremiemartel/21sh
33bc7d86a09f0d7a499ec5bdaaf59c04d6662ed4
afc9adad40670670276efd1b4bd295414b9bd3f0
refs/heads/master
2020-04-25T16:58:30.618201
2019-08-10T09:10:35
2019-08-10T09:10:35
172,930,752
2
0
null
null
null
null
UTF-8
C
false
false
1,075
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: ...
[ "jmartel@e1r2p8.42.fr" ]
jmartel@e1r2p8.42.fr
ad9f4267d32b1d48f2b1f244a0b9540a4a1ae8e4
635d62847e248385411323811c6ab942f9ab73fe
/app/usrmain.c
da0db0163425882b5e8aa6b32af0bf1449f85751
[]
no_license
altnf92/UBINOS_BLE
c32dfe74c218808a7bab1912be20e62644db7041
5e2b330ede6e659f005d216792f841d3f7cc7fb1
refs/heads/master
2023-03-21T00:04:45.502699
2021-03-18T00:36:25
2021-03-18T00:36:25
null
0
0
null
null
null
null
UTF-8
C
false
false
2,643
c
/* Copyright (C) 2016 Sung Ho Park, Yu Jin Park Contact: ubinos.org@gmail.com This file is part of the exe_helloworld component of the Ubinos. GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and ap...
[ "khs@DESKTOP-7RKCA0K" ]
khs@DESKTOP-7RKCA0K
19aa172fd5fb92162880f27a50158d8ce05f9025
7dcb42b3b2576338f0be1d66ac7819fd550005ca
/src/lib/core/runtime/i64_and.c
f9ad1add07ecb6b392adcb0ff717ba763081809e
[ "BSD-3-Clause" ]
permissive
Naetw/WasmVM
7b0480fdd75801aa88239e4896110cabf8d1dd41
68c033cf76adc62f72d571ed44134416a7505a1c
refs/heads/master
2020-04-16T18:52:57.172320
2019-01-26T06:43:00
2019-01-26T06:43:00
165,838,451
0
0
BSD-3-Clause
2019-01-15T11:21:26
2019-01-15T11:21:25
null
UTF-8
C
false
false
79
c
#include <core/Runtime.h> int runtime_i64_and(Stack* stack) { return 0; }
[ "luishsuplus@gmail.com" ]
luishsuplus@gmail.com
145e4d790cef9487b181fc5a1195e553796281a3
243af6f697c16c54af3613988ddaef62a2b29212
/firmware/uvc_controller/mbed-os/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h
a0096333d68dc80d6ad073febf74a619e8e62800
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "MIT" ]
permissive
davewhiiite/uvc
0020fcc99d279a70878baf7cdc5c02c19b08499a
fd45223097eed5a824294db975b3c74aa5f5cc8f
refs/heads/main
2023-05-29T10:18:08.520756
2021-06-12T13:06:40
2021-06-12T13:06:40
376,287,264
1
0
null
null
null
null
UTF-8
C
false
false
868
h
/* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited * * 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 * * ...
[ "13125501+davewhiiite@users.noreply.github.com" ]
13125501+davewhiiite@users.noreply.github.com
56290f2e39196d32d64c721f55feb3f3db52d38a
d6874f6d1dc65961634243627a6010db7da3318d
/day-16/fib.c
cb28245761bea788c19b0f7f411d044fbba30601
[]
no_license
riyaz-pasha/c-tutorials
23dd17cbee4b327197fd8c7f74b6f41bbbb23bb6
87afc2cbd3e39326d316cf8d2381fd274c97d532
refs/heads/main
2023-05-26T12:34:01.677041
2021-06-15T13:12:35
2021-06-15T13:12:35
360,954,562
0
0
null
null
null
null
UTF-8
C
false
false
336
c
#include <stdio.h> int main() { int firstNumber = 0; int secondNumber = 1; int thirdNumber = firstNumber + secondNumber; while (firstNumber < 100) { printf("%d\n", firstNumber); thirdNumber = firstNumber + secondNumber; firstNumber = secondNumber; secondNumber = thir...
[ "riyazpasha880@gmail.com" ]
riyazpasha880@gmail.com
98980b70630efbc239282bd0043552d82a08b1d6
f9448d558c70cf19f0102e92437334c62845b506
/mcfw/src_bios6/links_common/alg_link/scd/scdLink_priv.h
e5a6f0acb122c7ab7f3ec10d478f542b9fcde7df
[]
no_license
willisyi/dm8168
79b51bfd7c3db170f828032e71a17234945c47f2
28bc77e25f6f6f73bdbc19692a160b735858ef17
refs/heads/master
2020-07-26T18:08:12.110256
2015-04-09T11:22:53
2015-04-09T11:22:53
26,756,959
7
5
null
null
null
null
UTF-8
C
false
false
3,991
h
/******************************************************************************* * * * Copyright (c) 2009 Texas Instruments Incorporated - http://www.ti.com/ * * ALL RIGHTS RESERVED ...
[ "guo8113@126.com" ]
guo8113@126.com
30a9e6d02c5c14a2859c2e134bf8ba8a9cba6fce
47889c8e86e7d8d0510ceea146625961690a8186
/LVAD_Motor_CTL/functionLab4.h
b0ad9057e21f18774e21660e130b3a9769798979
[]
no_license
cloelee/Left-Ventricular-Assist-Device-LVAD
e3bb1880a2116e9b54640056c2d80d22a8b142bc
1b699adffd81c43c68307b09f088f2cab667e989
refs/heads/master
2020-05-17T07:09:12.906719
2019-04-26T06:55:10
2019-04-26T06:55:10
null
0
0
null
null
null
null
UTF-8
C
false
false
186
h
/* Kyunghyn Lee EE 474 Header file for functions using in lab4.*/ #ifndef FUN_H #define FUN_H void ADC_Init(); void Timer0_Init(); void Interrupt_Init(); #endif //FUN_H
[ "noreply@github.com" ]
cloelee.noreply@github.com
e4b235d17cfbd2ff45cf19010093a27dd56b1f36
83448e5236ecb676041eac596f55c7bf3a8ff5fb
/daemon/json.c
b536f476e32d088a7620cfcf9be5f1df56673aed
[ "MIT" ]
permissive
lclc/lightning
359eeb0f2dd7e73eb6134e2a1a09317f6a340402
28f615ca6e855314e11cf256cffba444124f53c1
refs/heads/master
2021-01-12T10:11:12.544147
2016-12-13T17:08:19
2016-12-13T17:12:28
76,380,694
0
0
null
2016-12-13T17:07:05
2016-12-13T17:07:04
null
UTF-8
C
false
false
10,661
c
/* JSON core and helpers */ #include "json.h" #include <assert.h> #include <ccan/build_assert/build_assert.h> #include <ccan/str/hex/hex.h> #include <ccan/tal/str/str.h> #include <ccan/tal/tal.h> #include <errno.h> #include <inttypes.h> #include <stdarg.h> #include <stdio.h> #include <string.h> struct json_result { u...
[ "rusty@rustcorp.com.au" ]
rusty@rustcorp.com.au
3075ffbc0bb69701d1ce721f8f5664dabc2a131e
af5ef1d800390eb6e47701dfffce6946085d144d
/node_modules/gps-util/node_modules/mmmagic/deps/libmagic/src/readelf.c
ebaf09366587c1616c8f453b6b619d81d5f64682
[ "MIT", "LicenseRef-scancode-bsd-simplified-darwin" ]
permissive
alexandreautret/OpenData76-Node.Js
911e05a5e79d1b1ea12315c8ebd8702f56ce608d
67bb4271fa32eb49e4256fcbe3c293cd47512c33
refs/heads/master
2021-01-21T07:26:16.408749
2014-02-20T12:49:39
2014-02-20T12:49:39
null
0
0
null
null
null
null
UTF-8
C
false
false
31,539
c
/* * Copyright (c) Christos Zoulas 2003. * All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice immediately at t...
[ "alexandre.autret@gmail.com" ]
alexandre.autret@gmail.com
78cfa16849a2e19c69d1355056a03517f116b22a
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/oprofile/extr_oprofile_perf.c_oprofile_perf_create_files.c
f8336ffe92c926189595ce982ed59c1492ebe0d7
[]
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,604
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
5e2d58b4070a97346c22d63d080d44a31fc80dc3
75a94137b33004a633afe541c2e587f3b16a9691
/TCP/Client.c
681a1a3b649cef537dcd66d9c2f86733be17fe78
[]
no_license
D-Wazzle/Simple-C-Communications
e2393dbe88e4918ef3fc928f56f63db65ca37a40
04e62677cba4de57db288651b229ab703a0aacfe
refs/heads/master
2021-01-20T07:56:50.448160
2017-05-03T04:41:28
2017-05-03T04:41:28
90,069,317
0
0
null
null
null
null
UTF-8
C
false
false
3,684
c
/* Client.c Author: Dylan Wallace, Drones and Autonomous Systems Lab, University of Nevada, Las Vegas A simple C TCP client to connect to the server defined by Server.c. Allows the user to input the IP address, and connects to the defined port. Receives the message defined by Server.c. Made with the help of Beej's...
[ "noreply@github.com" ]
D-Wazzle.noreply@github.com