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
1c379019e6d0d4eac32ce804d9f9ea79f1330f75
dea9babae75b270e1c0898a0362918fd52276983
/0x02-functions_nested_loops/104-fibonacci.c
be98df3586357d407a1b6f37dc0455694185d59f
[]
no_license
SebastianCalle/holbertonschool-low_level_programming
cb5f9670c73b3cf5f251efa518b7d4ce510efc55
4d78ab072e39fd646e14bc9ba5ab358cebea98d2
refs/heads/master
2021-07-25T18:20:18.499800
2020-06-24T13:38:46
2020-06-24T13:38:46
192,736,273
0
0
null
null
null
null
UTF-8
C
false
false
602
c
#include <stdio.h> #define DIVIDER 10000000000 /** * main - The first 98 fibonacci * Return: 0 */ int main(void) { unsigned long int ia = 0, i = 1, ja = 0, j = 2; unsigned long int aa, bb, cc; int c; printf("%lu, %lu, ", i, j); for (c = 2; c < 98; c++) { if (i + j > DIVIDER || ja > 0 || ia > 0) { aa = ...
[ "jusemonca@gmail.com" ]
jusemonca@gmail.com
35ed834a8087b4e38318b715661ef2400e76d7b9
d761fd11ddd77c891969e35f2e743b253ee4d09c
/bucket_95/nss/patches/patch-lib_softoken_pkcs11.c
3080ad3d2ff0a3c913ebcdc5b065af0ad778b57a
[ "ISC" ]
permissive
ftigeot/ravensource
ccfd35bee4820ddb4653d653548f8ceb296acf90
d55fddec4c96f20c09e2351d1fb72ce32bf53604
refs/heads/master
2020-04-22T12:46:17.294212
2019-02-12T19:44:14
2019-02-12T20:12:50
144,263,007
0
0
null
2018-08-10T08:59:38
2018-08-10T08:59:37
null
UTF-8
C
false
false
600
c
--- lib/softoken/pkcs11.c.orig 2019-01-25 23:52:51 UTC +++ lib/softoken/pkcs11.c @@ -3077,8 +3077,8 @@ nsc_CommonInitialize(CK_VOID_PTR pReserv char buf[200]; int major = 0, minor = 0; - long rv = sysinfo(SI_RELEASE, buf, sizeof(buf)); - if (rv > 0 && rv < sizeof(buf)) { + long ...
[ "draco@marino.st" ]
draco@marino.st
398dcb62e1eda810fd9ecd585b79651060311be2
be3167504c0e32d7708e7d13725c2dbc9232f2cb
/mame/src/mame/drivers/oneshot.c
0e57b2ae073601dc6f612b9a41600b6cce5cbc70
[]
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
21,240
c
/* One Shot One Kill & Maddonna Driver by David Haywood and Paul Priest Dip Switches and Inputs by stephh Notes : - The YM3812 is used only for timing. All sound is played with ADPCM samples. - It doesn't seem possible to make 2 consecutive shots at the same place ! Ingame bug or is there someth...
[ "mameppk@199a702f-54f1-4ac0-8451-560dfe28270b" ]
mameppk@199a702f-54f1-4ac0-8451-560dfe28270b
d34e6cffd9766fb7e56d30954d1561ea61dad6c9
db1987abe341d08e27264ab86c32cd787d5edafa
/Lab10/src/client_poll.c
aea0734a0105b8f08760e082672f183f57943607
[]
no_license
Servat0r/Laboratorio-Sistemi-Operativi-
a6c5d78c900cf9b70e5dcbf3b117bf2bfafc356d
8d90c28ece6ca9b114756e24c8d98b67d6cfc29f
refs/heads/master
2023-04-22T11:08:55.725379
2021-05-09T09:20:45
2021-05-09T09:20:45
349,691,172
0
0
null
null
null
null
UTF-8
C
false
false
4,188
c
/* Client for Lab09.es1 */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> #include <sys/wait.h> #include <defines.h> #include <util.h> #include <assert.h> #include <poll.h> /* Tim...
[ "servator.correnti@gmail.com" ]
servator.correnti@gmail.com
0ea35492150e425d5b4772f660521e8252b5d7e9
e8b04bef9aa1ac8e2c109dd315f133c8f4d28ae6
/projects/samples/howto/rolling_friction/controllers/rolling_friction_supervisor/rolling_friction_supervisor.c
f010bb40fb68477568b25723d2dc0c413ac10f1b
[ "Apache-2.0" ]
permissive
cyberbotics/webots
f075dacf4067e8dcebbfd89e8690df8525f6d745
8aba6eaae76989facf3442305c8089d3cc366bcf
refs/heads/master
2023-08-31T09:41:13.205940
2023-08-18T10:48:30
2023-08-18T10:48:30
156,228,018
2,495
1,525
Apache-2.0
2023-08-28T16:30:33
2018-11-05T14:09:10
C++
UTF-8
C
false
false
1,284
c
/* * Copyright 1996-2023 Cyberbotics 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or...
[ "noreply@github.com" ]
cyberbotics.noreply@github.com
d52c05f00248ac12d2e01434ac27e010ce3d18d6
9a1a451c636be687b36a2993c3ca0708e5fbb460
/Clients/dnssdutil.c
206e2b6c314ee93018f0f1968014eb0d35046dcf
[ "NICTA-1.0", "BSD-3-Clause", "Apache-2.0" ]
permissive
joveryz/mDNSResponder-878.200.35-built
7d84b2623eaa7ea77293c185371e9326dd6a1d80
04489886480c9acfa3153749903152fb4b554989
refs/heads/master
2023-08-08T01:06:42.770900
2020-07-13T02:42:59
2020-07-13T02:42:59
null
0
0
null
null
null
null
UTF-8
C
false
false
474,530
c
/* Copyright (c) 2016-2018 Apple Inc. All rights reserved. dnssdutil is a command-line utility for testing the DNS-SD API. */ #include <CoreUtils/CommonServices.h> // Include early. #include <CoreUtils/AsyncConnection.h> #include <CoreUtils/CFUtils.h> #include <CoreUtils/CommandLineUtils.h> #include <CoreUtils/Dat...
[ "willardding@hotmail.com" ]
willardding@hotmail.com
20cc5cebd7ce893c488c670719c4384281fb0f7c
194f4cf6638b97658cfe8b37dbf8990b2efaf9d0
/mesh/bearer/meshx_bearer_gatt.c
a7144e44d689242c76053103f101bcb5d7e22ffe
[ "Apache-2.0" ]
permissive
fanshuming2011/meshx
ac432ee9fb4abe8df3c04ff0f574e54a0af6e4a7
f69f1dc2cf4ba1c355739d073574da429646abc4
refs/heads/master
2020-09-23T17:47:41.582093
2019-11-28T15:55:33
2019-11-28T15:55:33
null
0
0
null
null
null
null
UTF-8
C
false
false
3,042
c
/** * This file is part of the meshx library. * * Copyright 2019, Huang Yang <elious.huang@gmail.com>. All rights reserved. * * See the LICENSE file for the terms of usage and distribution. */ #define MESHX_TRACE_MODULE "MESHX_BEARER_GATT" #include "meshx_trace.h" #include "meshx_bearer_internal.h" #include "mesh...
[ "elious.huang@gmail.com" ]
elious.huang@gmail.com
f7c91641b729ec82219f58ab4dc73582b78d8f98
cd71ff07588f49a6957a221138c1db2a67432b32
/tcl8.4.5/generic/tclLoadNone.c
57f66e85ebd243cc5fca5e9afd64f551e4fd24dd
[ "TCL" ]
permissive
soohyunc/USN
1f87c63181dfa7ff811810c27be677d5fcb92711
f27e0c8af84698d0b5aca58e24e1dfc1ad6d9f55
refs/heads/master
2021-01-06T20:42:36.949756
2010-12-09T16:40:33
2010-12-09T16:42:06
null
0
0
null
null
null
null
UTF-8
C
false
false
3,787
c
/* * tclLoadNone.c -- * * This procedure provides a version of the TclLoadFile for use * in systems that don't support dynamic loading; it just returns * an error. * * Copyright (c) 1995-1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, a...
[ "soohyunc@corona.cs.ucl.ac.uk" ]
soohyunc@corona.cs.ucl.ac.uk
f2b574b67cfed04cb1f069bd7af863b330b99d8e
8700a5af8be62fd6f2fe5b556851ff53de94faf2
/examples/display/hourGlass/main.c
82fc88cfd2cee27815868b6cde8c4b68122f269a
[ "BSD-3-Clause" ]
permissive
gbl08ma/libfxcg
f17351fc681ae7f849dee98fb26416110fdff268
2a2776f2440579c2fe9ef94c0470108e2af4e058
refs/heads/master
2020-12-25T16:35:54.336238
2016-05-10T17:55:04
2016-05-10T17:55:04
7,240,698
2
2
null
2018-05-03T15:36:05
2012-12-19T13:09:26
C
UTF-8
C
false
false
537
c
#include <fxcg/display.h> #include <fxcg/keyboard.h> static int keyPressed(int basic_keycode){ const unsigned short* keyboard_register = (unsigned short*)0xA44B0000; int row, col, word, bit; row = basic_keycode%10; col = basic_keycode/10-1; word = row>>1; bit = col + ((row&1)<<3); return (0 != (keyboard_register...
[ "mailboxer123@yahoo.com" ]
mailboxer123@yahoo.com
e0a5cc91090e3321eb0c7183333680981742b3eb
af79492c6999077f88b820185ecd4eb82c355c9a
/ZQ2NuPt2_fullrange/sim_CD_D/rspic/hM1_20.C
1afd28a6eb6a7ffcdf8930d14b4766d56181e8b5
[]
no_license
orsosa/Eg2_ana
f8d20c0a4c3c0a2e725a24fa84518b552dde31e3
f49ee1384f54365c0b293656386635b111c54ae0
refs/heads/master
2020-07-01T09:30:30.162135
2018-11-05T15:08:42
2018-11-05T15:08:42
74,095,684
0
0
null
null
null
null
UTF-8
C
false
false
11,229
c
{ //=========Macro generated from canvas: c/The canvas //========= (Tue Apr 11 12:55:55 2017) by ROOT version5.34/19 TCanvas *c = new TCanvas("c", "The canvas",1,1,800,576); gStyle->SetOptFit(1); c->SetHighLightColor(2); c->Range(-0.06456676,-12.64297,0.3309587,113.7867); c->SetBorderSize(2); c->SetF...
[ "oj.5070@gmail.com" ]
oj.5070@gmail.com
1475d4d72f9bab64aa82a1ae815e6ce3cf388711
410aa01241cca73d6d96ef96fb4878a56564501f
/STM32Cube_FW_F1_V1.6.0/Projects/STM32F103RB-Nucleo/Examples_LL/ADC/ADC_MultimodeDualInterleaved/Inc/main.h
64514297da91ef00ed56ae36dfa00ee462067945
[ "BSD-2-Clause", "MIT" ]
permissive
voltirex/stm32cube-fw-f1-v16x
17d1eaf7e8bddc16332aa3093c2061c731b42f75
79e6453d74d2ca8b49afee688c278d7c0750ba00
refs/heads/master
2020-04-02T02:32:03.752997
2018-10-20T14:33:15
2018-10-20T14:33:15
153,914,430
1
2
MIT
2020-03-08T01:44:00
2018-10-20T14:34:01
C
UTF-8
C
false
false
4,920
h
/** ****************************************************************************** * @file Examples_LL/ADC/ADC_MultimodeDualInterleaved/Inc/main.h * @author MCD Application Team * @version V1.0.0 * @date 14-April-2017 * @brief Header for main.c module **************************************...
[ "bmilanov@voltirex.com" ]
bmilanov@voltirex.com
cee22aa07972d6eb95245daea6ce939f729f9dc1
0cdbf29e5b243a5efc3fdd8918f47aed1d5011b1
/lemin/src/ft_solver_paths.c
fd824a68cc75341b515ba1778bab7fc86f507091
[]
no_license
CristinaFdezBornay/Lem-in
1b52eb8fb95bb3cf240c8651de3e18a859ae70af
8fa898733fe08bbb6dcae0ecfeb4ba295d7d54e6
refs/heads/master
2020-09-19T22:16:57.188937
2019-11-27T00:53:07
2019-11-27T00:53:07
224,311,051
0
0
null
null
null
null
UTF-8
C
false
false
2,652
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_solver_paths.c :+: :+: :+: ...
[ "alagroy-@e1r4p10.42.fr" ]
alagroy-@e1r4p10.42.fr
c541021949cca5c72e07330cdfd75b9e332349c3
985d4da0fbd17373108ff4e66e1c730a44b06113
/Basic_Programming/Programming/7-09. 用天平找小球.c
d87e65a326c59c5ae4ccc5cf8f866df1e4be38f7
[]
no_license
Class-17/HNU-ITEA
672e987c160342ffd88ebc8588481d5139efa270
f50e63a862bcaade8374fb6c5c73a80425e7e57f
refs/heads/master
2023-01-29T16:55:58.711178
2020-12-14T06:44:46
2020-12-14T06:44:46
306,061,753
4
2
null
null
null
null
UTF-8
C
false
false
256
c
#include<stdio.h> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); if(a == b) printf("C\n"); else if(a == c) printf("B\n"); // a!=b 比较a与c else printf("A\n"); // a!=b且 a!=c 说明b=c return 0; }
[ "verfolgen17@gmail.com" ]
verfolgen17@gmail.com
914854fdff0c4d694d897e0f44c1e8f709e8bff0
4a2d847ef7e4aed838b89f14e0f2d3a1604095c3
/Cusakis140505/slprj/_sfprj/ManipulatorME4901/_self/sfun/src/ManipulatorME4901_sfun_debug_macros.h
60da6eea0c2ac2c775e3bf60db1b6392fc9afe2a
[]
no_license
alexgrompone/Cusakis
10055544856e115f7ff27a8659c4697d5e8256fe
94787eb6079864077fc17d6acfb7304b99275c05
refs/heads/master
2021-01-10T14:24:13.591284
2016-03-23T15:13:05
2016-03-23T15:13:05
54,569,682
0
0
null
null
null
null
UTF-8
C
false
false
25,812
h
#ifndef __SF_DEBUG_MACROS_H__ #define __SF_DEBUG_MACROS_H__ extern unsigned int _ManipulatorME4901MachineNumber_; #define _SFD_SET_DATA_VALUE_PTR(v1,v2)\ sf_debug_set_instance_data_value_ptr(sfGlobalDebugInstanceStruct, _ManipulatorME4901MachineNumber_,CHARTINSTANCE_CHARTNUMBER,CHARTINSTANCE_INSTANCENUMBER,v1,(void *...
[ "alex.grompone@gmail.com" ]
alex.grompone@gmail.com
d2b0e0faa6d3df3c358c6a7c01db89583ef28fe5
e3013009c5989a8c15538ce1740946d094865ae6
/libft/srcs/ft_count.c
5f05446221a36216e68339fa3bcb5372f55f9f5f
[]
no_license
fvivaudo/RT
6cd2e830003efa0009b1d384295c1af7be8ceee0
3a17097f45caaf62fa0f66ee4d44b71f1823d77e
refs/heads/master
2021-01-13T00:33:49.785800
2017-05-24T12:01:38
2017-05-24T12:01:38
81,437,018
0
0
null
null
null
null
UTF-8
C
false
false
1,068
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_count.c :+: :+: :+: ...
[ "fvivaudo@e2r10p11.42.fr" ]
fvivaudo@e2r10p11.42.fr
5c31752c5cc6a18ee63c62305917ad472fedfc08
e584a30fa5aab745263389f888699ff903153bcf
/C/src/2019/day05.c
8860c4804b2070141784cf9d070803677e913c73
[]
no_license
FrankvdStam/AdventOfCode
a8683af4b0d1c82347646e08c8f8502915198ceb
ad6f02af54c74fd42ea85e8e1556c9f5d14e907c
refs/heads/main
2023-03-18T22:22:25.574667
2023-03-09T18:16:39
2023-03-09T18:16:39
162,724,888
0
0
null
2023-02-26T20:29:56
2018-12-21T14:43:38
C#
UTF-8
C
false
false
3,020
c
// // Created by f.stam on 05/03/2020. // #include "day05.h" #include <string.h> #include <stdio.h> #include "../intcode_computer/intcode_computer.h" char* diagnostic_program = "3,225,1,225,6,6,1100,1,238,225,104,0,1101,9,90,224,1001,224,-99,224,4,224,102,8,223,223,1001,224,6,224,1,223,224,223,1102,26,62,225,1101,11,...
[ "frank_stam5@hotmail.com" ]
frank_stam5@hotmail.com
5ef75e9c3257e792a0ac743d25a94e5b1ecad166
04c8d8da9cebc13513c1b9c7658707ecadfa0ed3
/Roll a Ball/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_Dictionary_2_Transform_1_139MethodDeclarations.h
b86ba990c60e92f2e6c563c7cbbf6ffc8b6c5edc
[]
no_license
fkieyhzen/RollABall
ed9ef9e93f3cfaecd2be10013797e97e9c1e479e
f083b660966094939ed2b5d2028e31bb4e86a67e
refs/heads/master
2023-03-19T18:19:11.437779
2015-06-08T15:27:45
2015-06-08T15:27:45
null
0
0
null
null
null
null
UTF-8
C
false
false
1,911
h
#pragma once // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache,UnityEngine.GUILayoutUtility/LayoutCache> struct Transform_1_t10457; // System.Object struct Object_t; // UnityEngine.GUILayoutUtility/LayoutCache struct LayoutCache_t2058; // System.IAsyncResult ...
[ "patrick@beetheswarm" ]
patrick@beetheswarm
5990e1b99bdce163d6238ded0a2aa4d95346caf6
ea8c2641106325a40b5c553eab8bc255e759e1ad
/mpi/exo4.c
0ce3c556014fb26041d7107f26d7b99f7d89170e
[]
no_license
helderLisboaBrites/Parallelisme_et_calculs_distribues_MPI_PVM
ee5ea742deeb774e192319b6285ed68e43e30dd0
79a76444df11931b27693565d2f26964a482c256
refs/heads/master
2023-09-06T02:55:21.946833
2021-11-13T16:24:29
2021-11-13T16:24:29
427,390,859
0
0
null
null
null
null
UTF-8
C
false
false
4,502
c
#include "mpi.h" #include <stdio.h> #include <sys/types.h> #include <stdlib.h> #include <sys/time.h> #include <time.h> #include <string.h> #include <errno.h> #include <math.h> void sendLigne(int me, int nproc, int N, int totalLignes, double *tab) { MPI_Request r; if (me == 0) { MPI_Isend(tab + N ...
[ "helder.lisboa-brites@edu.esiee.fr" ]
helder.lisboa-brites@edu.esiee.fr
8017dd32b977e3ee7779d2951c38a626c81efba5
25e4765cec76b63c40d9a0c8636f4122a6b58543
/controller/ankeshni/src/timer_queue.c
e6f666af74549f59e81ad7a0fceec385849c75d3
[]
no_license
ankeshni/Software-Defined-Routing
5c3c4ac991ab59013a79fab40b4992359152012d
1ad96763f5e389aab9d099e9e1ff2fc6cb343e8f
refs/heads/master
2020-03-19T05:55:31.086217
2018-06-04T05:41:57
2018-06-04T05:41:57
135,975,161
0
0
null
null
null
null
UTF-8
C
false
false
2,392
c
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ #include "../include/global.h" #include "../include/connection_manager.h" #include "timer_queue.h" #include "control_handler.h" #inclu...
[ "ankeshni@buffalo.edu" ]
ankeshni@buffalo.edu
8512b538d8a6e735e9adb56b9557e170918031d8
ac6079d68511b7578898acaaede361857ddd767a
/c00/ex06/ft_print_comb2.c
78e747064d496cfc49703aa266e19ac1e79632b6
[]
no_license
YvanoffP/piscine42
27821b93b952fd06feb649e1a3b7cf166d4ea35b
e1c5a5760fd6997b027fc1207070d58968ce9908
refs/heads/master
2023-06-21T02:10:20.797409
2021-07-29T18:06:03
2021-07-29T18:06:03
null
0
0
null
null
null
null
UTF-8
C
false
false
1,263
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_print_comb2.c :+: :+: :+: ...
[ "ypetruzz@student.42lausanne.ch" ]
ypetruzz@student.42lausanne.ch
f103a96c42799ba498073007553324e6e77120df
ef0fd576bfe77736bf0923a694b65707233f0483
/ThermometerMeasurement/DS18x8_demo.cydsn/Generated_Source/PSoC4/OneWire_ControlReg_SEL_PM.c
6a581551465f0a6b58ddbb0e5789f8e166de33b2
[]
no_license
sophmintaii/smart_heat_meter
d5bd1f0e9f10cf4dc64150e16e12e8f044cb53b5
9596d45263dc3abd12c3ffa9bbca5cac17ae350c
refs/heads/master
2023-02-18T02:14:06.178856
2021-01-17T00:10:38
2021-01-17T00:10:38
309,335,375
3
0
null
null
null
null
UTF-8
C
false
false
3,109
c
/******************************************************************************* * File Name: OneWire_ControlReg_SEL_PM.c * Version 1.80 * * Description: * This file contains the setup, control, and status commands to support * the component operation in the low power mode. * * Note: * *****************************...
[ "ta.tak.hopm@gmail.com" ]
ta.tak.hopm@gmail.com
0441ab5f21163f51ad302d01ade5d6434b83a73e
a6d891e9cf5284105002859475362f1267fe05a1
/usr/include/ruby-2.1.0/x86_64-linux/ruby/config.h
64c5136e55d03e15e728cffac86dd19bf267b827
[]
no_license
tomxue/arm-qt5.4.0-opengl
74ceb6aab4f50f739f9d5669c3572bc04ae895de
b3b7043ccfbe4561ff8cd5a1c7755efa7f1598a5
refs/heads/master
2021-01-23T16:43:07.019774
2015-03-17T07:30:30
2015-03-17T07:30:30
null
0
0
null
null
null
null
UTF-8
C
false
false
9,814
h
#ifndef INCLUDE_RUBY_CONFIG_H #define INCLUDE_RUBY_CONFIG_H 1 /* confdefs.h */ #define CANONICALIZATION_FOR_MATHN 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #defi...
[ "toby.zxj@gmail.com" ]
toby.zxj@gmail.com
4df2f28f84ca8547ca5ab0764f19be0d3b7d6c50
e8ccf4ab45dac4f964ac90aeed30529bb46d65eb
/autologin.c
dfa367e37672c5ba4cfc13da2a46fde3180739e3
[]
no_license
poltergasm/OW-Auto-Login
b128981a442a5c0f71b08458a17eeb6bd425e632
286a66e4db084c31686ab49b27fea3a6d8cdd3db
refs/heads/master
2021-03-31T00:13:11.791107
2018-03-11T12:52:42
2018-03-11T12:52:42
124,713,244
2
0
null
null
null
null
UTF-8
C
false
false
4,301
c
#include "autologin.h" void chomp(char *s) { while(*s && *s != '\n' && *s != '\r') s++; *s = 0; } void pressKey(SHORT key) { ip.type = INPUT_KEYBOARD; ip.ki.wVk = key; ip.ki.wScan = 0; ip.ki.dwFlags = 0; ip.ki.time = 0; ip.ki.dwExtraInfo = 0; SendInput(1, &ip, sizeof(INPUT)); } ...
[ "polter@perlpowered.com" ]
polter@perlpowered.com
7f92ab21f242a97f8558931be5c87fdbae2cb0c4
0398ceee940dccd06091161ba2add975d402d255
/projects/mcginnit/dominion/dominion.c
0ebdee735f8f2b72c43439445bcf58448434334d
[]
no_license
tjmcginnis/CS362-004-W2018
77ad5ce59d8c83b8bd92c00cc6f48a83cd698f06
47e1fb87a48b1a10bbc90ba8ad8450b5d1e1d1dc
refs/heads/master
2021-09-09T17:37:59.907442
2018-03-18T15:23:44
2018-03-18T15:23:44
117,316,229
0
0
null
2018-01-13T05:14:05
2018-01-13T05:14:05
null
UTF-8
C
false
false
32,488
c
#include "dominion.h" #include "dominion_helpers.h" #include "rngs.h" #include <stdio.h> #include <math.h> #include <stdlib.h> int compare(const void* a, const void* b) { if (*(int*)a > *(int*)b) return 1; if (*(int*)a < *(int*)b) return -1; return 0; } struct gameState* newGame() { struct gameState* ...
[ "tylermcginnis@gmail.com" ]
tylermcginnis@gmail.com
ea9b5133f4ec7fab005ddf5430c043ce0403f3d1
70293d74095e7f9c65bbd514da8cd1a7db0969b9
/lib/python-edf/src/edflib.h
f9a5c22b824530ffdee29c507d426a9b7ac63142
[]
no_license
qualified-self/experiment-control
ee61490366121669ed1e38cdbb481bffd91bd8ee
b3849af911a3d4e0b186f10b00f309bfe4f7e5cb
refs/heads/master
2021-01-10T04:47:03.815238
2016-04-01T14:12:47
2016-04-01T14:12:47
55,158,703
0
0
null
null
null
null
UTF-8
C
false
false
27,446
h
/* ***************************************************************************** * * Copyright (c) 2009, 2010 Teunis van Beelen * All rights reserved. * * email: teuniz@gmail.com * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions a...
[ "ad@nfb2.(none)" ]
ad@nfb2.(none)
92e01d1b76c1a1f1fa7499d7fdd0e7cb3d500b90
5242383ec4c52d47d23e8d46fe6ea9c22c48e903
/Cupsd/backend/usb-unix.c
1b0fbf6c7f73e7063df1f7e1cafe9b330d1e36ca
[]
no_license
syedaunnraza/work
461905b3cb0b899b269c3eac41ccf75a4ea993a5
c71f78faec3b8646b8b2b5e4386171141ab5e56a
refs/heads/master
2021-01-23T22:15:55.113263
2011-08-31T22:39:37
2011-08-31T22:39:37
1,731,091
1
0
null
null
null
null
UTF-8
C
false
false
13,998
c
/* * "$Id: usb-unix.c 7721 2008-07-11 22:48:49Z mike $" * * USB port backend for the Common UNIX Printing System (CUPS). * * This file is included from "usb.c" when compiled on UNIX/Linux. * * Copyright 2007 by Apple Inc. * Copyright 1997-2007 by Easy Software Products, all rights reserved. * * Thes...
[ "=" ]
=
b99938a73c983e8542c7d5f6387519557969fcfa
d384d657bb72b8d6b2f61433be036bf54e0e64cd
/src/Supervisor/archiver.h
5a735892c66c7060bd186d4a44dfb27d05243f26
[]
no_license
kkagresh/Grid-Computing-Framework
8df3d61a8991c28d19aaac3e22a1a0012a30e15d
a8c98ddd2f0dc7b344c68377b1346d3cfa8fcdb4
refs/heads/master
2021-01-18T18:39:39.151433
2010-05-07T18:16:50
2010-05-07T18:16:50
12,793,156
1
0
null
null
null
null
UTF-8
C
false
false
2,090
h
#include<vector> #include<cstdlib> #include<fstream> int create_task_archives(XMLFile *xf, ParsedXMLElements *pxe) { //TODO /* Copying the files into the current directory */ send_to_overview("Creating archives.."); for(int i = 0; i < (pxe->Tasks.size()); i++) { string cur_task_id = pxe->Tasks[i].task_id; ofs...
[ "reddragon@ubuntu.ubuntu-domain" ]
reddragon@ubuntu.ubuntu-domain
d98acf3da34eeae5f7f679368814c5ca5a489752
7c441af6a3f71dd766edfc34919182227cbd8815
/mudlib/daemon/class/taoist/necromancy/netherbolt.c
a273b68cfcd370cebab5b046fc18fd3d00079b93
[ "MIT" ]
permissive
angeluslove/es2
a0c69e57522cb940346c6805fd85e19cc0bbbad1
9e24d6c0272231214f32699cbac23f4bbace370d
refs/heads/master
2023-05-26T04:21:12.032453
2020-01-17T08:53:50
2020-01-17T08:53:50
234,507,910
0
0
MIT
2023-05-07T19:53:16
2020-01-17T08:46:06
JavaScript
UTF-8
C
false
false
1,843
c
// netherbolt.c #include <ansi.h> inherit SSERVER; int cast(object me, object target) { string msg; int damage, ap, dp; if( !target ) target = offensive_target(me); if( !target || !target->is_character() || target->is_corpse() || target==me) return notify_fail("你要对谁施展这个法术?\n"); if((int)me->query("mana")...
[ "limq@95tf.com" ]
limq@95tf.com
81a3f0ee8ec796a9c3b8b6a2a42400ccca5b403b
060bc5ba9a8f707bdac927f30842febf9a4676a1
/lib/libkvm/kvm_private.h
02938547d7fb7fe17790d30cf55786b4f4c7523c
[ "BSD-4-Clause-UC", "LicenseRef-scancode-other-permissive" ]
permissive
sergev/LiteBSD
14ae93caa709d4707c3b122c243641c8214583c3
6f89c18880065a83d3d18661c80f72fb3397a888
refs/heads/master
2023-01-10T02:20:05.357875
2022-07-19T16:41:32
2022-07-19T16:41:32
19,167,171
318
58
NOASSERTION
2022-12-28T16:23:01
2014-04-26T02:55:34
C
UTF-8
C
false
false
3,660
h
/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software developed by the Computer Systems * Engineering group at Lawrence Berkeley Laboratory under DARPA contract * BG 91-66 and contributed to Berkeley. * * Redistribution and use...
[ "serge@vak.ru" ]
serge@vak.ru
e0d298bd87041806ff1024ec0b1c26ffb8dcc2fa
d18b7ce37475c3c43382dca98af92711a57ecdfc
/src/abc_pthread.c
f457f663aee11d053b1ff352de523358032f8247
[]
no_license
cran/Rbeast
1e588d5f3f4935610f60754de5a2d8b812d148a8
21117b700cae82ac6dbde18d8d6789212c97f5cb
refs/heads/master
2023-05-25T11:16:37.020404
2023-05-14T20:10:02
2023-05-14T20:10:02
187,180,592
0
1
null
null
null
null
UTF-8
C
false
false
16,640
c
#include "abc_000_warning.h" #include "abc_000_macro.h" #include "abc_ide_util.h" #if defined(_WIN32)||defined(WIN64_OS) #include "abc_pthread.h" #elif defined(MAC_OS) #include <sys/param.h> #include <sys/sysctl.h> #elif defined(LINUX_OS)||defined(SOLARIS_OS) #include <unistd.h> #endif #if defined(LINUX_OS) ...
[ "csardi.gabor+cran@gmail.com" ]
csardi.gabor+cran@gmail.com
c6d5edeb07e2957fcfdef6c82d86770afa9886bd
c4fa6f716d4b82e51e7372a2be3e41795d546420
/files.h
151527a0593366ef6db8408144391637c77be6d8
[]
no_license
rahilagrawal-university-assignments/trader_bot
d141aff3034c3626e9fc57af1b74dabd1a757e23
d07b41ba1c4a5b6d40cb90e3ed7b019f632ea4cf
refs/heads/master
2021-10-28T18:16:18.589143
2019-04-24T12:33:00
2019-04-24T12:33:00
null
0
0
null
null
null
null
UTF-8
C
false
false
389
h
#include "trader_bot.h" //Declaring prototypes of functions void buy(struct bot *b, int *action, int *n, int *flag); void sell(struct bot *b, int *action, int *n, int *flag); void move(struct bot *b, int *action, int *n, int *flag); int items_to_buy(struct bot *b); int nearest_petrol_station(struct bot *b); void get_ac...
[ "rahilagrawal3416@gmail.com" ]
rahilagrawal3416@gmail.com
f9458b64ea3f1f13942389b9a96bceb9127bfa2b
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/include/dt-bindings/clock/actions,s900-cmu.h
7c1251565f43921dc69b0074c9f7732069df26a1
[ "MIT", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
eerimoq/monolinux-example-project
7cc19c6fc179a6d1fd3ec60f383f906b727e6715
57c4c2928b11cc04db59fb5ced962762099a9895
refs/heads/master
2021-02-08T10:57:58.215466
2020-07-02T08:04:25
2020-07-02T08:04:25
244,144,570
6
0
MIT
2020-07-02T08:15:50
2020-03-01T12:24:47
C
UTF-8
C
false
false
2,699
h
// SPDX-License-Identifier: GPL-2.0+ // // Device Tree binding constants for Actions Semi S900 Clock Management Unit // // Copyright (c) 2014 Actions Semi Inc. // Copyright (c) 2018 Linaro Ltd. #ifndef __DT_BINDINGS_CLOCK_S900_CMU_H #define __DT_BINDINGS_CLOCK_S900_CMU_H #define CLK_NONE 0 /* fixed rate clocks */ ...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
745a0524a33603ff69f59b467b389688e13d6794
4b455210d238fd1685c69b361105338dfb665da4
/SX12XX by Stuart/Nodes/Stuart_RFM96_moteino__Trace_Node6/src/settings.h
ef55f33b21cee95171a3dc030aee11fefdec4cd1
[]
no_license
luisgcu/LoRa_tests
61c21c4096879e7b89b9e3f8c5be4b747a1c9592
f1323936e86762ad6588fa52168c1f81053598d4
refs/heads/main
2023-01-15T15:09:12.549530
2020-11-22T20:28:51
2020-11-22T20:28:51
307,147,884
1
0
null
null
null
null
UTF-8
C
false
false
4,596
h
/******************************************************************************************************* Programs for Arduino - Copyright of the author Stuart Robinson - 04/04/20 This program is supplied as is, it is up to the user of the program to decide if the program is suitable for the intended purpose and ...
[ "angelgcu@gmail.com" ]
angelgcu@gmail.com
f13252e7b70990ef319ad3d12820127957fab6ec
895752715bcb4ec5877a9fa12fd2327595fc9c7c
/107-quick_sort_hoare.c
f5393016a9ce4bf5c8ff99a31cb2ff4ec0a2c247
[]
no_license
ollyimanishimwe/sorting_algorithms
d7e89ae660253a846f4388d9c87df7dac9162c9a
899ed1f20a45d2810ef1a8b32d822d5bb071363b
refs/heads/main
2023-06-08T05:30:10.944434
2021-06-16T21:03:21
2021-06-16T21:03:21
377,609,508
1
0
null
null
null
null
UTF-8
C
false
false
1,488
c
#include "sort.h" /** *swap - the positions of two elements into an array *@array: array *@item1: array element *@item2: array element */ void swap(int *array, ssize_t item1, ssize_t item2) { int tmp; tmp = array[item1]; array[item1] = array[item2]; array[item2] = tmp; } /** *hoare_partition - hoare partition sor...
[ "imanishimweolyy@gmail.com" ]
imanishimweolyy@gmail.com
4e5b8ce404caebd402622f682b87609ac84b00f9
f075e3511030f831734899d9a72102b864fbbf24
/449/Lab6/cachelab-handout/trans.c
f3167ee29b430df2b0a2a965aa87ff5c787cf91d
[]
no_license
nicholaszullo/Backup
51b2424a55051deac5ad1266b42fba3c1449cde3
e749a15d5795bc1276089c116345fb7548f38ac3
refs/heads/master
2021-12-26T09:39:21.349876
2021-12-19T20:22:56
2021-12-19T20:22:56
165,927,512
0
1
null
null
null
null
UTF-8
C
false
false
2,834
c
/* Part B - Matrix Transposes Nicholas Zullo njz12 */ /* * trans.c - Natrix transpose B = A^T * * Each transpose function must have a prototype of the form: * void trans(int M, int N, int A[M][N], int B[N][M]); * * A transpose function is evaluated by counting the number of misses * on a 1 KiB direct mappe...
[ "njz12@pitt.edu" ]
njz12@pitt.edu
a80509613a7531ef8cb9716f2af2177833f936bb
45a731137cdbbcec5dc73ec4f7a1ab5da057f4c4
/myfirstmpi.c
646d2e170b6601b6a81679dd9f31595a82c9922a
[]
no_license
Ketan-K/ParallelComputing
2556fe3835ab46c08bf164a09002cfe172dab0d7
887f723b2f6cfdaec1e1af270cb038e36505d081
refs/heads/master
2020-06-26T12:54:18.645915
2019-12-03T10:44:04
2019-12-03T10:44:04
199,637,909
1
0
null
null
null
null
UTF-8
C
false
false
678
c
#include<stdio.h> #include<mpi.h> int main(int argc,char *argv[]) { MPI_Init(&argc,&argv); int n,s,N,i,size,rank,start,end,lsum=0,tag=0; MPI_Status status; MPI_Comm_size(MPI_COMM_WORLD,&size); MPI_Comm_rank(MPI_COMM_WORLD,&rank); N=100; // printf("Rank : %d\n Size : %d\n",rank,size); n=N/size; start=rank...
[ "noreply@github.com" ]
Ketan-K.noreply@github.com
76a6072f91bd5795e668cab1e6591a5e46d18ce7
e87d79f552cdcd1323aa9bbfa38ecbf777ac94d1
/src/blas/3/hemm/lu/flamec/test/test_Hemm_lu.c
48003af972b4b2a1a60f3202cdaf2c0c4396e38d
[ "BSD-3-Clause", "LicenseRef-scancode-other-permissive" ]
permissive
iotamudelta/libflame
539165f48d24c159ad494e813a1fc30fa2ea3791
70c19e770ead0ae846c59b59216deb16d236b40c
refs/heads/master
2023-07-28T12:31:59.890987
2023-07-13T19:33:42
2023-07-13T19:33:42
103,612,203
0
2
NOASSERTION
2023-05-04T19:04:09
2017-09-15T04:00:39
Fortran
UTF-8
C
false
false
5,725
c
/* Copyright (C) 2014, The University of Texas at Austin This file is part of libflame and is available under the 3-Clause BSD license, which can be found in the LICENSE file at the top-level directory, or at http://opensource.org/licenses/BSD-3-Clause */ #include "FLAME.h" #define N_VARIANTS 10 ...
[ "field@cs.utexas.edu" ]
field@cs.utexas.edu
4d3d314a1c61a3cebf0929deb73e3d2f09dce108
05ea228f2dcaec0ab60a6b4455b005dbfe1968fc
/NP_Project2/np_multi_proc_/include/global.h
5d374a11edc022db06eed126f17f886970483f18
[]
no_license
lovelessless99/108_Network_Programming
90633667f328640bdbea116cb5b852f5416c6a5b
e4af29f3bf5a692d60d8aeca56421880fd2f3eb4
refs/heads/master
2020-12-23T02:17:03.318979
2020-11-11T12:49:55
2020-11-11T12:49:55
237,001,359
0
0
null
null
null
null
UTF-8
C
false
false
299
h
#ifndef _GLOBAL_H_ #define _GLOBAL_H_ #define MAXFILE 1024 #define BUFFSIZE 100000 // length of input command line #define CMD_PARAM 100 // # of parameter #define TOKEN_BUFFSIZE 30000 // most # commands #define PROCESS_NUM 30000 #define BACKLOG 150 #define MAX_CLIENTS 150 #endif
[ "lovelessless99@gmail.com" ]
lovelessless99@gmail.com
827ddaf9d6faf82e164dfc4f137bc3d964fccbb2
751d837b8a4445877bb2f0d1e97ce41cd39ce1bd
/leetcode/sum-of-all-odd-length-subarrays.c
58905071310cb6662e7f31e98ec1e9df9c739e69
[ "MIT" ]
permissive
qeedquan/challenges
d55146f784a3619caa4541ac6f2b670b0a3dd8ba
56823e77cf502bdea68cce0e1221f5add3d64d6a
refs/heads/master
2023-08-11T20:35:09.726571
2023-08-11T13:02:43
2023-08-11T13:02:43
115,886,967
2
1
null
null
null
null
UTF-8
C
false
false
1,881
c
/* Given an array of positive integers arr, return the sum of all possible odd-length subarrays of arr. A subarray is a contiguous subsequence of the array. Example 1: Input: arr = [1,4,2,5,3] Output: 58 Explanation: The odd-length subarrays of arr and their sums are: [1] = 1 [4] = 4 [2] = 2 [5] = 5 [3] = 3 [1,4,2]...
[ "qeed.quan@gmail.com" ]
qeed.quan@gmail.com
b8db544b50c8867dccdc1a5fc2afe59d0d179257
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/def.h
84505a8500c0c0bbce7f6470bc0bc8dafbd616b9
[ "GPL-1.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "Linux-syscall-note", "GPL-2.0-only", "MIT" ]
permissive
eerimoq/monolinux-example-project
7cc19c6fc179a6d1fd3ec60f383f906b727e6715
57c4c2928b11cc04db59fb5ced962762099a9895
refs/heads/master
2021-02-08T10:57:58.215466
2020-07-02T08:04:25
2020-07-02T08:04:25
244,144,570
6
0
MIT
2020-07-02T08:15:50
2020-03-01T12:24:47
C
UTF-8
C
false
false
4,228
h
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright(c) 2009-2012 Realtek Corporation.*/ #ifndef __RTL8723E_DEF_H__ #define __RTL8723E_DEF_H__ #define HAL_PRIME_CHNL_OFFSET_DONT_CARE 0 #define HAL_PRIME_CHNL_OFFSET_LOWER 1 #define HAL_PRIME_CHNL_OFFSET_UPPER 2 #define RX_MPDU_QUEUE 0 #define RX_CMD_QUEUE ...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
b80b93e98414c5e09e2dac7780ac089e27f7ec61
b09745c00270c8ee0e439f39c17f60ee2b7d8afd
/mediatek/platform/mt6582/lk/mt_partition.c
4706c98c079941fd3778294b12a0d434873adfc1
[]
no_license
manjotsidhu/GODz_Kernel_a106_wiko
4b4151684a6a565a73ffb57e8a41e03e69237228
44ffc566dc59acf465c4a358da57924b3b069330
refs/heads/master
2020-12-02T22:51:39.007093
2017-07-16T11:04:16
2017-07-16T11:04:16
96,191,158
3
3
null
null
null
null
UTF-8
C
false
false
12,110
c
#include <mt_partition.h> #include <stdint.h> #include <printf.h> #include <malloc.h> #include <string.h> #include <platform/errno.h> #include <platform/mmc_core.h> #include "pmt.h" #include <target.h> #define DBGMSG(...) #define ERRMSG(...) #ifdef MTK_EMMC_SUPPORT #define PMT 1 #else #define PMT 1 #endif static part...
[ "aryanmk.mk5@gmail.com" ]
aryanmk.mk5@gmail.com
d7032d5ec8d90f9cdb40b31dc9e5adf600dc958b
87b51fefc7c37270a4a484248b9b088e9f7cd3f3
/Book sourse/02/example5.c
98a5db2d4918700e5283353781e3c701c4283c59
[]
no_license
greenty/LinuxC-Training
77a3460a6ae96a5f34c856b90b7632e2f6a6c293
3a363512f438f3b3bf835b93bbb6323849c3b6a7
refs/heads/master
2020-03-18T13:48:25.897849
2018-05-26T14:08:12
2018-05-26T14:08:12
134,810,217
0
0
null
null
null
null
UTF-8
C
false
false
805
c
/* exampe5.c */ #include <stdio.h> #define M 3 #define N 4 int main() { int x[N][M]; /* 定义二维数据,用于存放原始矩阵 */ int y[M][N]; /* 定义二维数据,用于存放转置矩阵 */ int i, j; printf("Please Input %d * %d integers:\n",M,N); for(i=0;i<N;i++) /* 两层循环,遍历二维数组x的各个元素 */ { for(j=0;j<M;j++) { scanf("%d",&x[i]...
[ "779235890@qq.com" ]
779235890@qq.com
c259f4a3f0af8c08e69338053cf02589c8f0f490
dd393166eb108f736d5c40823854fa4726e3703b
/oob/tcpsend01.c
c4fee5e5dcc648f194a577eeaf76e099991ecbf5
[]
no_license
lh123/unp
076d5d83b07eb103e53def07e734d23f2cd5fb90
8a6362b816b095127b3954d430ff5298e8024535
refs/heads/master
2020-04-16T22:42:50.241836
2019-04-25T11:37:30
2019-04-25T11:37:30
165,980,293
0
0
null
null
null
null
UTF-8
C
false
false
1,084
c
#include "unp.h" ssize_t Write(int fd, const char *buf, size_t n); ssize_t Send(int fd, const char *buf, size_t n, int flags); int main(int argc, char **argv) { if (argc != 3) { err_quit("usage: tcpsend01 <host> <port>"); } int sockfd = tcp_connect(argv[1], argv[2]); Write(sockfd, "123", 3); ...
[ "1585086582@qq.com" ]
1585086582@qq.com
bd440fb1971e1bb0c2ba05f48580c41e7ab0149c
4fb1d964e722d03ecbc1a614211f16b344ec6b9d
/Lab2.c
a4f2f0abac306af92133f1648ad1f237facbd3a7
[]
no_license
shahyanbh/Lab2_4C123-RTOS
19c717822d465541088d8b060024e5e8dc090d3a
957dff65f06a82852e4646466d8e28250e8f2c52
refs/heads/master
2020-09-20T09:27:44.060512
2019-11-28T18:04:46
2019-11-28T18:04:46
224,437,059
0
0
null
null
null
null
UTF-8
C
false
false
20,863
c
// Lab2.c // Runs on either MSP432 or TM4C123 // Starter project to Lab 2. Take sensor readings, process the data, // and output the results. Specifically, this program will // measure steps using the accelerometer, audio sound amplitude using // microphone, and temperature. (we will add light back in Lab 3) // Danie...
[ "shahyan30@gmail.com" ]
shahyan30@gmail.com
8b5ab36007cc25ebe16cd8375d3b66bae94c1d9e
2bbbe579a904fdc6ec06ad6c94237c9d06c58018
/testsuites/kernel/sample/kernel_base/core/swtmr/full/It_los_swtmr_064.c
afcb99f4f74645a9778e421ba85fce5a6de9bdcf
[ "BSD-3-Clause" ]
permissive
zuiaichi/kernel_liteos_a_note
98e622f2ee65ecb0ec987f234767bc5bfdf34262
547a4b3582581da3321c82b7e19114c165db0c94
refs/heads/master
2023-06-08T17:05:22.794654
2021-06-30T02:06:44
2021-06-30T02:06:44
null
0
0
null
null
null
null
UTF-8
C
false
false
3,779
c
/* * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved. * Copyright (c) 2020-2021 Huawei Device Co., Ltd. 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. Redist...
[ "kuangyufei@126.com" ]
kuangyufei@126.com
53b48ebffe26209b99b476238f3f3e47aa1b9df6
cc2a6f260f0263326cd61146d39ba1feb7599114
/Slave/fw02_1/src/app/app_power.h
f619f4c41e9294f22e9afa1b8e0971c3de4e16cc
[]
no_license
OpenFeeder/firmware-gsm-demo
7ca47f1ef82b8a84107641a8999c95f13951a8f2
064df7525a33add3b8fdda4993d3132775a1ae9d
refs/heads/master
2020-05-18T17:40:47.234414
2020-03-03T16:13:14
2020-03-03T16:13:14
184,561,551
0
0
null
null
null
null
ISO-8859-2
C
false
false
1,424
h
/** * @file app_power.h * @author OpenFeeder Team <https://github.com/orgs/OpenFeeder/people> * @version 1.0 * @date */ #ifndef _APP_POWER_HEADER_H #define _APP_POWER_HEADER_H //AlphaTRX modification #include "../../fw02_1.X/mcc_generated_files/pin_manager.h" /* Mesure * from 0 to 4095 (ADC 12 bits --> 4096)...
[ "anzilan@hotmail.fr" ]
anzilan@hotmail.fr
6f5c1661879b63a11be16c9ade3a9b07545bbf22
c5e358cab627a7d9b234fa42a11e0b9a174c9090
/ch2/ch2_8.c
da8ba6d7c1d2a79432a4589440fcce5a3d868937
[]
no_license
papago2355/C-algorithm-basic
3114d42cc99426f07916bb3b930775f924b3c5f4
8a46607c4b70a13a90a6b179ee618e17c38eef24
refs/heads/main
2023-04-19T17:49:41.656747
2021-05-10T01:54:27
2021-05-10T01:54:27
null
0
0
null
null
null
null
UTF-8
C
false
false
1,042
c
#include<stdio.h> int card_convr(unsigned x, int n, char d[]){ char dchar[] = "0123456789ABCEFGHIJKLMNOPQRSTUVWXYZ"; int digits=0; if(x==0){ d[digits++] = dchar[0]; } else{ while(x){ d[digits++]=dchar[x%n]; x /= n; } } return dig...
[ "noreply@github.com" ]
papago2355.noreply@github.com
aba703a811832b9b4cf190efad5b409d453d1d20
5061c0051efc98d77bb4c8dba888ea409fc31173
/my exercise/ex1/ex1.c
9dad6c584fa8256548bea8d9cd81c72ace50478d
[]
no_license
manishavi/Processes
239282647acf34a603f49c722ef3bab00c5d30db
66a52f643e2975cd42a8de3a3105516705b02805
refs/heads/master
2021-05-16T01:40:32.827632
2017-10-10T15:38:09
2017-10-10T15:38:09
106,333,901
0
0
null
2017-10-09T20:49:33
2017-10-09T20:49:33
null
UTF-8
C
false
false
867
c
// Write a program that calls `fork()`. Before calling `fork()`, have the main process access a variable // (e.g., x) and set its value to something (e.g., 100). What value is the variable in the child process? // What happens to the variable when both the child and parent change the value of x? #include <stdio.h> #in...
[ "manishalal972@gmail.com" ]
manishalal972@gmail.com
5a8fd5bfa7ca3cc1ad6d830429848d0cddf6cdde
79cb26584f881352456880ec8b4b2e4f4e45f651
/I/C/TPbis/TP2/ex1.c
99424500b2cc39b649ce627db96d705e921eb6ad
[]
no_license
Dorian77210/INSA
3a0851fb503a9cdf8b4080b63d185464b82f852c
5d790666b627e4cd5247d663bfe76263d6225429
refs/heads/master
2020-08-21T20:02:11.363706
2020-03-11T09:09:39
2020-03-11T09:09:39
207,615,605
0
0
null
null
null
null
UTF-8
C
false
false
152
c
#include <stdio.h> #include <stdlib.h> int main(int argc, const char** argv) { double x = 13.12; printf("%p\n", x); return EXIT_SUCCESS; }
[ "root@ifa501-e03.insa-lyon.fr" ]
root@ifa501-e03.insa-lyon.fr
0debc180f11ff6a6e63ecd5eea8d327247c4aab8
2ba8d0dea30eed57a665f1e1b69c5633a3ace364
/ni/src/lib/nfp/wrunaveW.c
94baec5a07cf2bfcb1b4ebca2c42855b07437ada
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
jlost/ncl_ncarg
be04103572ab1e1c262bd13c968d660a99bbabfa
2206367f1887732bc7745bfb5ca56f6543f77948
refs/heads/master
2021-06-04T11:41:56.343166
2016-09-27T17:49:58
2016-09-27T17:49:58
69,383,081
0
0
null
null
null
null
UTF-8
C
false
false
16,876
c
#include <stdio.h> #include <math.h> #include "wrapper.h" extern void NGCALLF(dwgtrunave,DWGTRUNAVE)(double*,int*,double*,int*,int*, double*,double*,int*,int*); extern void NGCALLF(drunave,DRUNAVE)(double*,int*,int*,int*,double*,double*, ...
[ "its-jlost@adsroot.itcs.umich.edu" ]
its-jlost@adsroot.itcs.umich.edu
deb89f9689deb7be7a9d0d1656333f55f51454e2
e794d595926d2f0541a22f89ce3146f6b2467b23
/CPTS_360/FinalProject/util.c
7218a4332560b45aa0d80fd6edebe8f223caa013
[]
no_license
brandongarza/WSU_Classes
e7845539c04339278c0ebc326877fc63d51076d4
665437f5ba6f0e584b27f07c77af6567e7395b8f
refs/heads/master
2022-12-13T09:41:36.660302
2020-08-17T21:11:09
2020-08-17T21:11:09
288,283,596
0
0
null
null
null
null
UTF-8
C
false
false
5,952
c
// From CS360 lecture notes int get_block(int fd, int blk, char buf[ ]) { lseek(fd, (long)blk * BLKSIZE, 0); read(fd, buf, BLKSIZE); } int put_block(int fd, int blk, char buf[ ]) { lseek(fd, (long)blk * BLKSIZE, 0); write(fd, buf, BLKSIZE); } int tst_bit(char *buf, int bit) { int i, j; i = bit / 8; j = bit % 8...
[ "brandini311994@gmail.com" ]
brandini311994@gmail.com
4b86828a31acaf0688f8d0aa9c9e6fe630bc2c5a
630bde0594c42e6f5f26100839be66c14f6c702e
/trunk/core-library/lib/src/dxl_core.c
7af4a9a29aceb73a5c75dfa68deb6c77211501d7
[]
no_license
profmason/cm9xx
4db1bbddd9aef340b5b88876a4d501b1c66584ea
bb9c36e021b5aa3d0ae00656bd7faafe5b0cb7ae
refs/heads/master
2021-01-18T06:13:47.934219
2013-03-06T04:27:54
2013-03-06T04:27:54
null
0
0
null
null
null
null
UTF-8
C
false
false
9,765
c
/* * @brief core functions for dynamixel SDK(hardware independent functions) * */ #include "dxl_core.h" /* * Global variables for operating dynamixel. * */ unsigned char gbInstructionPacket[MAXNUM_TXPARAM+10] = {0}; unsigned char gbStatusPacket[MAXNUM_RXPARAM+10] = {0}; unsigned char gbRxPacketLength = 0; unsigned...
[ "chase@robotis.com" ]
chase@robotis.com
886a764a703acbfc8c316df74b0da872902466a3
b16fffbb35f961109c524fe39a823ad1f162884b
/srcs/read/other_read/my_put.c
2cda0b83703cf564265d31db0d23040b907e40f3
[]
no_license
jle-quel/42sh
a7b4748cecb277f59ee569941f2756c2fba1feec
2d0d0d223de64e07c11adfab2fa4e7f3375c4dda
refs/heads/master
2021-08-31T07:10:17.906051
2017-12-20T16:12:23
2017-12-20T16:12:23
106,123,651
0
0
null
2017-10-07T19:10:17
2017-10-07T19:10:17
null
UTF-8
C
false
false
964
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* my_put.c :+: :+: :+: ...
[ "krystalz42cook@gmail.com" ]
krystalz42cook@gmail.com
cab2e95a1985c8badfde80a1ce6550702b26143f
50816db6dc47187a40824c3496eaed68c903770e
/图像配准/B样条弹性配准matlab/single_threading/rigid_transform_3d_single.c
ab8bab6ee31d5c9e15e9e0c9cb2620ca026ea4fd
[]
no_license
lajipeng/Medical-Image-Processing
232ae5bf1991f542006c0e81f83e1a3cee66808f
096731a1342c9db8c36828ad6b87c90e65264a16
refs/heads/master
2021-05-22T02:24:18.797124
2020-05-16T11:46:59
2020-05-16T11:46:59
252,926,677
3
1
null
null
null
null
UTF-8
C
false
false
5,264
c
#include "mex.h" #include "math.h" /* Imrigide transform Iout=rigide_transform_3d_single(Iin,Minv) * This function transforms a volume with a 4x4 transformation matrix * * Function is written by D.Kroon University of Twente (September 2008) */ // Convert 2D/3D matrix index to 1D index int mindex2(int x, int...
[ "45223567+lajipeng@users.noreply.github.com" ]
45223567+lajipeng@users.noreply.github.com
897018a39f2e12a96b2c828f1cee178ab3a61155
b5c61d44949d13da5ff62df5488c651d01b25405
/package/wav6/iwlwav-hostap/wpa_supplicant/wpa_supplicant_i.h
6fc82e5717234682959086a8a9a1c840bdb8288a
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
opensag/atom-openwrt
4346188e36ae7ee98d537111d6a908bf1be05d96
ff4f04f2f2c36a507d27406a040105cc763d2f89
refs/heads/master
2020-05-29T19:54:04.979614
2020-02-11T06:19:56
2020-02-11T06:19:56
189,340,026
3
2
null
null
null
null
UTF-8
C
false
false
47,115
h
/* * wpa_supplicant - Internal definitions * Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef WPA_SUPPLICANT_I_H #define WPA_SUPPLICANT_I_H #include "utils/bitfield.h" #include "utils/list.h" #incl...
[ "w28trees@126.com" ]
w28trees@126.com
18269a2d2f001bfbba1d5375a0ea105744f20b42
bc0dc76ba33623354d15d5306d6de9c9a0dd7fb4
/libft/ft_split.c
e5050c0b3183e4200dec2dc044eb78adfde2ac37
[]
no_license
Sirelaw/42_curcus_ft_printf
4993cbf040549384763ab671499c240cfe6ce8b1
ad1bc1129636e2a515acfe1d93695e9c3d1bfbc8
refs/heads/master
2023-08-25T03:13:02.060696
2021-10-19T17:54:16
2021-10-19T17:54:16
null
0
0
null
null
null
null
UTF-8
C
false
false
2,355
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_split.c :+: :+: :+: ...
[ "oipadeol@3-F-4.42heilbronn.de" ]
oipadeol@3-F-4.42heilbronn.de
7c9de6226c200f2e96f21d4366a3bdc432157c6d
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/UnityEngine_UnityEngine_Events_InvokableCall_1_gen_689MethodDeclarations.h
0eb2fc798bb043d66aaf470c3d4e83468e15b44e
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
1,787
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" // UnityEngine.Events.InvokableCall`1<PanWithMouse> struct InvokableCall_1_t22390; // System.Object struct Object_t; // System.Reflection.MethodInfo struct MethodInfo_t1087; // UnityEngine.Events.UnityAction`...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
ff3962d9e31b56771f617dc5d415f478af7eb152
5791d786c0f26fc287ac0fa7b293fe7339e041c2
/Classes/spiceCpp/frontend/postsc.c
0d923d3d9a31245d56e25ea000c9b45f93126407
[]
no_license
fengmm521/myspice
2c2da3e9c250e0a4193d2d999b2eb119c18f0d38
aacf57b4a11a34aa8ed38ee3557f6dc532aabffb
refs/heads/master
2021-01-10T11:26:53.150769
2015-09-27T16:28:59
2015-09-27T16:28:59
43,237,336
3
2
null
null
null
null
UTF-8
C
false
false
15,871
c
/********** Copyright 1990 Regents of the University of California. All rights reserved. Author: 1988 Jeffrey M. Hsu **********/ /* Postscript driver */ #include "ngspice/ngspice.h" #include "ngspice/cpdefs.h" #include "ngspice/graph.h" #include "ngspice/ftedbgra.h" #include "ngspice/ftedev.h" #include "ngspice/ft...
[ "fengmm521@gmail.com" ]
fengmm521@gmail.com
38be24208f132ea5e8e86a08e7df80b287bfae46
8830da8fc1bcf07dbe83cbf669d4c5686daebc36
/src/php/php_ngx.h
96d5de9438e53198f9f6a60d7af57e11409ebcf5
[ "BSD-2-Clause" ]
permissive
anoty/ngx_php7
b8e21eb9409d513894c95bd8415a4cee649705ed
99ff39874165f32a45ea35fae856d9ac5ac84964
refs/heads/master
2021-08-20T08:38:54.570863
2017-11-28T16:16:26
2017-11-28T16:16:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,667
h
/** * Copyright(c) 2016-2017 rryqszq4 * * */ #ifndef _PHP_NGX_H_ #define _PHP_NGX_H_ #include <php.h> #include <SAPI.h> #include <php_main.h> #include <php_variables.h> #include <php_ini.h> #include <zend_ini.h> #include <zend_exceptions.h> #include <ext/standard/php_standard.h> #include <ext/standard/info.h> ...
[ "279664262@163.com" ]
279664262@163.com
2411a93f9c93ee18e1af5649d179593b2e46ba8f
3e02c89b3b8f4dc6535b29cd8171c024156c22db
/src/compat/endian.h
bd1ff61d7c552c7775de99de75da321a3537ed09
[ "MIT" ]
permissive
cryptoghass/cribs
96ddd57066f46365e55afe53651f7fb5d7824d8c
09bdd33a8c676ba79e3c287cfe4df68da0b80ae0
refs/heads/master
2023-04-14T23:37:23.017496
2021-04-26T23:56:35
2021-04-26T23:56:35
null
0
0
null
null
null
null
UTF-8
C
false
false
4,913
h
// Copyright (c) 2014-2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COMPAT_ENDIAN_H #define BITCOIN_COMPAT_ENDIAN_H #if defined(HAVE_CONFIG_H) #include <config/cribs-config.h> ...
[ "hser2bio@icloud.com" ]
hser2bio@icloud.com
6010b6180a1d04e2384e19df845aeb3b0e41d016
2708c056880bc315a6120f45470aa24b7b7f0f64
/features/FEATURE_BLE/targets/TARGET_CORDIO/stack/cordio_stack/ble-host/sources/stack/att/atts_main.c
1ed753a4a6dab08a4366d134de3e255e810cfaf2
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
clevertrack1/mbed-os
6a3da26b3485c87d743e095ea790da6adb2514ff
96218c7f33a9888d24ba772335d268376d2d24af
refs/heads/master
2020-03-28T00:41:54.912161
2018-11-13T00:54:48
2018-11-13T00:54:48
147,441,499
2
0
Apache-2.0
2018-11-12T05:15:19
2018-09-05T01:24:16
C
UTF-8
C
false
false
17,047
c
/*************************************************************************************************/ /*! * \file * * \brief ATT server main module. * * Copyright (c) 2009-2018 Arm Ltd. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file excep...
[ "donatien.garnier@arm.com" ]
donatien.garnier@arm.com
b9040891b3adaec59b7c968fed6a43d3d80d7553
4c9eb9f6d1dc41c36547ca644c5d0799ec8eff87
/two/dir1/mul.c
0dd7c990d56fea31501f014faef6f399d812a446
[]
no_license
serepina/lab2
b1bee377118a9a28b683505d3244555bab9a8ea7
2b0744a93da552146985bb0dc037772915ef2e2d
refs/heads/master
2020-08-19T20:20:32.371129
2019-11-01T06:54:08
2019-11-01T06:54:08
215,949,846
0
0
null
null
null
null
UTF-8
C
false
false
121
c
/* mul.c */ #include "callib.h" int main(int a, int b) { int sum; sum = a * b; return sum; }
[ "jubin0927@gmail.com" ]
jubin0927@gmail.com
749e36d06b443d7975faf6c860151a4b187c2b58
6b74f732d3c7102580ee3854d39ac062985c86dd
/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/libchip_samv7/include/samv7/instance/instance_tc3.h
61073f3ca70c6f827176b5598d4a002103a17080
[ "freertos-exception-2.0", "GPL-2.0-or-later", "MIT" ]
permissive
lundinc2/FreeRTOS-Labs
c88055958c313fb1c45528f88be5d6bc832fc18d
775033dac12fe9fb3d55ac8cca43b2991fdbef57
refs/heads/master
2022-12-22T23:38:08.564023
2020-09-22T00:00:10
2020-09-22T00:00:10
271,820,118
0
0
MIT
2020-06-12T14:40:25
2020-06-12T14:40:25
null
UTF-8
C
false
false
12,971
h
/* ---------------------------------------------------------------------------- */ /* Atmel Microcontroller Software Support */ /* SAM Software Package License */ /* --------------------------------------------------------------------...
[ "noreply@github.com" ]
lundinc2.noreply@github.com
768a5973e29ed8bf50631f6f86572c5693ab2c1d
729c259586be57cf1932f54e46a60debb0423bbf
/src/worlds/world.h
29e3d890e1eae8cd721f81a6fdf2673cfa21082b
[]
no_license
dbusrepo/Ray-Tracing-in-C
a70a3ad3efbe215786b4b0500dd3e6fe6c377151
a06670ac1a4bf58b8b009ad3e84fd662538f0564
refs/heads/master
2023-01-14T04:46:24.735179
2020-11-21T11:17:35
2020-11-21T11:17:35
273,743,768
0
0
null
null
null
null
UTF-8
C
false
false
463
h
#pragma once #include <stdlib.h> #include "../utilities/view_plane.h" #include "../utilities/rgb_color.h" typedef struct tracer tracer_t; typedef struct camera camera_t; typedef struct geometric_object geometric_object_t; struct world { tracer_t *tracer; camera_t *camera; view_plane_t view_plane; rgb_color...
[ "davidedbusato@gmail.com" ]
davidedbusato@gmail.com
d30c2b9f2e28b5f843d2016e8f1bda2eac5347dd
0ab9cf41f15e19c2bad95353a4de4f9a74f015de
/NXT Lift Control.c
2b50c8aef07176dcb882e84ee3ee05452f465a19
[]
no_license
cporter/Cascade-Effect
bd35e3b56d2609087d7e0d5e50ee7f2c21d5d2df
83606543e31bc14c7739039ab77436c64412464f
refs/heads/master
2020-06-02T02:54:17.326526
2015-02-13T20:34:22
2015-02-13T20:34:22
30,721,349
0
0
null
2015-02-12T20:10:57
2015-02-12T20:10:57
null
UTF-8
C
false
false
1,023
c
#pragma config(Hubs, S1, HTMotor, HTMotor, HTServo, none) #pragma config(Sensor, S1, , sensorI2CMuxController) #pragma config(Motor, mtr_S1_C1_1, LIFT, tmotorTetrix, openLoop) #pragma config(Motor, mtr_S1_C1_2, motorE, tmotorTetrix, openLoop) #pragma config(Motor, mtr_S1...
[ "fp.monkey@gmail.com" ]
fp.monkey@gmail.com
1e73ec0d3404e9b1002ef1da2d6e28458211addb
e65246f7393f2e54bb96039179acce585c88860f
/externals/vixl/vixl/test/aarch64/traces/sim-fcvtpu-4h-trace-aarch64.h
78b95c7f3484e25cdd994ff1ce54500b55873b56
[ "0BSD", "BSL-1.0", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
EmulationChannel/dynarmic
431539acd4bb26e0681ed5ca08b378c6e6bbae10
0b78139ba607a59aabc8d806a041d330d4fadc4b
refs/heads/master
2023-05-31T08:18:46.651851
2021-06-27T00:08:31
2021-06-27T00:08:31
380,618,313
0
0
0BSD
2021-06-27T00:08:32
2021-06-27T00:07:22
C++
UTF-8
C
false
false
5,478
h
// Copyright 2015, VIXL authors // 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 of conditions ...
[ "MerryMage@users.noreply.github.com" ]
MerryMage@users.noreply.github.com
3b79f790df00cdd328911c42c403ca44fed2575f
77419e5ddb28648c2b956c9a3527e26dd34982f6
/CMSIS/stm32f4xx_it.c
b34ebe37f8a7d8bee38936635d8953b5e2ab54b5
[]
no_license
mcu786/KFly_STM32F4
e9106561b223ad8d9357d0e45d0c4cd12b8aed20
a2d096739223e3b46642e29a427752d2fc0b1511
refs/heads/master
2020-12-30T19:11:52.521116
2012-06-21T08:55:37
2012-06-21T08:55:37
null
0
0
null
null
null
null
UTF-8
C
false
false
5,626
c
/** ***************************************************************************** ** ** File : stm32f4xx_it.c ** ** Abstract : Main Interrupt Service Routines. ** This file provides template for all exceptions handler and ** peripherals interrupt service routine. ** **...
[ "ltu.korken@gmail.com" ]
ltu.korken@gmail.com
ebed4d9491f8ecb43d535f720261d66b055ec0d1
677b9b1aab74d998fa0dd26b0309ed5bbe8775e9
/T194/Backend/blackBoard/node_modules/opencv-build/opencv/build/CMakeFiles/CheckTypeSize/int8.c
57613071f7d1855c6551ea0950fd5a69a147d188
[ "MIT" ]
permissive
University-of-Petroleum-Energy-Studies/Hackathon_5.0
db7291a8d69569322dd3dbd7547e74d6460b9275
6a5e6547c4aaf9a1fc2cb8ed49fa5fd54ad7c351
refs/heads/master
2023-03-11T20:22:44.770520
2021-02-22T17:47:58
2021-02-22T17:47:58
340,362,356
2
69
MIT
2021-03-03T17:16:38
2021-02-19T12:27:01
HTML
UTF-8
C
false
false
1,152
c
#include <sys/types.h> #include <stdint.h> #include <stddef.h> #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p',...
[ "dibya.secret@gmail.com" ]
dibya.secret@gmail.com
ca6b16a40093d1920b66587135285653a93914d6
d2993a4020c1888c768aced855e8543349f0b7d2
/3rdparty/font_8x16.c
c0574693be5e28e7469d242849c2f6e83cde3994
[ "ISC" ]
permissive
aejsmith/kboot
91e831339c32df3c22313aebd68b0e8bc26264a6
24814cef3b63b4c10be625a1aa6a3d1f07784151
refs/heads/master
2023-07-25T18:47:11.367116
2023-07-08T11:51:17
2023-07-08T11:51:17
33,476,069
26
5
null
2017-06-06T18:40:14
2015-04-06T10:00:19
C
UTF-8
C
false
false
98,467
c
/*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Andrew Doran. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions ...
[ "alex@alex-smith.me.uk" ]
alex@alex-smith.me.uk
00f71c0e7608c3f18d9c7a105e6f429c128ce5d4
6baf51fb9712af4c8d6a42f2d594577e666499d0
/libft/ft_strjoin_more.c
15863c88b4a4d7b76ed1d255779423f168afa329
[]
no_license
FlorianMarckmann/42Cub3D
aff9f3f2a04e56368634ce6e17f1d9fb6f238fc2
c4090836799003cb37dbce2271665666d43c601c
refs/heads/master
2023-03-03T14:40:50.233234
2021-02-17T14:04:46
2021-02-17T14:04:46
335,957,491
0
0
null
null
null
null
UTF-8
C
false
false
432
c
#include "libft.h" char *ft_strjoin_more(char *s1, char const *s2) { char *str; size_t j; size_t i; if (!s1 || !s2) return (NULL); i = ft_strlen(s1); j = ft_strlen(s2); if (!(str = malloc(sizeof(char) * (i + j) + 2))) return (NULL); i = 0; j = 0; while (i < ft_strlen(s1)) { str[i] = s1[i]; i++; } ...
[ "marckmannflorian@gmail.com" ]
marckmannflorian@gmail.com
06452e89bf9628eb6fbd8a8152737605a8976aec
bcedfa7a5d643b438c5b8486440291c3c1dc7243
/round_robin/main.c
52816eee4cffeb63fd842bbbef78dd08bfca7701
[]
no_license
liqingqiya/C
7a4fe5b5c5f3d75803545eaa2d539da41dd0e530
211f7a322683a883f611bd1c91bba5cbd599a175
refs/heads/master
2016-08-03T23:23:57.141327
2015-02-21T14:31:01
2015-02-21T14:31:01
24,839,123
0
1
null
null
null
null
UTF-8
C
false
false
367
c
#include<stdio.h> #include"round_robin.h" int main(){ peer_t a={'a',5,0,5}; peer_t b={'b',1,0,1}; peer_t c={'c',1,0,1}; peer_t* peers[3]={&a,&b,&c}; peer_t* ret_peer; int i; for(i=0;i<10;i++){ ret_peer = round_robin_get_peer(peers, 3); //printf("%c\t", ret_peer->name); ...
[ "liqing.qiya@gmail.com" ]
liqing.qiya@gmail.com
0c91fb10d41e893350144f90314ed6f49b09f99c
fb818501de28dae0989bc039f6b15c13a57a7853
/libft/srcs/ft_memccpy.c
8bb13c6a760fb093ba63f856736d9be0511d6b32
[]
no_license
tbweb/demo-map-c
7e725e80759f2c77a8e987c70e662974a5161905
d42516b1fba53db5307197f1127a008142fb6b61
refs/heads/master
2021-01-10T02:48:06.858664
2016-01-27T10:41:49
2016-01-27T10:41:49
36,285,053
0
0
null
null
null
null
UTF-8
C
false
false
1,181
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memccpy.c :+: :+: :+: ...
[ "tbweb@macbook-air-de-baptiste.home" ]
tbweb@macbook-air-de-baptiste.home
c5f2675874ed909e9b70a2e3cd0545f3e0b18373
e52ead4c385656280f7084ef27f528ced277a302
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_SortedList_Slot.h
a95c0b7917537cd722f7a59f8848186162fb36c3
[]
no_license
P0nj4/Roll-a-Ball-Unity
9aacbf6f21c1b6774116f97849aaff38eef7fa7f
86e42295507bed9f4eac78ea01d8d92e0f0eea07
refs/heads/master
2021-01-10T16:00:13.441187
2015-10-13T19:29:56
2015-10-13T19:29:56
44,198,657
0
0
null
null
null
null
UTF-8
C
false
false
441
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Object struct Object_t; #include "mscorlib_System_ValueType.h" // System.Collections.SortedList/Slot struct Slot_t1104 { // System.Object System.Collections.SortedList/...
[ "german.f.pereyra@gmail.com" ]
german.f.pereyra@gmail.com
7f3ddc0691aab3d9b725a595dda4134b8df6524c
0bf3e7e9784c00a72e774e84bb042ac0cf83fc36
/lab2/task_1/src/pipe.h
210656d90b6ea1a060ac15339af92ac2fffa7012
[]
no_license
tyr0525/Computer-Architecture-Projects
73762b36e010969ee62eda5e36bb2ceb6b94ec41
2ff1060f9e918f20a0672c187e1e47e047c0bb8d
refs/heads/master
2022-11-28T05:40:54.028342
2020-07-10T09:07:56
2020-07-10T09:07:56
null
0
0
null
null
null
null
UTF-8
C
false
false
4,293
h
/* * Computer Architecture - Professor Onur Mutlu * * MIPS pipeline timing simulator * * Chris Fallin, 2012 */ #ifndef _PIPE_H_ #define _PIPE_H_ #include "shell.h" /* Pipeline ops (instances of this structure) are high-level representations of * the instructions that actually flow through the pipeline. This s...
[ "u3533156@hku.hk" ]
u3533156@hku.hk
2fd6952a05e8eade8fce467d47de129ceff43bdb
7389b7011b891238fd33388d4c26dcb0385c3e96
/model/Scade/System/ObuFunctions/TrackAtlas/Simulation/MRSP_FindMax_of_all_t_cat_TA_MRSP.c
593b46d2a292e78b1a6fbf3aec7a476e0a74fe33
[]
no_license
aprobst/modeling
fddc79c22b02d5420b8e46264a8313bd903db701
bfeac74f1f0422bca713ed0dc028b645dbe629a1
refs/heads/master
2020-12-31T03:35:49.067739
2015-07-31T14:20:16
2015-07-31T14:20:16
31,776,897
0
0
null
2015-03-06T16:00:32
2015-03-06T16:00:31
null
UTF-8
C
false
false
2,206
c
/* $*************** KCG Version 6.1.3 (build i6) **************** ** Command: s2c613 -config C:/GITHUB/modeling/model/Scade/System/ObuFunctions/TrackAtlas/Simulation\kcg_s2c_config.txt ** Generation date: 2015-07-28T17:06:46 *************************************************************$ */ #include "kcg_consts.h"...
[ "j.gaertner@railergy.com" ]
j.gaertner@railergy.com
25f69da65a4efc0127e5f083d4f9a8f87129f984
cfe69fc556729bdecf2118fa5bc329343c42ed80
/10.0.10240.16384/ntoskrnl/Functions/KitLogFeatureUsage.c
ee8003556ba157873c4262ab82e8b41d2f071de9
[]
no_license
Myprivateclonelibrary/W10M_unedited-decomp
8e5ec89a20e634ffc53457a40b0fd6d8a9e1757a
67b05851a3e262ff8a5d11ee50db34f28c350f16
refs/heads/main
2023-08-31T06:00:37.303105
2021-05-15T23:53:23
2021-05-15T23:53:23
null
0
0
null
null
null
null
UTF-8
C
false
false
1,876
c
// KitLogFeatureUsage // local variable allocation has failed, the output may be wrong! int __fastcall KitLogFeatureUsage(int a1, unsigned int a2, int a3) { int v4; // r7 OVERLAPPED int v5; // r8 OVERLAPPED int v8; // r3 const __int16 *v9; // r2 _BYTE *v10; // r0 int v11; // r2 int v12; // r3 int v13...
[ "64583248+Empyreal96@users.noreply.github.com" ]
64583248+Empyreal96@users.noreply.github.com
a5e38bacb120a04ffd62f9babacad73cc73b7f5f
0990595d5961b22176d41363268dfa37eabe72b3
/大车主控/160601 - 主控蓝场2/User/src/pwm.c
e6d076563844c0c99ccd7e36ef39d60e8e584c43
[]
no_license
UndefinedStar/robocon-robot
d2e2a9110a97eff594dd8c27a5d0b4e29c29f892
5d6f9c7dc682e19550a7dcfb30f6c5d5fc32d170
refs/heads/master
2022-07-03T11:15:50.073844
2020-05-06T12:50:01
2020-05-06T12:50:01
null
0
0
null
null
null
null
GB18030
C
false
false
3,298
c
#include "pwm.h" /* **************************************** * Name : PWM_configuration * Describe : 初始化时钟输出pwm波 * Input : None * Output : None * Return : None **************************************** */ void PWM_configuration(void) { TIM_TimeBaseInitTypeDef tim; TIM_OCInitTypeDef oc; GPIO_InitTypeDef ...
[ "983091438@qq.com" ]
983091438@qq.com
adfa770afda282d0786629c517011ed2eb83a6d6
5c563aa68bafaf500bd4598eb11c1757e124acb1
/MusikInstrument.h
26d99c76f4ad23700a32d14e3bc919dc6fa8db91
[]
no_license
george-DLJ/MusikInstrument
b3ecf6b77a7a89ff30e7a62194902e6ad681415f
522b3b08544375dc6bf3c982fcb87aaaca59ef81
refs/heads/master
2020-08-21T01:01:35.560033
2020-03-01T19:15:14
2020-03-01T19:15:14
216,084,293
0
0
null
null
null
null
UTF-8
C
false
false
663
h
// Only modify this file to include // - function definitions (prototypes) // - include files // - extern variable definitions // In the appropriate section #ifndef _MusikInstrument_H_ #define _MusikInstrument_H_ #include "Arduino.h" //add your includes for the project MusikInstrument here #include <GriffbrettActuator...
[ "jorge.miranda.b@gmail.com" ]
jorge.miranda.b@gmail.com
b0d3f27fc550980db2e2abbefeb673d952ac4904
140b6ec43306bee1aa75463db50827c08b52da3f
/data structure/栈与队列/八皇后递归实现.c
b8fc06489d996b7f83e8b25dde8f92b521b819c9
[]
no_license
cz0707/cz
74caefad9b3a6979136f25724804d3ee28f45168
7526847981faf6af1d055a4bdb4f678539769f23
refs/heads/master
2021-09-14T13:19:23.492145
2018-05-14T07:45:58
2018-05-14T07:45:58
114,208,848
0
0
null
null
null
null
UTF-8
C
false
false
1,521
c
#include <stdio.h> int count = 0; int Notdanger(int row, int j, int(*chess)[8]) { int i, k; //判断列 for (i = 0; i<8; i++) { if (chess[i][j] == 1) return 0; } //判断左上 for (i = row, k = j; i >= 0 && k >= 0; i--, k--) { if (chess[i][k] == 1) return 0; } //判断右下 for (i = row, k = j; i<8 && k<8; i++, k++) ...
[ "527724743@qq.com" ]
527724743@qq.com
39c35b50ce248d4fed6e5d2b660d15f41d7fbd46
282f5e78cc4cf7c630a94af9e481930bf1be6222
/multi.c
49877908db37cbd64526729a7cd111b4f9092957
[]
no_license
poovarasanmithran/7.2.poo
e09eb94048a70b8ea0f3df071e5c3fc1bdc90565
c044869cc772a3dcbea1bded3e43604461419a18
refs/heads/master
2021-05-03T06:40:25.096740
2018-02-07T11:04:55
2018-02-07T11:04:55
120,598,465
0
0
null
null
null
null
UTF-8
C
false
false
127
c
#include<stdio.h> void main() { int a[40]; scanf("%d",&a); if(a%7==0) { printf("yes"); } else { printf("no"); } }
[ "noreply@github.com" ]
poovarasanmithran.noreply@github.com
135234f7293b2eeacba84d20a89b1acf3e1e1204
39afe29d583fc7be4ca43cabfc1c4ada575291aa
/src/Lcode/Lcode/l_pred_query.c
77373f1eb838797a23cb535631734ea8377b915a
[ "NCSA" ]
permissive
invisibleboy/mycompiler
1bd198035295ece77508f7676ad2b6effcbeeea4
5736841b2578ec47039620c9df3fae02ecee66d7
refs/heads/master
2016-09-06T19:12:45.046188
2014-09-11T07:55:47
2014-09-11T07:55:47
23,909,090
1
0
null
null
null
null
UTF-8
C
false
false
19,805
c
/*****************************************************************************\ * * Illinois Open Source License * University of Illinois/NCSA * Open Source License * * Copyright (c) 2004, The University of Illinois at Urbana-Champaign. * All rights reserved. *...
[ "ut@localhost.localdomain" ]
ut@localhost.localdomain
944f8b89b544a68178513370732cecfa8aca9ea3
d4517268b8724ef208e9d07e59628208cb0832e9
/CardNumberValidation/c/cnv.c
48f302e13c5c39995bc14bf13d5e719b61bce3c4
[]
no_license
StevenDunn/CodeEval
5a8a47d3a90d9bed350228f6647e41f1298f46c2
b81bb31a600826d4b3b242a9a35aa1d28c2eb484
refs/heads/master
2021-01-15T15:33:53.155975
2018-04-01T13:54:16
2018-04-01T13:54:16
11,549,566
6
4
null
null
null
null
UTF-8
C
false
false
1,878
c
// card number validation soln in c for code eval by steven a dunn #include <stdio.h> #include <string.h> void trim(char*); void reverse(char*); void remove_spaces(char*, char*); int main (int argc, char* const argv[]) { FILE *fp = fopen(argv[1], "r"); if (fp != NULL) { char line[512]; wh...
[ "stevendunn@gmail.com" ]
stevendunn@gmail.com
6c77b1ff43cba4c8cad58cdabeaf447f5da751fa
d2f967e5d9e3f79bd428b43b22dc305173c68e3b
/ADRES/adres_telefon_fisi_open.h
2efefdd3af2a90de88e0d576bb112331d844d9ae
[]
no_license
adakteknoloji/E9
44886f1799b72ee98293245b23a87a53914be62e
41ed314ae97482de6716d5d4b2e6b521ac11e528
refs/heads/master
2021-01-01T17:57:03.914973
2014-04-11T11:26:12
2014-04-11T11:26:12
4,817,418
3
0
null
null
null
null
UTF-8
C
false
false
175
h
#ifndef ADRES_TELEFON_FISI_OPEN_H #define ADRES_TELEFON_FISI_OPEN_H void OPEN_ADRES_TELEFON_FISI ( int p_adres_id, QWidget * p_parent ); #endif // ADRES_TELEFON_FISI_OPEN_H
[ "cavit.vural@adak.com.tr" ]
cavit.vural@adak.com.tr
cba0746cc2d7ec9481724ca0f8100e5f753ef337
c7938839b5917c167683d6cd66734f94fb9a8ac9
/1072/1072.c
fbf55459eaf41cefb14834cdbc3883ff2f545863
[]
no_license
imageslr/tsinsen
fe76feaadb2506e0c1d5324f52f66d9440d18039
9d8678f581ddaf3786251c90c080b7da52aba894
refs/heads/master
2021-01-12T06:00:12.354270
2017-02-13T04:53:41
2017-02-13T04:53:41
77,270,871
2
0
null
null
null
null
UTF-8
C
false
false
891
c
#include <stdio.h> #include <string.h> int main() { char a[110],b[110],c[110],code[30]; int i,j,n; bool flag=false; memset(code,0,sizeof(code)); scanf("%s\n%s\n%s",a,b,c); n=strlen(a); for(i=0;i<n;i++) { if(code[a[i]-'A']==0)code[a[i]-'A']=b[i]; else if(b[i]!=code[a[i...
[ "zhukaihaorj@163.com" ]
zhukaihaorj@163.com
c9bac56a4489f2f5e222e2dd065296bea85c36a3
974389431527e451ce83049b11cd3dc42780108d
/phase_2/eval/jaeger/challenge/emulator/lib/vm/ops/vm_slti.c
9ac6e4762fca033006fa01dd00f08a85a46bef54
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
cromulencellc/chess-aces
21d8e70c8d9853a922ca0c90ffdd2c79ba390fb0
8ea5b0d75ddbf45fd74a7b8c5ca03fc4955eba8b
refs/heads/main
2023-05-24T01:13:07.917910
2022-11-02T00:56:52
2022-11-02T00:56:52
351,277,450
7
2
null
null
null
null
UTF-8
C
false
false
611
c
#include "vm_ops.h" #include <stdint.h> #include "r5/instruction.h" #include "vm/vm.h" enum result vm_slti(struct vm * vm, const struct r5_instruction * ins) { uint32_t lhs; enum result result; if ((result = vm_get_register(vm, ins->rs1, &lhs)) != OK) { return result; } if ((int32_t) l...
[ "bk@cromulence.com" ]
bk@cromulence.com
d0828db3e45b89d2c2a4271e3c9fc9afc834b05b
9da0cd15aa8e6de7472d7adffafa055af7e0c51a
/perip/arch/core/include/BR00x_nvic.h
e73956c64255cd17ea56594c5c4a79f2690b735a
[]
no_license
lisunhua/BR_SW_L
ae319004c2a1eb5ba8100b6901fa47887b7c3ba1
f7e32ce079e1a2bd5fedd631c0089a0244734f74
refs/heads/master
2021-01-26T15:25:13.781948
2020-02-27T07:34:16
2020-02-27T07:34:16
243,453,054
1
1
null
null
null
null
UTF-8
C
false
false
8,901
h
/* *++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Copyright (c) 1999-2018 Barrot Technology Limited * * All rights reserved. * *------------------------------------------------------------------------------ */ /** * @file BR00x_nvic.h * @brief This file contain...
[ "976711121@qq.com" ]
976711121@qq.com
0cc7b7de7e30805808c0d06879c2db40bc95b355
88137b65a7e48fbb9ea9d2b54a9809f21fbcb0d3
/Basic-EED1005/aaa/main3.c
c249e80caf228ded7aeb78deed745a1713706065
[]
no_license
OnurcanKoken/Introduction-to-C
db8ed750c6104cfc26120c8c47aad3e76f31dd4c
c87c6e4fe46c7711e903e53e847f6be80cc8ae3f
refs/heads/main
2023-07-03T23:08:44.362308
2021-08-04T03:52:56
2021-08-04T03:52:56
392,539,295
0
0
null
null
null
null
UTF-8
C
false
false
447
c
#include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { int exp, base; int product, i; product = 1; printf ("Enter integer base and exponent: "); scanf ("%d%d", &base, &exp); for (i = 1; i <= e...
[ "onur-koken@hotmail.com" ]
onur-koken@hotmail.com
c258a1aa5e818e96337256aee0b400433605b560
c425afb8bb6b182168fd4c3a46c9b334f4740e60
/d/kunlun/hmszroad1.c
9721e15c3fcb72f374294c51ee7b236d4a65baa5
[]
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
677
c
// Room: /d/kunlun/hmszroad1.c // Last Modified by Lonely on Jun. 29 2001 inherit ROOM; void create() { set("short", "山路"); set("long", @LONG 这是一条昆仑山上到处可见的山路。只是这里已到处可见梅树,梅 花盛开时到处一片火红,花香飘溢。 LONG ); set("exits", ([ /* sizeof() == 1 */ "westup" : __DIR__"hmszroad2", ...
[ "i@oiuv.cn" ]
i@oiuv.cn
9692181f793fc7d15fbd4248e406b0f075aea5dd
14229b42ec66bf41044c03bfd5f16054f42ed1aa
/Practica4/Ejercicio2/pescalar_par2.c
13b068e72197aec9f030d26ab9169f4170b70ff0
[]
no_license
jorgeusxiv/Practicas-ARQO
1e1a813bfdd7e36613a1d05d25881d69eac7c456
5e25069d36d5e6b13fa0bb6eafdfbfe2f4df44d3
refs/heads/master
2020-05-29T21:46:31.116292
2019-05-30T10:18:25
2019-05-30T10:18:25
189,392,262
0
2
null
null
null
null
UTF-8
C
false
false
1,062
c
// ----------- Arqo P4----------------------- // pescalar_par2 // #include <stdio.h> #include <stdlib.h> #include <omp.h> #include "arqo4.h" int main(int argc, char const *argv[]) { float *A=NULL, *B=NULL; long long k=0; struct timeval fin,ini; float sum=0; int arg,tamanio; if(argc != 3){ perror("El formato d...
[ "jorge.santisteban@estudiante.uam.es" ]
jorge.santisteban@estudiante.uam.es
2e5a15a37cfc3a21b2a52ac761a62c01b3bf5d50
88478dc2e33cf94238fe65bebfc811ae53291caf
/epic_game.c
1181b08ccaa4f749f1bed18300446809cc0d28d8
[]
no_license
oynlihui/code_forces-1
ddcf0a7b809f87466cf7bf3bd2bdbd1d72694253
185bcee00925a1fca5c31f8a34ca6d063d1c3db9
refs/heads/master
2020-04-28T22:04:42.297220
2018-11-28T12:46:11
2018-11-28T12:46:11
null
0
0
null
null
null
null
UTF-8
C
false
false
708
c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define NUM_PLAYER 2 int gcd(int x, int y) { if (0 == x) { return y; } else if (0 == y) { return x; } else { int r; do { r = x % y; x = y; y = r; } while (r != 0); ...
[ "jinyuliang@umeng.com" ]
jinyuliang@umeng.com
679a2a94ac470bd36690547db15c935560077e3a
865ee6eb8ee52c8056fbf406059c5481f365de6e
/openresty-win32-build/thirdparty/perl5-5.29.6/NetWare/nwstdio.h
50ab6f3d43c0e58cf92f6a51fd1a2d2247f9f9da
[ "MIT", "LicenseRef-scancode-ssleay", "BSD-3-Clause", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "LicenseRef-scancode-pcre", "LicenseRef-scancode-public-domain", "Zlib", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "Artistic-1.0-Perl", "GPL-1.0-or-later",...
permissive
nneesshh/openresty-oss
76e119081ea06bc82b184f96d531cc756b716c9d
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
refs/heads/master
2022-12-12T21:39:48.917622
2019-05-31T03:14:18
2019-05-31T03:14:18
184,213,410
1
0
MIT
2022-12-06T17:28:59
2019-04-30T07:28:45
C
UTF-8
C
false
false
4,322
h
/* * Copyright © 2001 Novell, Inc. All Rights Reserved. * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ /* * FILENAME : nwstdio.h * DESCRIPTION : Making stdio calls go thro' the * NetWare s...
[ "nneesshh@163.com" ]
nneesshh@163.com
b485442811eafb53a39519ea2f7cf9da09daa91f
bd3c98d2ef2b9afa5ed1a04ef1c0c8bfbc508dfc
/devices/hd44780_driver/delay.c
2c3cb7635c1b11e88ddb5bf01c1e44396aed6c68
[]
no_license
glocklueng/STM32F2_UKS
6831699965920b5b98fca54eef9237f7d6737e5c
92fac375f7ec6f742d3c979f4143aba556bd6fdb
refs/heads/master
2021-01-18T08:36:55.426460
2015-02-17T09:15:54
2015-02-17T09:15:54
null
0
0
null
null
null
null
UTF-8
C
false
false
3,218
c
#include "delay.h" __IO uint32_t TimingDelay = 0; __IO uint32_t Time = 0; __IO uint32_t Time2 = 0; uint8_t DELAY_Initialized = 0; volatile uint32_t mult; #if defined(DELAY_TIM) void DELAY_INT_InitTIM(void); #endif #if defined(DELAY_TIM) void DELAY_TIM_IRQ_HANDLER(void) { TIM_ClearITPendingBit(DELAY_TIM, TIM_IT_Upda...
[ "nowhard@mail.ru" ]
nowhard@mail.ru
22d4a52fa58ea6e31c6a282b897ca2a1255b96e7
e19d60c4ce29af1565a22190ac3fd4034d704558
/client/src/get_return_args.c
0b17cbc10928cf6a00abe72cb9406f7eadbf60de
[]
no_license
MaximePayant/B-NWP-400-LYN-4-1-myteams-maxime.payant
9c7ff8600aab06cd424f5b0ec5933763078b80c2
d89ece8951e2c60f3c051df994cce430622ff4d3
refs/heads/master
2023-08-16T15:35:17.158722
2021-06-01T19:40:17
2021-06-01T19:40:17
406,654,018
0
0
null
null
null
null
UTF-8
C
false
false
969
c
/* ** EPITECH PROJECT, 2021 ** get_return_tags.c ** File description: ** get_return_tags.c */ #include <stddef.h> #include <string.h> #include <malloc.h> char **get_return_args(const char *args) { char **return_args = NULL; char *save = strdup(args); char *arg = save; char *value = NULL; int index...
[ "guillaume.soisson@epitech.eu" ]
guillaume.soisson@epitech.eu
04d52e7f370f0e7214cf22259c24cc8a87c1fe43
f88abdd8da576d9bcb88ca2062b98ca810b754c4
/include/rassapi.h
07249b0302711f934a55a4869fc0a8fdcf56fb00
[]
no_license
tagillov/x86_64-w64-mingw32
a38ec3d5cf39a3f0ee544c3b178fa26d88107139
fab0778eb5fc34cdab273b99e4a0c8a326e04f31
refs/heads/master
2020-04-07T14:21:52.127685
2014-08-14T23:44:01
2014-08-14T23:44:01
158,444,027
0
0
null
2018-11-20T19:57:42
2018-11-20T19:57:42
null
UTF-8
C
false
false
39
h
../../share/mingw-w64/include/rassapi.h
[ "elombrozo@gmail.com" ]
elombrozo@gmail.com
6e3784ed810267f30f2792ce4f253c7e7598c049
50034680ccd676ea71bf7a59c2b0b646da4b0403
/ejer2.c
84a570b43508c332e6d2d761a9e1f74822673718
[]
no_license
Yenreh/Llamada-al-sistema-Fork
355a2d59c0a5ee22931c9e115aaf2a3c9511aaba
94d53319ac1ff063efe3169b5d6f7901cef8d880
refs/heads/master
2020-03-13T09:35:59.790887
2018-05-02T19:28:22
2018-05-02T19:28:22
131,067,532
0
0
null
null
null
null
UTF-8
C
false
false
2,714
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <fcntl.h> //Author:Herney Eduardo Quintero, Juan Camilo Sanchez, Carlos murillo // Incluir archivos de cabecera para las funciones que requiere para // solucionar el enunciado ...
[ "noreply@github.com" ]
Yenreh.noreply@github.com
cf8293cff15487a99cd7db28ecb771539709c678
b4ce9e80b8a5fab531136f0b6ac17128f0b60376
/125_GeV_Correction2/Run05Background.C
7554a0ac36f89c494c9784d2eb35f0229ffa63cd
[]
no_license
k579l290/Physics-Research-summer2019
0a3c81e5fa18c9b862cfe89e1955061fc8a4524a
4b4e9c7b329b848b0f24912a0ea8ed846ddcc32d
refs/heads/master
2020-12-15T19:05:53.507422
2020-01-21T00:13:50
2020-01-21T00:13:50
235,220,546
0
0
null
null
null
null
UTF-8
C
false
false
3,510
c
#define Run05Background_cxx #include "Run05Background.h" #include <TH2.h> #include <TStyle.h> #include <TCanvas.h> #include <TFile.h> #include <TLorentzVector.h> R__LOAD_LIBRARY(libTreePlayer) void Run05Background::Loop() { // In a ROOT session, you can do: // root> .L Run01Background.C // root> Run01Back...
[ "k579l290@ku.edu" ]
k579l290@ku.edu
1042b299539ab99a747fafa0298d42b51ff63289
f575b6ff7e0f0e2a1e8b41f9ab83ac853231ba68
/pkg/pcqa/src/abelian.c
0c652b6d284e91366784526fb033d9eecb60e825
[]
no_license
jmichel7/gap3-jm
756c6e6c5d3c7956fe4dc20b2f76f320f49a11b5
3eeb3c4d174d567c51e712f997febb1e8e2ad65f
refs/heads/master
2023-08-23T19:04:53.627679
2023-08-21T14:21:33
2023-08-21T14:21:33
124,115,667
0
3
null
null
null
null
UTF-8
C
false
false
5,552
c
/* Written by: Eddie Lo Date started: November 21,1994. Part of the polycyclic quotient algorithm program. This program finds the abelian quotient. Introduction: Given some relators in RelGen, this module computes the abelian quotient and its polycyclic presentation. The variables posaut, negaut, Powe...
[ "jean.michel@imj-prg.fr" ]
jean.michel@imj-prg.fr
563a7aaafc8a317b648be787a040bdfd63ad2129
eb9de3842fea046b8e6e24ce410f5ca942c116f5
/old/master-ds/graph/AGraph/BFS/queue.h
f21c4ac7c92a5cfa4db6d6d87e4f9f35203260f0
[]
no_license
MiniKimmy/c-dsa
ca58f42ea7b2e19afbd59828895bae412b7898d0
a025ad89de0858d56f1b023c52e0e752c32d6085
refs/heads/master
2021-06-07T17:42:56.464835
2020-03-06T07:56:51
2020-03-06T07:56:51
107,553,247
0
0
null
null
null
null
UTF-8
C
false
false
1,585
h
typedef struct QNode { int v; struct QNode* next; }QNode; typedef struct { QNode* front; QNode* rear; int count; }Queue; #pragma region QueueFuntions Queue* initQueue(); int enQueue(Queue* Q, int value); int deQueue(Queue* Q, int* topValue); int* peek(Queue* Q); int destroyQueue(Queue** Q); #pragm...
[ "343733617@qq.com" ]
343733617@qq.com
6502bf997e66fb4c52ecb5c14181ca55bf0e2f4b
47062e3f801ad63427dc0a13cf1ac7b86f36fac8
/数据结构day7/双向循环链表/Dlist.h
b9a05be40155b0dbf998c1f31a2ce12d54fbc9f4
[]
no_license
precious256/basec.github.io
ffe9c9eae5f086d2845e8216b5446f981c7f9626
1403324657983dec99480b3dcfcf5bfe52b489fa
refs/heads/master
2023-06-05T00:50:50.304695
2021-06-29T02:26:11
2021-06-29T02:26:11
357,036,404
1
0
null
null
null
null
GB18030
C
false
false
1,208
h
#pragma once typedef int eletype; struct dlist { eletype val; struct dlist* prev;//记录的是结点的前一个元素 struct dlist* next;//记录的是结点的后一个元素 }; typedef struct dlist* LinkNode; typedef struct dlist Node; //此处写的是带头结点 //初始化头结点 LinkNode init(); //执行的是开辟内存函数 LinkNode my_malloc(eletype data); //执行的是头插操作 void pushfront(LinkNode head...
[ "894529306@qq.com" ]
894529306@qq.com
ceed6037d0345df7617a09ee441a5eb663205982
c2e095cce751fdabb4be5d8b2405ba79d43b20b0
/examples/hello.c
7ec7524ad5a3983904e94cfe140a80161c1bbb69
[ "BSD-3-Clause" ]
permissive
hkchai/c_common
bf755cbb500dce9c8e96f19e86ea480ca395438c
506c945d4c9c676f40b01db0672b1265d168c8c6
refs/heads/master
2021-01-22T12:12:22.086143
2009-12-16T12:19:46
2009-12-16T12:19:46
null
0
0
null
null
null
null
UTF-8
C
false
false
190
c
#include <stdio.h> #include "../common.h" static unsigned int global_verbose_level = V_IMPORTANT_S; int main() { VPRINT_PLAIN(V_IMPORTANT, "Hello, World\n"); return 0; }/* main */
[ "hk.chai@gmail.com" ]
hk.chai@gmail.com