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
0bd6a230aa7a5b20832a088025c42475fa44419b
94e17956f8c4c48cf63ad4eb3e6d145caf9274c5
/primesum.c
ddcfb9736d42ab257914d5901db54ad8d5f0dd81
[]
no_license
2068/C
7bb8ab2c274b9d8270be1872b7d77bd95bc6610b
3eafd954aee564fcc83ea9562780cd9846482d09
refs/heads/master
2021-01-21T00:05:37.273445
2017-10-09T15:52:01
2017-10-09T15:52:01
101,702,278
0
0
null
null
null
null
UTF-8
C
false
false
377
c
#include<stdio.h> int isPrime(int i) { int ret = 1; int k; for (k = 2; k < i - 1; k++) { if (i%k == 0) { ret = 0; break; } } return ret; } int main() { int m, n; int sum = 0, cnt = 0; scanf("%d %d", &m, &n); if (m == 1) m == 2; for (int i = m; i <= n; i++) { if (isPrime(i)) { sum += i; ...
[ "2068314880@qq.com" ]
2068314880@qq.com
5e55581f668c141ebb9bc028a8b301ca956585f1
65b2ced3133139660fc05f63fd167401aad6ce4d
/push_swap/sortAB.c
bbd403a5bdbbc618e3fe5cc612fe7fcd2522c026
[]
no_license
masharaven/push_swap
e1c61ab4574f1346206d0d2eb947a455e785e0e6
561c999a552333d5552e89e940a9f68a5b98550d
refs/heads/main
2023-08-23T07:23:52.755567
2021-10-07T15:04:41
2021-10-07T15:04:41
387,183,619
0
0
null
null
null
null
UTF-8
C
false
false
64
c
int main() { int a[] = {9, 4, 8, 7}; int b[] = {}; }
[ "noreply@github.com" ]
masharaven.noreply@github.com
d5201e9614dd843d36aa9a415f2216c9de9250a5
0753b80a7c3289c6239764b75704cd11d070ff39
/C/Listas Resolvidas/Arrays/04.c
193ab0fef3cc8ca8afa3c6423b98aa9ef40aa7b8
[]
no_license
cristianfreire/workspace
de4b7b485cf8a4f0af60094e30dcd4c6727a757f
3acc8aef96235fcc1a1b730cd785821a0b751248
refs/heads/master
2023-08-23T00:57:43.011187
2021-10-30T19:23:07
2021-10-30T19:23:07
422,774,828
0
0
null
null
null
null
UTF-8
C
false
false
966
c
#include <stdio.h> #include <stdio.h> #include <stdlib.h> void preencher(); void mostrar(); void difMenorMaior(); int main(){ int t=10, v[t]; preencher(v,t); mostrar(v,t); printf("\n"); difMenorMaior(v,t); return 0; } void preencher(int vetor[], int t){ for (int i=0; i<t;i++){ v...
[ "cristianpassos51@gmail.com" ]
cristianpassos51@gmail.com
1ac44ea5e2c775124c51ed8d2ca210c90b34bba2
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/acpi/extr_thermal.c_thermal_get_trend.c
12dd5b80e6b4a8c2964aa9f77228b4bfdda18f00
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
2,347
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
a83a0df916434efa5e2e0f8bc0d9860134697255
5470644b5f0834b9646649da365c96101a2f9b2a
/Sources/Elastos/Frameworks/Droid/Base/Core/inc/view/animation/AnimationMacro.h
a4edaeb04f1a34ff5f6223f650376bfe70634111
[]
no_license
dothithuy/ElastosRDK5_0
42372da3c749170581b5ee9b3884f4a27ae81608
2cf231e9f09f8b3b8bcacb11080b4a87d047833f
refs/heads/master
2021-05-13T15:02:22.363934
2015-05-25T01:54:38
2015-05-25T01:54:38
116,755,452
1
0
null
2018-01-09T02:33:06
2018-01-09T02:33:06
null
UTF-8
C
false
false
38,409
h
#ifndef __ANIMATIONMACRO_H__ #define __ANIMATIONMACRO_H__ #define IANIMATION_METHODS_DECL() \ CARAPI Clone( \ /* [out] */ IAnimation** animation); \ ...
[ "chen.yunzhi@kortide.com" ]
chen.yunzhi@kortide.com
098741a635be7f3ca45eeb27e19fa26544b5927d
4ec8b0c4292bf545f80aba6e6de77a2a3bff7eb7
/proj2.h
aa6e9cf54475b8afa73e296f59592629b9f9c5f7
[]
no_license
catarinalegria/Introduction-to-Algorithms-and-Data-Structures-2
1fc5f0630700b7a5b537f205b8b4b8cb552ab85b
e9a0cae7334ca797ee7a40b90c270fb2665f334b
refs/heads/master
2022-12-31T21:35:51.765921
2020-10-11T21:38:41
2020-10-11T21:38:41
303,216,950
0
0
null
null
null
null
UTF-8
C
false
false
1,242
h
#ifndef PROJ2 #define PROJ2 #include "auxs.h" /*funcao que adiciona um contacto as duas hashtables e, ordenadamente, a uma lista; recebe como parametro a hashtable dos nomes, a hashtable dos dominio, e a lista ordenada; nao retorna nada*/ void addContact(list **hashNames, list **hashDom, list *list); /*funcao que r...
[ "catarina.alegria@gmail.com" ]
catarina.alegria@gmail.com
f931509a1656c58543164a584da8baf2f9885429
26850ab2fc12fa915109002998de105d568c4c07
/extensions/ruby/hello.c
ed13b6e10a40a53a93aafd40e9761691bc345e3e
[]
no_license
bshlgrs/big_o
26f6110292788a9b5377187e364fb0ac7ffd8e0f
5855144855f1a1a4e406d65e999a7c7bd1407d34
refs/heads/master
2020-05-29T11:37:05.179602
2015-08-10T05:19:19
2015-08-10T05:19:19
33,469,210
0
0
null
null
null
null
UTF-8
C
false
false
181
c
#include <ruby.h> VALUE hello(VALUE self); void Init_hello() { rb_define_global_function("hello", hello, 0); } VALUE hello(VALUE self) { printf("Hello!\n"); return Qnil; }h
[ "bshlegeris@paypal.com" ]
bshlegeris@paypal.com
bcba764012cb1fb8fcf6ffc07332da0bab75c415
d90ab61927b9753368402224640a885e996668fe
/C/k&rC/KR_026.c
442c87b88250e38c949f63b47ebd2c524741604b
[]
no_license
Yobmod/dmltests
3ea9db31ebf71d6360f31af35bbb8302b4931ac2
4f0463328aad56dad764aabbc5c2ff48b340de95
refs/heads/master
2022-12-15T14:37:10.654701
2021-05-16T19:44:54
2021-05-16T19:44:54
120,022,245
0
0
null
2022-09-16T17:49:54
2018-02-02T19:28:33
C
UTF-8
C
false
false
329
c
#include <stdio.h> int power(int m, int n); /* test power function */ main() { int i; for (i = 0; i < 10; ++i) printf("%d %d %d\n", i, power(2,i), power(-3,i)); } /* power: raise base to n-th power; n >= 0 */ int power(int base, int n) { int i, p; p = 1; for (i = 1; i <= n; ++i) p = p * base; retu...
[ "yobmod@gmail.com" ]
yobmod@gmail.com
3481e29bebbeab9fffe0c70b258c9de8354f09c4
c7ae296357f77583ebc5067ce504dd5046e10b78
/Mergesort.c
f8e0c2daa80b396c315add54998390dae2b8cc45
[]
no_license
saurabhmishra2001/DAA-Lab-Work
2dbbbfca6fd8dd309b517d909301becd568673c4
8100fed4a28a76e53a37afe3b009612778545a6d
refs/heads/main
2023-02-14T14:16:28.043574
2021-01-19T06:02:49
2021-01-19T06:02:49
null
0
0
null
null
null
null
UTF-8
C
false
false
1,045
c
#include<stdio.h> void merge(int arr[], int p, int q, int r){ int n1 = q - p + 1; int n2 = r - q; int L[n1+1], R[n2+1]; for(int i = 1; i <= n1; i++){ L[i] = arr[p+i-1]; } for(int j = 1; j <= n2; j++){ R[j] = arr[q+j]; } L[n1+1] = 9999; R[n2 + 1] = 9999; int i = ...
[ "noreply@github.com" ]
saurabhmishra2001.noreply@github.com
c8d2e304267f4212b466238b0043d18fc37cd98c
006b9da64388b4486f9abf6202476e00019de986
/gateway/source/button_task/button_bsp_hc32f64.c
3e671a2e934ca1d9fc294fc5a47ef938d4357a9a
[]
no_license
PhoenixTreeember/gateway
cfb3bb1999ee0481c2695aa93dc3376261ecb161
3f8da47f914bfeba9d703b614b3697887a323c26
refs/heads/main
2023-09-06T04:28:09.614051
2021-11-08T01:47:50
2021-11-08T01:47:50
null
0
0
null
null
null
null
GB18030
C
false
false
5,340
c
/** ********************************************************************************************************* * multi_switch_control * (c) Copyright 2021-2031 * All Rights Reserved * * @File : * @By ...
[ "290876939@qq.com" ]
290876939@qq.com
58bb3176b55b8638bab8c927f7a3a4d78d32ee52
e80e5374b8fd00379293adb35fc8cf017d5f4cc7
/qemu_mode/qemu-2.10.0/roms/openbios/fs/hfs/record.c
92a3adddf0d0d9b21a5e1e2ab18bc29d86799563
[ "Apache-2.0", "LicenseRef-scancode-generic-cla", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.0-or-later", "LicenseRef-scancode-generic-exception", "GPL-2.0-or-later", "LicenseRef-scancode-other-copyleft", "GPL-1.0-or-later", "GPL-2.0-only", "LicenseRef-scancode-proprietary-license", "LGPL...
permissive
CAFA1/afl
dcebf3a3acae3e9783bbb79d8cff6958b496fa34
01c113b61ab70c3b02f3d7c74e6dfa20cfc7813d
refs/heads/master
2023-04-10T14:30:34.901666
2020-07-27T01:06:32
2020-07-27T01:06:32
272,596,630
0
2
Apache-2.0
2021-04-15T00:56:55
2020-06-16T03:03:26
C
UTF-8
C
false
false
15,712
c
/* * libhfs - library for reading and writing Macintosh HFS volumes * Copyright (C) 1996-1998 Robert Leslie * * 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 Licens...
[ "longlong_vm@dell_book.com" ]
longlong_vm@dell_book.com
7130b7e424b3604641d7fef6dc978656a4398ed6
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/FFmpeg/libavcodec/extr_aacenc_utils.h_abs_pow34_v.c
a5d54a5441d3bf98c4ad7b39467f2b7184a86a3a
[]
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
666
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
8fba0696f9f4b82c4b1acc6dc91fd568f9b5ff6c
8d7514271b08caaa8c757d0747853d54642e9e63
/interface/hal/storage/sim/MT6302_spi.h
5119ee8beffabf576a67c0d7770a27d20b0e99f8
[]
no_license
npnet/MyCode
0bd3e32d5890c411b16e01cdb8acf5624c7c0a02
9fa7aa78d62f1cd3c2a39a36875cb41cf00522fe
refs/heads/master
2023-07-23T13:19:29.575050
2018-07-05T13:01:09
2018-07-05T13:01:09
140,229,839
1
2
null
2023-07-21T10:21:01
2018-07-09T04:07:28
C
UTF-8
C
false
false
3,971
h
/***************************************************************************** * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained * herein is confidential. The software may not be copied and the information * contained herein may not be used or dis...
[ "zhaoran.jia@nbbsw.com" ]
zhaoran.jia@nbbsw.com
e6170971517aafcca64bd0ce553232b4c20e4664
e2308077831a8db038d650e09c7d998f4de99b58
/delay.c
6fb1f01bda5b6f6893a0b0f8750bbba8433aa9a7
[]
no_license
jig/torque-positioning
0aa1e89c3ad324880dc0ca1d603937718f50ed26
d2f2820e36d5cbdb198366e01793503295ac047e
refs/heads/master
2021-01-20T22:26:02.749910
2015-01-22T21:49:15
2015-01-22T21:49:15
29,701,824
0
0
null
null
null
null
IBM852
C
false
false
854
c
/****************************************************************/ /** Author: Jordi ═˝igo Griera **/ /** Mail: a s t r o j i g on g m a i l dot c o m **/ /** GNU Public Licence v3 **/ /** Doc: see http://code.google.com/p/jig-torque...
[ "jig@users.noreply.github.com" ]
jig@users.noreply.github.com
5332d4ebbb0c2daacefea7b9e62febc6a772f86f
5a4fc18db7b323adc043f0f0c9fe4926d7c5fbeb
/dep/libuv/test/test-tcp-flags.c
33c2002ca744701976890a583cc20e408f185faf
[ "BSD-3-Clause", "ISC", "BSD-2-Clause", "MIT" ]
permissive
munificent/magpie
32e2c52b38e5a6640b35219c99ba96e8365c45ab
f5138e3d316ec1a664b5eadba1bcc8573d3faca3
refs/heads/master
2021-06-03T02:06:29.775296
2020-12-01T21:51:19
2020-12-01T21:51:19
107,630
284
52
NOASSERTION
2020-12-01T21:51:20
2009-01-14T23:19:57
Python
UTF-8
C
false
false
1,617
c
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
[ "robert@stuffwithstuff.com" ]
robert@stuffwithstuff.com
0848d8728fd46a32fd0dc05beb3a9f43a88a8f58
6c66fe77889257b562a598aa078f43fbad3f805f
/include/etl/version.h
44270f5760ad7234f00e45cd6b51f417debc01ec
[ "MIT" ]
permissive
ivankravets/etl
7d229cb1d7fc1b0c3b6699d67f255176a10eee60
da20977d64e562ec613de2f28e426769ad7b5467
refs/heads/master
2022-03-11T04:03:25.303242
2020-01-12T16:50:45
2020-01-12T16:50:45
233,606,175
0
0
null
2020-01-13T13:49:39
2020-01-13T13:49:39
null
UTF-8
C
false
false
2,235
h
///\file /****************************************************************************** The MIT License(MIT) Embedded Template Library. https://github.com/ETLCPP/etl https://www.etlcpp.com Copyright(c) 2018 jwellbelove Permission is hereby granted, free of charge, to any person obtaining a copy of this software an...
[ "github@wellbelove.co.uk" ]
github@wellbelove.co.uk
3457c880cf616929b46bf2a42a43c2a3aa3f8638
be1021fb88ffbe0ae8779a176c81d9a9d19d3205
/STM32F767-BaseonRegisterExperiment_no_os/INCLUDE/dac.h
c8e8452d98ab5b339cb5c8bcdcefda5705e07733
[]
no_license
sagacity-leichuan/STM32F767-BaseonRegisterExperiment
6186d0b691d41aa6a8fbff6e319815de74ce991a
ad6a187d8127d8eb5b1036479895d9f4123ad33e
refs/heads/master
2020-03-21T17:41:18.976504
2018-06-27T07:57:02
2018-06-27T07:57:02
138,847,007
0
0
null
null
null
null
GB18030
C
false
false
188
h
#ifndef __DAC_H #define __DAC_H #include "sys.h" void Dac1_Init(void); //DAC通道1初始化 void Dac1_Set_Vol(u16 vol); //设置通道1输出电压 #endif
[ "sagacity_lc@163.com" ]
sagacity_lc@163.com
efbd1f8a5a35c59117d1962bc3db179d707d6ebf
42f7fe6b3ddbf077475a33e5e04ecf444d38bf58
/rtp.h
c207f32654a323072b7474d5d899960b12618bfa
[]
no_license
cbuilder/v4l_capture
a2d935ad7243315e0c903f409ed728aea02b480f
1a73b9c9f52eaae443e05286f76a852e53fa035b
refs/heads/master
2021-01-23T05:29:38.500566
2017-07-17T08:51:02
2017-07-17T08:51:02
86,311,892
2
0
null
null
null
null
UTF-8
C
false
false
98
h
int rtp_init(char *host, int port); int rtp_send(unsigned char *buffer, int i); void rtp_exit();
[ "alexeev@nateks.ru" ]
alexeev@nateks.ru
865bea0b97996a7cd3549bfce156f85db4141bb2
3e39e2fa31158d6d86a23773946084db17cd3317
/tools/test_apps/system/monitor_ide_integration/main/main.c
13c5f7dfba25511d13b2cd2120a976f271b01a87
[ "Apache-2.0" ]
permissive
igrr/esp-idf
75455577353a3ca82a7e9009ab9d00b5687a1388
4823bd824d4c5ccd050a061c3241da26cf768e47
refs/heads/master
2022-06-10T08:00:11.179173
2022-05-25T23:10:04
2022-05-25T23:10:04
195,855,829
3
1
Apache-2.0
2022-02-20T21:04:41
2019-07-08T17:15:54
C
UTF-8
C
false
false
493
c
/* Monitor-IDE integration test This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "fr...
[ "bot@espressif.com" ]
bot@espressif.com
56e40e6085da92db6ca2411d33ed69f8569ddd38
ed831ab07c320f3c70b9f91a2c1b4dc33c5ad0a0
/rush02/extra.c
9a059288a51f7ebd4c4b6e56f62e0ce1c3f4a640
[]
no_license
Megumi1013/piscine_exercises
9b96f857c32c312917bce07c8945c3ec90908657
7238af262bbffa5babda6e590c20f7a19aebfd06
refs/heads/master
2023-04-23T10:39:34.663533
2021-05-13T12:20:08
2021-05-13T12:20:08
294,574,761
0
0
null
null
null
null
UTF-8
C
false
false
1,511
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* extra.c :+: :+: :+: ...
[ "megumi.miyatani@gmail.com" ]
megumi.miyatani@gmail.com
7614ec1e0367d309b0da2b51e8be38bbf8deb79d
99d0608454cdbd84247c34f34898f7ab31878d93
/week_2/pw2/uppercase_2.c
3a0b1bdcaaab34ac29ff9d63e6835bec70cd3986
[]
no_license
erischon/cs50
b0c96449611cd07e25d12638cacb7b7f1cdfeb76
785a858e9979ce825c0cd79515c76e46a257cba6
refs/heads/master
2022-11-24T14:02:12.184727
2020-07-29T12:51:24
2020-07-29T12:51:24
281,708,753
0
0
null
null
null
null
UTF-8
C
false
false
274
c
#include <cs50.h> #include <ctype.h> #include <stdio.h> #include <string.h> int main(void) { string s = get_string("Before : "); printf("After : "); for (int i = 0, n = strlen(s); i < n; i++) { printf("%c", toupper(s[i])); } printf("\n"); }
[ "erischon@gmail.com" ]
erischon@gmail.com
6154b7a8895428384e94ab507078703ea9d850c2
32a3c20d8fc32ac3da0dabdf9be395a077b4a754
/src/main-gcu.c
d5bac20056ab22676e7898aa8828bc0e3e266267
[]
no_license
halfsickofshadows/Sil
a8e0fbf20f6a8f325f366f877f59792daec93f0a
c8ef5bc4b3859302bf4ca650ac3fbc2d31aa834e
refs/heads/master
2021-01-10T20:56:37.667337
2012-12-01T17:35:56
2012-12-01T17:35:56
6,956,341
6
1
null
null
null
null
UTF-8
C
false
false
23,542
c
/* File: main-gcu.c */ /* * Copyright (c) 1997 Ben Harrison, and others * * This software may be copied and distributed for educational, research, * and not for profit purposes provided that this copyright and statement * are included in all such copies. */ /* * This file helps Angband run on Unix/Curses mach...
[ "toby@amirrorclear.net" ]
toby@amirrorclear.net
68e31b6d80a37a0e46a4adc783bff362678c6d36
6519f8530eeaa6a39d7b7f6e41954fd2922b7abb
/libopenspotify/request.h
39367fd49f44c017fba55793f61a8f2356ebb386
[ "OpenSSL" ]
permissive
Tigerwhit4/openspotify
e7f8a553a1e19a5e369abc44a9acef3f01cee0e5
570b95d109699a9456899b5710ae431e605197b3
refs/heads/master
2020-12-24T10:03:30.631049
2010-02-17T22:24:56
2010-02-17T22:24:56
null
0
0
null
null
null
null
UTF-8
C
false
false
6,994
h
/* * (c) 2009 Noah Williamsson <noah.williamsson@gmail.com> * */ #ifndef LIBOPENSPOTIFY_REQUEST_H #define LIBOPENSPOTIFY_REQUEST_H #include <spotify/api.h> typedef enum { /* All requests created with request_post() have this state */ REQ_STATE_NEW = 0, /* As soon as they start being processed they're upgrade...
[ "noah.williamsson@gmail.com" ]
noah.williamsson@gmail.com
fbb627d6fb6f74142b986d118c098270e0cc8580
65be827f6c65fc43dc7a6e940f758d47169dd016
/cpractice/c_in_depth/chapt4/exercise_16.c
2fb06a28185e5ac895045c5aeb339cd924354fb8
[]
no_license
bhaskararaosanta/fedora19
9518ef747cd6ac55c175002efb905f770da9018f
3764e328e0737496112c3f6fcdb3ff192a853df6
refs/heads/master
2022-11-24T20:23:12.273497
2020-07-28T17:22:07
2020-07-28T17:22:07
197,967,487
0
0
null
null
null
null
UTF-8
C
false
false
141
c
#include <stdio.h> int main() { int a = 5, b = 6; printf("%d\n", a = b); printf("%d\n", a == b); printf("%d %d\n", a, b); return 0; }
[ "bhaskararaosanta@gmail.com" ]
bhaskararaosanta@gmail.com
1f39aa8e32d931d8ff315feb7cdcda7389583167
205402f513548b68db5809e0167f2ced6541c19b
/data_struct.h
778ceb4d630a4e3713897195ff73999b69cea951
[]
no_license
Mdr19/FH_controller
9d4150e2714224f506f0e0a05f4511ec929f0f98
03dc56e6a087b7258526481c354b1eccfe6446f2
refs/heads/main
2023-05-28T01:01:47.643666
2021-06-21T11:17:53
2021-06-21T11:17:53
378,902,490
0
0
null
null
null
null
UTF-8
C
false
false
1,009
h
#pragma once #define data_buffer_size 2000 #define send_buffer_size 3000 typedef struct data_struct data_struct; struct data_struct { //double test; //double test_2; unsigned int signals_len; double* input_signal_1; double* input_signal_2; double* input_signal_3; double* output_signal; double* sp_signal; do...
[ "michaldrapala92@gmail.com" ]
michaldrapala92@gmail.com
6031020ae608fcfef825d6b5c9e50e06fa686ca3
b3bfdc508a85d40793bb0c279a02b336fc3fe80e
/Core/Macros.h
c9bba3428f73a819a3177c0b87a7fefa87aa15c2
[ "Zlib" ]
permissive
A-Productions/ddmk
40df3139a3939cb598654704882048b9caba4f12
f7e1fd1a7b6b9c1224ef079428ed7fe2f1996757
refs/heads/master
2023-01-03T20:52:15.400656
2020-11-03T21:33:49
2020-11-03T21:33:49
null
0
0
null
null
null
null
UTF-8
C
false
false
1,628
h
#ifdef offsetof #undef offsetof #endif #ifndef __INTELLISENSE__ #define offsetof(s, m) __builtin_offsetof(s, m) #else #define offsetof(s, m) reinterpret_cast<uint32>(&(*reinterpret_cast<s *>(0)).m) #endif //#define for_all(type, name, end) for (type name = 0; name < end; name++) #define for_each(type, name, start, en...
[ "" ]
804495c0a38f673c4a5cd233afc53ece7a3a34ab
6c5a5a681b82fc9646184d5dc3a348f97bc48950
/Src/SA/SA_Asert.h
ea3f88d11161adf206bbbd5fcc2d62eccbca2fc6
[]
no_license
elipriaulx/SpeechAnalyzer
9a70ae1ecdcf0fbc42ab4ad3cbceaacbc9976299
50ee960e5df95bd47864d25ce067d62f514dab6e
refs/heads/master
2022-04-09T02:16:35.381456
2020-03-21T19:10:02
2020-03-21T19:10:02
null
0
0
null
null
null
null
UTF-8
C
false
false
421
h
///////////////////////////////////////////////////////////////////////////// // Diagnostic support #ifdef _DEBUG extern "C" { void AFXAPI SaAssertFailedLine(LPCSTR lpszFileName, int nLine); } #define THIS_FILE __FILE__ #define SA_ASSERT(f) ((f) ? (void)0 : \ ::SaAssertF...
[ "kent_gorham@874b31ba-64dd-0310-97f8-c2947527d039" ]
kent_gorham@874b31ba-64dd-0310-97f8-c2947527d039
476f1a1ff0f0be4737c5cda0daa1ac5114d6eeb1
0f3ba44a814998f54a06d3a8727832df1693ef00
/String/leetcode748.c
cad20f01ee3593da7bfdb142e052e583e8919038
[]
no_license
MrCool1508/LeetcodePractice
18ba533a4840cbc2cb6525eda98145173efd9991
ea9613442f7e0dedf3a55f11d5a0f1750cb223a0
refs/heads/main
2023-05-02T00:01:09.101013
2021-03-31T15:20:09
2021-03-31T15:20:09
315,896,373
0
0
null
null
null
null
UTF-8
C
false
false
3,236
c
/* * @file: 文件名 * @author: hzy * @version: V1.0.0 * @date: 2020-12-21 19:33:14 * @brief: 模块目的、功能 * @History: * <author><date><version><brief> */ void words2alphaDic(char* s, int s_len, int* alphaDic) { for (int i = 0; i < s_len; i++) { alphaDic[s[i] - 'a']++; } } int processLic(char* s, int s_...
[ "hw531025@126.com" ]
hw531025@126.com
f64f0e36bc966a13617cbb19331e9652868abebe
0d9723fb1e8f1bfdd6d31ed53999ce44127f70ae
/R3console/Offsets.h
8d6496dd479f54406e4367342eef5681952e4e43
[]
no_license
Cerraosso/KernelR6
9cead8993f2f18d3d41a86e89ba9b0a23205f348
e29300e1ce51b1a5cca096e71ba39c81476d0166
refs/heads/master
2022-03-25T03:04:31.659856
2019-12-09T12:37:31
2019-12-09T12:37:31
null
0
0
null
null
null
null
UTF-8
C
false
false
198
h
#pragma once #define OFFSET_GAME_MANAGER 0x52DE348 #define OFFSET_GLOW_MANAGER 0x5f52350 #define OFFSET_LOCAL_PLAYER 0x52cdbe0 //profile #define VT_MARKER 0x3938bb0 #define ROUNDMANAGER 0x52cdc08
[ "noreply@github.com" ]
Cerraosso.noreply@github.com
ae9e44a972c08cd759b4a2c953165b58e29c75bc
7a8f9cc5683138f92b68d98c5fd6f5e546e55022
/Source/SDK/SDKPackages/JN5189DK6/devices/JN5189/drivers/fsl_power.h
332a28ba4733f1ce425a4f8eb75f303362cd6b91
[]
no_license
fairecasoimeme/ZiGatev2
0c5ca85c40b1c7ac8744943a489908f478c46977
fae9568aa240dde47723a26af5985b3e60291819
refs/heads/master
2023-03-01T23:10:37.084863
2023-02-21T13:30:17
2023-02-21T13:30:17
318,456,177
19
6
null
2021-11-12T12:24:47
2020-12-04T08:46:06
C
UTF-8
C
false
false
18,596
h
/* * Copyright (c) 2016, Freescale Semiconductor, Inc. * All rights reserved. * * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef _FSL_POWER_H_ #define _FSL_POWER_H_ #include "rom_lowpower.h" #include "fsl_common.h" /*! @addtogroup power */ /*! @{ */ /*! @file */ /************************...
[ "akila@faire-ca-soi-meme.fr" ]
akila@faire-ca-soi-meme.fr
80ddd81221a3e7112363467859964e8edc3c19c5
03352da3e85e0a366c154635fc878d9562a62d3c
/赛区赛程序/src/projects/fire_flash_demo/main.c
168cc6595abc94426037d5ad44c611509c93cf25
[]
no_license
yangkang411/competition_code
61a349eba7f198f33a2b3a7ddb746efd9dbd5d62
ef0ed16936495db2fc3291cf43b3b7fe9388f9ed
refs/heads/master
2023-05-03T17:35:26.865211
2021-05-20T14:53:42
2021-05-20T14:53:42
null
0
0
null
null
null
null
GB18030
C
false
false
2,628
c
/******************** (C) COPYRIGHT 2011 野火嵌入式开发工作室 ******************** * 文件名 :main.c * 描述 :野火Flahs实验 * * 实验平台 :野火kinetis开发板 * 库版本 : * 嵌入系统 : * * 作者 :野火嵌入式开发工作室 * 淘宝店 :http://firestm32.taobao.com * 技术支持论坛 :http://www.ourdev.cn/bbs/bbs_list.jsp?bbs_id=1008 ...
[ "1905099114@qq.com" ]
1905099114@qq.com
55dbb3c80dd12e0f9fcee5ef8b17a328be819a82
b38eb8e3b424ed04252255014adbb13ae25b8cac
/Closest_sum_array.c
bcf50bd9b834e458cfc64eefaad76e51edd6246b
[]
no_license
JpSaini09/APCCodes
a91244de0e7b9c8aa59375bb4d3ca644c2b0a996
2595a3b3720b0fee78ca7b3893653fe0b0660435
refs/heads/master
2020-12-29T00:30:08.055812
2016-09-09T06:07:08
2016-09-09T06:07:08
64,448,078
0
0
null
null
null
null
UTF-8
C
false
false
671
c
#include <stdio.h> #include <stdlib.h> #include <limits.h> void printClosest(int arr[], int n, int x) { int res_l, res_r; int l = 0, r = n-1, diff = INT_MAX; while (r > l) { if (abs(arr[l] + arr[r] - x) < diff) { res_l = l; res_r = r; diff = ab...
[ "noreply@github.com" ]
JpSaini09.noreply@github.com
85816f379e318e0e0498c26d08c3f7a0b0dcbbfe
6c0eaf140e50a68fa9c4886198e9144c7d11f677
/reuse_file/CVE_2010_3880_linux2_6_16_inet_twsk_diag_dump.c
3b4553082c0b0463e83d175b6c3c570e1da1a944
[]
no_license
bluestar628/Vulpecker
61fc0b5d18173d36f97f6db141ac8289fc5000ca
d1d36a9ce3e4f1e045fa2b193d09596e7ffc1e30
refs/heads/master
2021-05-31T20:35:46.586150
2016-08-22T04:26:45
2016-08-22T04:26:45
null
0
0
null
null
null
null
UTF-8
C
false
false
1,037
c
static int CVE_2010_3880_linux2_6_16_inet_twsk_diag_dump(struct inet_timewait_sock *tw, struct sk_buff *skb, struct netlink_callback *cb) { struct inet_diag_req *r = NLMSG_DATA(cb->nlh); if (cb->nlh->nlmsg_len > 4 + NLMSG_SPACE(sizeof(*r))) { struct inet_diag_entry entry; struct rtattr *bc =...
[ "vulpecker@126.com" ]
vulpecker@126.com
31292dd17ce0260bd9e84c00ba1f3329f550b8fe
5f42e2c14969c74f172a08f0337c5b297042ee70
/libft/ft_lstadd.c
e5d99008153f53b4f642d00d561685193d79413a
[]
no_license
Genixi/printf
8a2db04d2b90a7c3daabb7b95a2492c528098340
aa9a109739e5329193e9110ed2d6ee42644fd7a2
refs/heads/master
2020-09-04T06:00:59.377694
2019-11-30T14:44:12
2019-11-30T14:44:12
219,672,286
0
0
null
null
null
null
UTF-8
C
false
false
1,024
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstadd.c :+: :+: :+: ...
[ "equiana@il-e3.21-school.ru" ]
equiana@il-e3.21-school.ru
d23d6c20179486e6eab84c3a886fdb8508d99553
4a7ec58caac0a99e2aae16f1b8a2b1fbb3550258
/OS/SimpleShell/SISH.c
05b40def3728e9fe9350b9fb4a58f259765f5fe0
[ "MIT" ]
permissive
jihoon15/my-work
5f578ac908a4356d1c39096d98289b34789833f7
7d5ef2ab7515fb172cd499d98f164c6889d01409
refs/heads/master
2022-04-21T21:45:49.025916
2020-04-27T11:31:27
2020-04-27T11:31:27
259,293,657
1
0
null
null
null
null
UTF-8
C
false
false
1,562
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <errno.h> #include <time.h> #define BUFSIZE 1024 int main() { char str[BUFSIZE]; char *user = getenv("USER"); pid_t pid; pid_t status; while(1) { //________________현재 디렉토리_...
[ "jihun15@assam.dankook.ac.kr" ]
jihun15@assam.dankook.ac.kr
3e0da1fe7632de1644d32921fe34936782734652
4b37fab00739c087eb0a7f3c0d9159bbed4c0ebb
/pong/ballctrl.h
6b586c2f010a6d2156b863328ac994c96919147b
[]
no_license
johnklehm/simplicity-lab
6c7f6ac75798848a98c67cba4be19791009e1384
f78b68667da88a75053c5234947721e9a18fb753
refs/heads/master
2021-01-10T09:19:24.945676
2010-11-03T02:52:43
2010-11-03T02:52:43
36,142,333
0
0
null
null
null
null
UTF-8
C
false
false
722
h
/* ballctrl.h 1.2 20101028 * * @author wws klehmc grewalk * @version 1.2 * @date 20101028 * @course cs3841-002 * * This file was developed as part of CS3841 Design of Operating Systems at the * Milwaukee School of Engineering. This file is copyright 2008-2009 by MSOE. * * Copyright 2010 klehmc g...
[ "xixsimplicityxix@ad2361a0-f308-59e1-65ff-571d2369f60e" ]
xixsimplicityxix@ad2361a0-f308-59e1-65ff-571d2369f60e
f8d0ac31519b83c8eeae9c0376d22d06e9143cf7
933f718734f1123fee1f7873f06d184eacfe19d3
/disciplinas/tecnicas-de-programacao/c-codes/lista/teste.c
73d14006d53c78aed712ccf2cd3bb6517c97cb40
[ "MIT" ]
permissive
diego91964/unipac
9f6b5dcfd4687d1ffcbcec4c42a019b036f3420b
d1b3bea7c59d397a09e4ddba93f3c0fdc83d7f0c
refs/heads/master
2021-01-19T13:40:05.466816
2020-02-15T14:08:49
2020-02-15T14:08:49
82,407,209
2
5
null
2020-09-04T00:52:52
2017-02-18T18:26:12
JavaScript
UTF-8
C
false
false
719
c
#include <stdio.h> #include <locale.h> #include <math.h> struct numero { char num[256]; }; struct numero nr; void BinarioParaTernario() { int i, casas = 0, acm = 0, a = 0; for (i = 0; i < (sizeof (nr.num) + 1); i++) { if (nr.num[i] != NULL) { casas++; } } i = (casas - 1); do { ...
[ "diego.silva.facom@gmail.com" ]
diego.silva.facom@gmail.com
63762ab6b3809dfc09215db8720817c68029424a
94e6f2594d117dd11835a91f9e5c5ece0f0b2f67
/Csm/Rte_Type.h
cf63c5dd580d46e5df43e1aacb6d4e360795bbe1
[]
no_license
ShroukMagdy/ASU_CryptoStack
5a3b9be9ebbab15e76d0bcbee35cfd5f6d1fe870
a86f771d0137ece1b7ca11ff02fbfeffd6ce2055
refs/heads/master
2022-12-12T00:37:53.340144
2020-09-11T23:43:01
2020-09-11T23:43:01
294,832,512
1
0
null
null
null
null
UTF-8
C
false
false
76
h
#ifndef RTE_TYPES_H #define RTE_TYPES_H #include "Std_Types.h" #endif
[ "noreply@github.com" ]
ShroukMagdy.noreply@github.com
688fbdbac2f715d7da7ffc6f6b3f6a536e096e17
cf4c4fa6faf7ec6a8326b2fb14c6ef40c566b771
/firmware/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_smartcard_ex.c
8f6049777811fdae05f1283c67e7ac74e27b7fcf
[ "MIT" ]
permissive
cibomahto/alarm_firmware
9bd174905c9d9c57feeb5e571e71fa887daaaf0a
358bbaf8e6931731ba7af2fbdd245fd2b73f2a97
refs/heads/master
2021-05-22T02:25:26.849314
2020-04-22T14:46:02
2020-04-22T14:46:02
256,468,101
1
1
MIT
2020-04-17T10:06:32
2020-04-17T10:06:32
null
UTF-8
C
false
false
7,321
c
/** ****************************************************************************** * @file stm32f0xx_hal_smartcard_ex.c * @author MCD Application Team * @brief SMARTCARD HAL module driver. * This file provides extended firmware functions to manage the following * functionalitie...
[ "atommann@gmail.com" ]
atommann@gmail.com
6ecbe513c247a6e40a78afdcee144b368a4d3cda
bd6882b7bfe41cd0216e885586ff6b3618a2c4b8
/include/fast_io_core_impl/scan_transmit/scan_transmit.h
1dcc317665c8c25f2740f05f9750d708aac54f25
[ "MIT" ]
permissive
strott/fast_io
f80f2f6b597a6c33fb171319073900e489b6366d
ea92b4816710d6b9bd863b112341e956dc65ec5e
refs/heads/master
2022-11-23T17:04:59.535552
2020-07-28T20:36:42
2020-07-28T20:36:42
null
0
0
null
null
null
null
UTF-8
C
false
false
49
h
#pragma once #include"impl.h" #include"digit.h"
[ "euloanty@live.com" ]
euloanty@live.com
fce1686ba6b6ddce94342f57961646e01bd67b8f
55d27a0758e35fe167a8bde310a7be9b24062e08
/InHeritence/InHeritence/resource.h
373f1a35515a58f1f8cb48b8a780cce26fb958f0
[]
no_license
ITnull/VisualProject
c274367a687b88c2fcbb9f217bb69fa73613714f
e6292aa5ecf785384bd447c5edfc07dba3a60437
refs/heads/master
2022-01-18T18:18:02.266716
2019-07-20T07:11:50
2019-07-20T07:11:50
197,893,475
0
0
null
null
null
null
GB18030
C
false
false
386
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by InHeritence.rc // 新对象的下一组默认值 // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 101 #define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_CONTROL_VALUE 1001 #define _APS...
[ "1209016337@qq.com" ]
1209016337@qq.com
b5827976291ebd20c581aac4e21267734cd2f485
5cdf80df7c105d1081279950fd0295df50ca62a6
/Practical 25- Integrating keypad with speaker/Project 14- digital piano/Project 14- digital piano.c
5829833112f18723af6578b4b7bd62c479fc5394
[]
no_license
MCodez/Embedded-Systems
05d122979148ec4da86869048a01914958c53834
cb63bd5648b66a7820201fcfe186c79a3588b66c
refs/heads/master
2021-01-19T20:46:56.450665
2017-05-31T17:31:39
2017-05-31T17:31:39
88,551,967
1
0
null
null
null
null
UTF-8
C
false
false
3,769
c
/* * Project_14__digital_piano.c * * Created: 7/7/2014 7:33:28 AM * Author: Administrator */ #define F_CPU 16000000 #include <avr/io.h> #include <util/delay.h> #define LCD_port PORTC #define RS 0 #define RW 1 #define EN 2 void lcd_init() { dis_cmd(0x02);//HOME POSITION dis_cmd(0x28);//S...
[ "noreply@github.com" ]
MCodez.noreply@github.com
fd70866bed1fc1bd2e66b9ac187cc597e08913c8
52f62927bb096e6cbc01bd6e5625a119fb35c1c5
/databases/GDAL/GDALCommonPluginInfo.C
5cf47a8ca20e046aa39adcb0867ecab665f24640
[]
no_license
HarinarayanKrishnan/VisIt27RC_Trunk
f42f82d1cb2492f6df1c2f5bb05bbb598fce99c3
16cdd647ac0ad5abfd66b252d31c8b833142145a
refs/heads/master
2020-06-03T07:13:46.229264
2014-02-26T18:13:38
2014-02-26T18:13:38
null
0
0
null
null
null
null
UTF-8
C
false
false
3,691
c
/***************************************************************************** * * Copyright (c) 2000 - 2013, Lawrence Livermore National Security, LLC * Produced at the Lawrence Livermore National Laboratory * LLNL-CODE-442911 * All rights reserved. * * This file is part of VisIt. For details, see https://visit.llnl...
[ "brugger@18c085ea-50e0-402c-830e-de6fd14e8384" ]
brugger@18c085ea-50e0-402c-830e-de6fd14e8384
36f9078974a2a064d80a9e5eb8398be2e24f6d5a
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/sound/spi/extr_at73c213.c_snd_at73c213_mono_switch_put.c
5c6b1fec2225177812c2bfbd651fbd3c5e7133c1
[]
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,785
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
2d0e2dde5bf22319bcc2d8b0d9f5208c3855a48e
9019e1b48f321446d2980bccaceff90e248e2d35
/src/LOpenGL.h
deec3d5dac99ae5d1733292de1d2aa8e55afb174
[]
no_license
joates/glsl-textured-terrain
8676dec9afb68a017fcf60eb172bd2e2343a3371
22f379a9684597652aaab90dee7ffb53e4d26724
refs/heads/master
2020-05-17T05:43:07.270611
2014-11-12T21:54:14
2014-11-12T22:11:36
26,395,735
2
2
null
null
null
null
UTF-8
C
false
false
292
h
/*This source code copyrighted by Lazy Foo' Productions (2004-2013) and may not be redistributed without written permission.*/ //Version: 002 #ifndef LOPENGL_H #define LOPENGL_H #include <GL/glew.h> #include <GL/freeglut.h> #include <GL/gl.h> #include <GL/glu.h> #include <stdio.h> #endif
[ "github@joat.es" ]
github@joat.es
3ce08bbb2c87d4db9eb6216573bee74996cba0d2
ca95807245ad8af5d00e7315f0efe6037f5d8b1d
/SAME54_Oryx_ATECC608/cyclone_tcp/tftp/tftp_client.c
4e5cccaa1a2108cdaeb771b509e3e30df5f2dab1
[]
no_license
HaiQNguyen/Oryx_608_Porting
7ebb09094277e99dbe8b5cbebdff1b7f0254981a
bc5fc3a70c1e734e3351a892b33c3fe395bdbf28
refs/heads/master
2020-07-12T02:19:39.576663
2019-08-27T11:44:38
2019-08-27T11:44:38
204,691,840
1
0
null
null
null
null
UTF-8
C
false
false
15,190
c
/** * @file tftp_client.c * @brief TFTP client * * @section License * * SPDX-License-Identifier: GPL-2.0-or-later * * Copyright (C) 2010-2019 Oryx Embedded SARL. All rights reserved. * * This file is part of CycloneTCP Open. * * This program is free software; you can redistribute it and/or * modify it unde...
[ "qnguyen@arroweurope.com" ]
qnguyen@arroweurope.com
05aeaa4abb758fff089e8f3f13339e7e32b4d96b
bcb970208451ed452cf5fff42c5795a18fd150dd
/src/freedreno/computerator/ir3_asm.c
efca35e83f559243d4b360ff7a3092191532f41b
[]
no_license
Heasterian/mesa-turnip-kgsl
d3a0e317dd01b4174da6a6fe3cf83beb3ed15a6f
13d4d5a8bbde2a3117fa1aa63790f5b1d4dc4348
refs/heads/main
2023-05-08T01:02:53.822716
2021-06-02T19:38:50
2021-06-02T19:38:50
373,235,149
5
1
null
2021-06-02T16:28:53
2021-06-02T16:28:53
null
UTF-8
C
false
false
2,181
c
/* * Copyright © 2020 Google, 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,...
[ "eric+marge@anholt.net" ]
eric+marge@anholt.net
5fc3223657bd79cafb70359e68c9300e1c92a3cd
a68ba3fc0eb86b0ea1fa21152ba253eeee06b63e
/Repetition Structures/Tabela_ASCII.c
e394f82b1fe9d028e3f27e12888bb0e49081040c
[ "MIT" ]
permissive
whoiswelliton/Programming_Fundamentals
68e458ce5b1c36f24e82a09085445763be8aa322
63d41e0d14b67cc64d38b0188b583dd8f8ac2905
refs/heads/main
2023-09-05T00:55:52.418712
2021-09-14T01:06:12
2021-09-14T01:06:12
406,155,520
0
0
null
null
null
null
UTF-8
C
false
false
150
c
#include<stdio.h> #include<stdlib.h> int main() { int i=0; while(i < 255) { printf("%c [%d] \n",i,i); i++; } system("pause"); }
[ "wellitonlealbabinski@hotmail.com" ]
wellitonlealbabinski@hotmail.com
d63a3fe344b4dba63cbc02c8535011c45d6c10ef
3825f92aa3e4f67d660fe884ab845fc98bc6352c
/c64koala2ppm.c
05d1c9f8db006b16aca25cffc2021d719386e6e1
[]
no_license
abbrev/c64koala2ppm
db0d6b676da86d34256eb3f30a17ff66136cd61c
7b99afae34a45136a7a30f33b87cbd2fdfea6e72
refs/heads/master
2023-07-06T05:33:28.766800
2013-11-07T05:02:01
2013-11-07T05:02:01
14,194,591
1
1
null
null
null
null
UTF-8
C
false
false
8,716
c
/* $Id$ c64koala2ppm, convert a Commodore 64 KoalaPaint image to Portable Pixmap Copyright 2009 Christopher Williams 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,...
[ "fredfoobar@612e15e2-59a2-4da9-808f-3355d9891739" ]
fredfoobar@612e15e2-59a2-4da9-808f-3355d9891739
1ecd8b082a51cdc6fc6d7be282755c5f55127f30
043cffc19d437c318915ffebde5d1ef5a054e1a4
/lu_common/curses_test.c
c5f5e7876d289442e56ad207a24ba56f68ffa387
[]
no_license
e12exp/ucesb
125fe30cf546dfbd1ff04c7cf0d9e60aa9b19558
7243a48dd1feb3fa3ea6f8c69449b9c407942ff6
refs/heads/master
2022-11-30T06:45:34.837594
2022-11-25T13:55:02
2022-11-25T13:55:02
228,606,166
0
0
null
null
null
null
UTF-8
C
false
false
155
c
#include <curses.h> #include <term.h> int main() { int errret, ret; ret = setupterm(NULL, 1, &errret); tparm(tigetstr("setaf"),1); return 0; }
[ "max.winkel@ph.tum.de" ]
max.winkel@ph.tum.de
b53893f1a5033085207d7197e802609e0cf31c7c
6e818df15054cf6dc63366764577032211394362
/while/while-break.c
cf3ef974411abfa342f584dcd9be9a2dc6819deb
[ "MIT" ]
permissive
lmokto/ilovec
ca2c12fcc6a6432e3ce8622d4231ba103f0890d2
27efcc8b60533a1fc7685abda21a48977353e6cc
refs/heads/master
2020-05-07T10:28:34.212194
2015-04-26T04:06:22
2015-04-26T04:06:22
31,629,798
0
0
null
null
null
null
UTF-8
C
false
false
537
c
#include <stdio.h> //<stdio.h>. Gracias a ella hemos importado las funciones de entrada/salida scanf y printf . int main(void){ int a; int b; printf("Introduce un entero a: "); scanf("%d", &a); b=2; while(b < a){ //si es primo, corta el bucle, sino busca hasta encontrar un nu...
[ "lm.uranga@gmail.com" ]
lm.uranga@gmail.com
178bdebb44366748d7e10a96266545ab18487440
f124f2ccff550ca038282782e367ed30e5699dc0
/src/mds/mds/svd/c/test/zriddr.c
3d85ce441cfbc5e7234c46c7a71f6784c9edc3fa
[]
no_license
acorg/lispmds
7d55ff22e416de109d51ee916f855b224c1f6f09
6424a72650a20c6b7c3613714f3b7f0368f54f6f
refs/heads/master
2023-05-25T05:03:59.250865
2023-05-15T13:28:00
2023-05-15T13:28:00
33,547,730
3
4
null
2018-10-09T19:31:45
2015-04-07T14:21:31
Common Lisp
UTF-8
C
false
false
1,123
c
#include <math.h> #define NRANSI #include "nrutil.h" #define MAXIT 60 #define UNUSED (-1.11e30) float zriddr(float (*func)(float), float x1, float x2, float xacc) { int j; float ans,fh,fl,fm,fnew,s,xh,xl,xm,xnew; fl=(*func)(x1); fh=(*func)(x2); if ((fl > 0.0 && fh < 0.0) || (fl < 0.0 && fh > 0.0)) { xl=x1; x...
[ "djs200@cam.ac.uk" ]
djs200@cam.ac.uk
79e28aa9aff65643f3fb43bdae66d4e1e82937d0
ae2857643cc26c164a9db9f546fb4575b120a2dd
/Project1/标头.h
70578e76688b0027e790b4226f6daeb1900bd6fb
[]
no_license
GitHubw-b/cunku
c3646c1cdaca300d1165abf3c6b0af8b5cd0dd01
6f858f858121f96fafe081fc33717efb857f547e
refs/heads/master
2020-08-15T11:03:41.808039
2019-11-05T00:01:43
2019-11-05T00:01:43
215,330,225
2
0
null
null
null
null
UTF-8
C
false
false
381
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include <stdio.h> #include <tchar.h> #include <string.h> // T...
[ "934434451@qq.com" ]
934434451@qq.com
3f45a016b1c6ee2e3c808b70c9510630775a585e
779244f0231ad7bd38446ed53854743ed7844681
/data/src/main.c
d27e68b0b9d1f7c1d19c14f0e533fa5ed34f7899
[]
no_license
szelimark2000/B8VNQ7GrafikaGyak
dac3284b1ec39c91fbc5743014cd51e35772b617
cb4b3eb1bbf8cfd13c60ae61d68b01449fa18b4e
refs/heads/main
2023-04-25T09:50:32.691787
2021-05-12T08:46:05
2021-05-12T08:46:05
337,979,931
0
0
null
null
null
null
UTF-8
C
false
false
1,114
c
/* main.c file */ #include "callbacks.h" #include "init.h" #include <stdio.h> #include <stdlib.h> #include <time.h> #include <SOIL/SOIL.h> #include <GL/glut.h> /* Set the callbacks for GLUT. */ void set_callbacks() { glutDisplayFunc(display); glutReshapeFunc(reshape); glutMouseFunc(mouse); glutMotion...
[ "64776810+szelimark2000@users.noreply.github.com" ]
64776810+szelimark2000@users.noreply.github.com
6fea8de9838ce6b09f0f1cf19821295856e701da
1ae06dc85014fbb658aba733053763165950d318
/vendor/github.com/spdk/spdk/dpdk/drivers/common/dpaax/dpaax_logs.h
bf1b27cc11c790eeec32ab4c876380b7e83d9de5
[ "BSD-3-Clause", "GPL-2.0-only", "Apache-2.0" ]
permissive
intel/oim
4bc003da0a6b75d1fe50c848aa9bb68145fc69c0
ee179563970db92487d76b373cc3b25dc2c99ca5
refs/heads/master
2023-09-03T01:15:52.079309
2022-08-04T22:47:56
2022-08-04T22:47:56
168,253,801
18
9
Apache-2.0
2019-03-04T15:20:47
2019-01-30T00:48:36
Go
UTF-8
C
false
false
1,054
h
/* SPDX-License-Identifier: BSD-3-Clause * Copyright 2018 NXP */ #ifndef _DPAAX_LOGS_H_ #define _DPAAX_LOGS_H_ #include <rte_log.h> extern int dpaax_logger; #define DPAAX_LOG(level, fmt, args...) \ rte_log(RTE_LOG_ ## level, dpaax_logger, "dpaax: " fmt "\n", \ ##args) /* Debug logs are with Function names */ ...
[ "patrick.ohly@intel.com" ]
patrick.ohly@intel.com
e09487259b580aa7fb9c7b4e6ce6cca31a04e6a7
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/reactos/dll/win32/comctl32/extr_tooltips.c_TOOLTIPS_AddToolT.c
d71fcc4e3d0fc6d3797486b6556d1f8713c3b8a9
[]
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
5,802
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
a937fd861d13574f3be3e7f4e5b334c9f94478da
1225a800ff710a990f3c35541fda559f34b0cb65
/src/mail/rap_mail_imap_module.c
d6cd1fde87fda9769ee1a1790d46fb1fc6343197
[ "BSD-2-Clause" ]
permissive
william-xian/rap
72b010d1b41ce32ea22d976cac42c291d060535c
1ebf68aa90b9d9ec09002198ff42f21846c01130
refs/heads/master
2023-01-07T12:50:47.100662
2020-10-30T00:17:47
2020-10-30T00:17:47
296,205,397
0
0
null
null
null
null
UTF-8
C
false
false
7,046
c
/* * Copyright (C) Igor Sysoev * Copyright (C) Rap, Inc. */ #include <rap_config.h> #include <rap_core.h> #include <rap_event.h> #include <rap_mail.h> #include <rap_mail_imap_module.h> static void *rap_mail_imap_create_srv_conf(rap_conf_t *cf); static char *rap_mail_imap_merge_srv_conf(rap_conf_t *cf, void *par...
[ "1520070240@qq.com" ]
1520070240@qq.com
17ecdbc7ab601a1caa252bf0c9380584d0aba46d
9655046fb4018023a941aa6a187f16ce6b4382ab
/elog/elog_internal.h
3b22a3d4a3a3b1cbfa33bb055f7acff42fb7dd9b
[]
no_license
cuongdv/shaco_first
3e9fb39751c60b5e6f125d14275159bb4fda1741
46c825aba0732e5daa6988e2a042db0446d57f17
refs/heads/master
2020-07-12T17:13:59.568825
2013-12-29T03:31:46
2013-12-29T03:31:46
null
0
0
null
null
null
null
UTF-8
C
false
false
181
h
#ifndef __elog_internal_h__ #define __elog_internal_h__ struct elog_appender; struct elog { const struct elog_appender* appender; char* filename; void* od; }; #endif
[ "lvxiaojun@debian.(none)" ]
lvxiaojun@debian.(none)
bfa808b1aed1b7c9beba3aeba608c60aa2db8c64
d0ca36093b690328d199be84f23c660f0b9eabf3
/platformio/stima_v4/libraries/CycloneTCP-Coap/src/coap/coap_client_block.h
e494a6ca5e284c2ecabd829a7bddd9616fc08dcd
[]
no_license
r-map/rmap
9bb001b7680463d9d6a1dfefb554453f722fbcf2
88e3135ef981a418bb3c7ab652bfe381b6361e05
refs/heads/master
2023-09-04T00:00:01.294693
2023-09-01T18:14:25
2023-09-01T18:14:25
39,561,369
57
61
null
2023-06-07T09:45:06
2015-07-23T10:34:48
C
UTF-8
C
false
false
1,752
h
/** * @file coap_client_block.h * @brief CoAP block-wise transfer * * @section License * * SPDX-License-Identifier: GPL-2.0-or-later * * Copyright (C) 2010-2022 Oryx Embedded SARL. All rights reserved. * * This file is part of CycloneTCP Open. * * This program is free software; you can redistribute it and/o...
[ "marcobaldinetti@gmail.com" ]
marcobaldinetti@gmail.com
efd5148a78749ef45311bb4d3d72b313369e1624
152e14390b79ca832cd5c4c443db6fde3f1af997
/QGCS/src/Tensor.c
8ada349477b4da716ee5e5b739aeb2fe518c7bf7
[]
no_license
mapleyustat/QGCS
5036f304d67380e0a71a5d071451a8b5f3dd0e28
29536314634e0485781aaf89c81ac0972abcb906
refs/heads/master
2020-08-01T23:39:27.172837
2018-04-25T10:01:17
2018-04-25T10:01:17
null
0
0
null
null
null
null
UTF-8
C
false
false
2,516
c
#include <assert.h> #include "Tensor.h" gsl_matrix_complex* Kronecker_product_mm(gsl_matrix_complex* a, gsl_matrix_complex* b) { int size1 = a->size1 * b->size1; int size2 = a->size2 * b->size2; gsl_matrix_complex* result = gsl_matrix_complex_calloc(size1, size2); gsl_complex ca; gsl_complex cb; ...
[ "811073137@qq.com" ]
811073137@qq.com
c313fbba25328aa3324456d2b6e56dec13235fe9
5d0520535f8097adf69412ea08f70b5215531532
/solver/AdvDiffRecPV-fEqn.H
8a7337d1e2db6967cfea32d453db039cb17e2122
[]
no_license
youmengtian/ffpvFOAM
2c2975ea7a6190b7d5302bfdb8e406f40d266598
d8bcfa075bbf6a005ceb3bde435061616ad63733
refs/heads/master
2020-12-27T17:38:38.951403
2020-01-24T01:40:04
2020-01-24T01:40:04
237,991,994
4
0
null
2020-02-03T15:02:45
2020-02-03T15:02:45
null
UTF-8
C
false
false
3,760
h
tmp<fv::convectionScheme<scalar> > mvConvectionPVSF ( fv::convectionScheme<scalar>::New ( mesh, fields, phi, mesh.divScheme("div(phi,PVSF)") ) ); tmp<fv::convectionScheme<scalar> > mvConvectionMFSF ( fv::convectionScheme<scalar>::New ( mesh, fields, ...
[ "linjianhongljh@gmail.com" ]
linjianhongljh@gmail.com
e07c866527dde7b84a3db52ef3d6cc30f0bb1934
3e277e481ccd8f8daceea1bdfeba02de8a12b474
/CN & WT LAB/CN Experiments/Experiment 1/18wh1a1240_CharCount.c
a98f836892ab7562fb0a7ad5e4d636805608efe3
[]
no_license
18wh1a1240/III-Year-Lab
a180137ab98d5fc995dba05ec1e4b65ad06ce51c
a289218aea2faec4d712f19016b9d84a130bdffe
refs/heads/master
2023-06-23T10:48:21.574278
2021-07-14T14:16:50
2021-07-14T14:16:50
285,523,698
0
3
null
null
null
null
UTF-8
C
false
false
1,137
c
#include <stdio.h> #include<string.h> int main() { int NoOfFrames; char Frames[50][50]; int h[10]; printf("Enter the number of frames : "); scanf("%d",&NoOfFrames); for(int i = 1; i <= NoOfFrames; i++){ printf("Frame %d :", i); scanf("%s", Frames[i]); ...
[ "noreply@github.com" ]
18wh1a1240.noreply@github.com
7a9e185531c5d5d0ec45a2fb70a7f4d8576cea5b
a889ca901f43f60c7b105e0a6cdf2abf76980698
/dominion/mutants/mutant101343_dominion.c
d7dfcc41d509eb0630d0ea8b17827439451e4701
[]
no_license
cs362sp16/cs362sp16_berezam
cd21fb143531fed76d68f1cb71b08dff4c440de9
b44a43198f23932f015abe6379b1ac2fdebe053b
refs/heads/master
2016-09-12T21:10:55.700141
2016-06-08T04:56:07
2016-06-08T04:56:07
56,246,014
0
0
null
null
null
null
UTF-8
C
false
false
33,431
c
#include "dominion.h" #include "dominion_helpers.h" #include "rngs.h" #include <stdio.h> #include <math.h> #include <stdlib.h> #include <string.h> //for memset 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* newGam...
[ "berezam@flip3.engr.oregonstate.edu" ]
berezam@flip3.engr.oregonstate.edu
df2b84c161fe5695f4fc0c102376d91dd07a2b3c
da3997bdc869076ae3c628b5d00e8361213a6d66
/sources/execute_algorithm.c
0dd55aeac63ff775a1e75144ea97843ff961b99f
[]
no_license
dpromoha/filler
f825c452fd7c6da514a8d284e49a13c67df07634
70fa9ccc3d1fb906bc1bcddcbe7893349234d644
refs/heads/master
2020-06-16T23:57:27.576519
2019-11-09T21:55:28
2019-11-09T21:55:28
195,737,326
2
0
null
null
null
null
UTF-8
C
false
false
3,446
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* execute_algorithm.c :+: :+: :+: ...
[ "dpromoha@e1r4p1.unit.ua" ]
dpromoha@e1r4p1.unit.ua
ccdf2f1b42878704a0b1461d4aed3d6fe1012530
f8c5b29a6dfc8038e7a932afe3c82754d0ef4dd3
/lib/util/include/symmeig_small.h
e641968003b5114bdc27454c093d202c3aad3731
[]
no_license
StephenSmith25/MFREEX
bdede0136a51484da0e5bf822b94e8ed9f64fa37
f4264ba6845fbdebd7af28382d03044cec4a691b
refs/heads/master
2022-06-12T01:37:55.561651
2020-05-07T15:37:38
2020-05-07T15:37:38
159,374,253
0
0
null
null
null
null
UTF-8
C
false
false
224
h
#ifndef SYMMEIG_SMALL_H_ #define SYMMEIG_SMALL_H_ #include "matrix.h" #include "matrix2.h" #ifndef M_PI # define M_PI 3.14159265358979323846 #endif int symmeig_small(const MAT * A, MAT * Q, VEC * Out); #endif
[ "ssmith54@qub.ac.uk" ]
ssmith54@qub.ac.uk
b0a502cbdf290c89ac1f907dd2f38b69d408eae3
681b51220a3ccd7d9adf8594b81724389249048e
/MacroPad1.c
f47861ebb3a6543efd7bf49c401f4216ca2ae083
[]
no_license
ofthedove/pico.macropad1
9a8e21923e296c1e285fbbe2ac2c26bede9ca2c3
41f01e684627dc7bba51107cceee4e7780006585
refs/heads/main
2023-04-01T22:52:43.909685
2021-04-13T21:02:29
2021-04-13T21:02:29
348,808,449
0
0
null
null
null
null
UTF-8
C
false
false
3,837
c
#include <stdio.h> #include "pico/stdlib.h" #include "hardware/uart.h" #include "hardware/gpio.h" #include "hardware/divider.h" #include "hardware/i2c.h" #include "hardware/pio.h" #include "hardware/timer.h" #include "hardware/clocks.h" #include "util.h" #include "Color.h" #include "Encoder.h" #include "Heartbeat.h" #...
[ "andrew.combs@geappliances.com" ]
andrew.combs@geappliances.com
637433803bf234904b02e72bb2c913845a3df07d
cc2a8ba9c20b4a70c6b209944222aac04193e824
/ext/fuzz_ball/duple_index/DupleIndex.h
917dbb1b1d8d96595d9ff36f061fce955001556a
[ "BSD-3-Clause" ]
permissive
vincentchu/fuzz_ball
a00d3d06feecaec2e6180c3600cc4ddc160fbd21
a385031c514c390aa8d545a07ea0a396bbbaa0cf
refs/heads/master
2016-09-10T19:03:27.914162
2011-10-22T01:18:37
2011-10-22T01:18:37
2,519,300
9
1
null
null
null
null
UTF-8
C
false
false
2,174
h
#define MAX_CHARS 1000 /* duples_hash is the struct that is the "core" of the duple index. * The id field is a unique integer that represents a unique duple. * the duple_pos pointer is a pointer to a linked list that stores * all of the strings that a given duple appears in. */ struct duples_hash { int id; str...
[ "vince@posterous.com" ]
vince@posterous.com
39e8d92d4a9dc49de37b6f299d258766f613b3e3
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/arch/arm64/include/asm/irq_work.h
8a1ef19077606465de320a46225877b09ac0c96d
[ "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
228
h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_IRQ_WORK_H #define __ASM_IRQ_WORK_H #include <asm/smp.h> static inline bool arch_irq_work_has_interrupt(void) { return !!__smp_cross_call; } #endif /* __ASM_IRQ_WORK_H */
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
6f028d6d78c34e8469b7edda91f5f374fe03394d
43f7d99daae7bde69fdd80605462560808b6de16
/inc/simple-win32/patcher.h
2619d821cf3cae0e5e2a47ec57161ab0d06bba78
[ "MIT" ]
permissive
brucezhang80/simple-cpp-win32
4e1238c700dd4b12a1d507c8a298c87c44e01ba3
06e3bf61f4c8c70ae9c2f285a6bf161c00468dcd
refs/heads/master
2021-05-11T04:23:58.662667
2017-05-26T09:06:31
2017-05-26T09:06:31
null
0
0
null
null
null
null
UTF-8
C
false
false
191
h
#ifndef PATCHER_H_WIN_66BC65DB_AFF6_43C8_8654_D1A2801635E2 #define PATCHER_H_WIN_66BC65DB_AFF6_43C8_8654_D1A2801635E2 #include "_third/CPatch/patcher.h" typedef CPatch Patcher; #endif
[ "ximenpo@jiandan.ren" ]
ximenpo@jiandan.ren
d29243668b44d4ad6cd505afde9c97f1b3db153d
385cd45551958575aeacf02a9590c200e87b79e6
/runOpt/fwkeul_beta.c
3abc8bfe09982d4ca3ad7d87ca1d9b17b239cfad
[ "MIT" ]
permissive
samlaipolyu/GesSo
b7014c59b9b2a4b2a852dd2a87f5fb5fc6357d71
8b01a3ea638453375327ff7547684611fd5aaeb3
refs/heads/main
2023-08-13T22:45:35.680366
2021-09-29T03:46:56
2021-09-29T03:46:56
372,576,441
1
0
null
null
null
null
UTF-8
C
false
false
9,510
c
/* * fwkeul_beta.c * * Code generation for function 'fwkeul_beta' * */ /* Include files */ #include "fwkeul_beta.h" #include "mwmathutil.h" #include "rotm2eul.h" #include "roty.h" #include "rotz.h" #include "rt_nonfinite.h" #include "runOpt.h" #include "runOpt_data.h" /* Variable Definitions */ static emlrtRSInf...
[ "jw.lai@connect.polyu.hk" ]
jw.lai@connect.polyu.hk
f86c32673c6e0247534cbb1802637f3c989c52d9
c5b02d3b0888c5b7bfd849afdc87f6f57181c8f0
/mudlib/d/nocte/kuril/mon/hsspra.c
7a215634b571ba95916b96a2ccdf789da91141f7
[]
no_license
jpeckham/DarkeLIB
8a311164f460cf2acd9e0fc7e1e1e69710f31b80
87c020b4974981879aa68f5d19b0dc2e96d2fe7d
refs/heads/master
2021-09-11T08:55:34.673296
2021-09-05T04:58:33
2021-09-05T04:58:33
141,068,816
2
5
null
2021-09-05T03:06:16
2018-07-16T00:39:43
C
UTF-8
C
false
false
2,211
c
#include <nevin.h> inherit "/std/barkeep"; create() { ::create(); set_name("hsspra"); set_id( ({ "waitress", "hsspra", "kuril mob" }) ); set_short("Hsspra the restaurant waitress"); set("aggressive", 0); set_level(10); set_long("She is ready to take your order.\n"); set_gender("femal...
[ "jdpeckham@gmail.com" ]
jdpeckham@gmail.com
266918a0e1675daebbbb66340ff786a556baf5ff
108a153449e91a3a8d0ec39bb8bc866a4d625754
/src/USB/cdcuser.c
191f3225aa23ffddf1ae5de34f9e6cbf64449196
[]
no_license
ShotaAk/9AXIS
acab869267750d979c66d1c80f7fb290357f7cf0
a6667638d523549708db6d49e4c4d03ddbb1dce0
refs/heads/master
2020-03-30T20:14:43.790524
2018-10-04T13:52:25
2018-10-04T13:52:25
151,579,629
0
0
null
null
null
null
UTF-8
C
false
false
13,479
c
/*---------------------------------------------------------------------------- * U S B - K e r n e l *---------------------------------------------------------------------------- * Name: cdcuser.c * Purpose: USB Communication Device Class User module * Version: V1.10 *-------------...
[ "macakasit@gmail.com" ]
macakasit@gmail.com
c876e9ac5fa996c1013c918045e508136f1565ac
b4b9d35b5430a227ed4f00e572cc08a5bb844aa2
/include/nuttx/power/power_ioctl.h
b95f17ba24da1b72f2eb9d154a0cf211b42cde24
[ "LicenseRef-scancode-warranty-disclaimer", "HPND-sell-variant", "MIT-open-group", "BSD-3-Clause", "MIT", "LicenseRef-scancode-bsd-atmel", "GPL-1.0-or-later", "ISC", "HPND", "LicenseRef-scancode-other-permissive", "Apache-2.0", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
renbing-robin/incubator-nuttx
188e3e2e3a1c7e209e42b13fabb4f70ad5c88446
0a2c7f7ac5bfff03a9d63dbbbf15205cb3f0a5bf
refs/heads/master
2022-12-20T06:21:28.888109
2020-09-08T05:10:13
2020-09-08T06:54:49
293,791,972
1
0
Apache-2.0
2020-09-08T11:38:50
2020-09-08T11:38:49
null
UTF-8
C
false
false
2,986
h
/**************************************************************************** * include/nuttx/power/power_ioctl.h * NuttX Power-Related IOCTLs definitions * * Copyright (C) 2017, 2019 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <gnutt@nuttx.org> * * Redistribution and use in source and binary f...
[ "gnutt@nuttx.org" ]
gnutt@nuttx.org
adc1cef7a479043d9b5e483f66dc029c14bd390a
16e0971eb1e37fcd87e242a014586f75a652476e
/tcl8.4.18/unix/tclUnixInit.c
dcfdce9048dd4aac2820fe357870578f6655896f
[ "TCL" ]
permissive
soohyunc/TFWC
a696b0c2e249f5c7884e5698b8a3a525a0b655cd
d9ff4c1d94f5da521bdf92e3faba93ef21b562bd
refs/heads/2.34
2021-01-20T21:52:32.702933
2015-06-27T15:45:39
2015-06-27T15:45:39
10,314,456
0
1
null
2015-06-27T15:45:39
2013-05-27T12:33:42
C
UTF-8
C
false
false
33,930
c
/* * tclUnixInit.c -- * * Contains the Unix-specific interpreter initialization functions. * * Copyright (c) 1995-1997 Sun Microsystems, Inc. * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * * RCS: @(#) $Id$ */ #if defined(HAVE_COREFOUNDATION) #include <CoreFoundation/CoreFoundation.h...
[ "soohyunc@e14362a3-d196-dc11-b158-00301b3f055e" ]
soohyunc@e14362a3-d196-dc11-b158-00301b3f055e
6cdd994dbf9ddc4e64301602b51a1cc8be503746
4b3611025129ab43af64d508c099c954a412b77c
/I2C/I2C.h
b54e952b96dab5bcfb5a593a0c5a79f0dc851aef
[]
no_license
TTko/acces_parking
de41222822284acd94e3cd67b325c79330f2fb35
6a88a79d975eb5b02e82acbcbab4240c9daf77a0
refs/heads/master
2020-04-04T23:28:30.988885
2017-10-04T15:41:12
2017-10-04T15:41:12
156,360,206
2
0
null
2018-11-06T09:39:12
2018-11-06T09:39:12
null
UTF-8
C
false
false
842
h
#ifndef I2C_H #define I2C_H /*cette macro permet de placer a 1 le bit d'un registre*/ #ifndef sbi #define sbi(sfr,bit) (_SFR_BYTE(sfr)|=_BV(bit)) #endif /*cette macro permet de placer a 0 le bit d'un registre*/ #ifndef cbi #define cbi(sfr,bit) (_SFR_BYTE(sfr)&=~_BV(bit)) #endif void initI2C(int vitesse){ /*division...
[ "sebastien.pisak@ac-rouen.fr" ]
sebastien.pisak@ac-rouen.fr
1bf53f8b44a3cfed76ce4df38ec9c7f0207cade0
c4d8c02fda1c01afa203a37a24259b3a4c1d31a1
/Corewar/asm_my/libft/ft_memcmp.c
c99c68a25210f7f908f3f8b47536104a71023957
[]
no_license
sgarry4577/C-projects
daa02208879b43d88fb970df5c9d19854de10ec2
47996afe34b952b5df542f910903d53677030625
refs/heads/master
2020-12-05T12:59:41.237581
2020-01-06T14:46:40
2020-01-06T14:46:40
232,117,590
0
0
null
null
null
null
UTF-8
C
false
false
1,186
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memcmp.c :+: :+: :+: ...
[ "sgarry@at-f2.21-school.ru" ]
sgarry@at-f2.21-school.ru
4e5294e57439b864fa2ad9d9998f046ed71c5fda
7bc69f621283125c4d831aa209980f8facc3a532
/arm/8.22.1/ST/STM32H7xx/STM32Cube_FW_H7/Projects/STM32H743ZI-Nucleo/Examples/TIM/TIM_OnePulse/Src/main.c
2a83a848200f081bbe2e31a01016ca413dcfbf28
[ "BSD-2-Clause" ]
permissive
xtra72/STM32H743
81dfbe4aa3ca3584abfef487e36ab4ca86fccdf9
7300bcac0ac6a21fcf916437d7d064c9f0f97214
refs/heads/master
2020-05-09T18:04:13.838760
2019-08-14T04:49:04
2019-08-14T04:49:04
181,322,918
0
0
null
null
null
null
UTF-8
C
false
false
11,053
c
/** ****************************************************************************** * @file TIM/TIM_OnePulse/Src/main.c * @author MCD Application Team * @version V1.0.0 * @date 21-April-2017 * @brief This sample code shows how to use TIM HAL API to generate * a one pulse signal ********...
[ "xtra72@gmail.com" ]
xtra72@gmail.com
4d61357ba89739fcaddf825dcb1db5ff0a95a6ec
ebad3537f4b272244683918ad69502d21e8c94c6
/VecMat/sortersNotes/msort_Kimchi/revised.c
bfe52067b2b33bd2fe174510ca8e96f5c974c8df
[]
no_license
jameskermode/AtomEye
2667928e30f89c1629bc878cb161c30605e65092
c418eb2553f6793460d4a956236fc698c39fbe74
refs/heads/master
2020-05-29T12:36:00.473059
2017-03-16T18:02:26
2017-03-16T18:02:26
2,794,500
26
10
null
2017-03-16T18:02:27
2011-11-17T09:58:24
C
UTF-8
C
false
false
1,415
c
/* msort_Kimchi() */ static int *msort_Kimchi_tmp; static double *msort_Kimchi_x; void msort_Kimchi_Merge(int base[], int n_left, int n_right) { register int ind = 0, i_l = 0, i_r = 0; register int *c, *d; int *msort_Kimchi_tmp_r = msort_Kimchi_tmp+n_left; d = base; c = msort_Kimchi_tmp; loop1: REPE...
[ "jrk33@9aeadc09-fa51-0410-b5d8-e5c65b1e449c" ]
jrk33@9aeadc09-fa51-0410-b5d8-e5c65b1e449c
054270d6637ffaf6fc96860a7cfb4c7ac6613ac3
8f22c44730a63c0e03daa6b3e79b623c0d3b0cc8
/practice06/practice06/1055_集体照(X).c
5e428b70b669f5a6f5ca7db7ef0dd8d2150315d5
[]
no_license
suixibing/PAT_BasicLevel_Practice
0dbdefb3d0c3abb70b8c0376d1ae0f39773f6730
fd20e735b733e129708c6e0afe907ae3d5f2c43b
refs/heads/master
2022-03-26T05:12:02.831455
2019-12-17T15:43:15
2019-12-17T15:43:15
null
0
0
null
null
null
null
GB18030
C
false
false
1,170
c
#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include <string.h> #include<stdlib.h> typedef struct PEOPLE { char name[10]; int height; }People; int ComparePeo(const People *people1, const People *people2) { return people1->height != people2->height ? people1->height - people2->height : strcmp(people2->name...
[ "shiawaseli@users.noreply.github.com" ]
shiawaseli@users.noreply.github.com
a7c555a09a18e76b69ff6c01f6e4160842d947ef
0054d0a9398dd1c71260d7045dd7a54f66883d7f
/client/libft/ft_strchr.c
1593bbf88676c905a8e85895d751bfe92ff51c15
[]
no_license
BenSouchet/raytracer
e947b968004f830e88bff13598aa14978714182d
965bea6f3221169bc5f9216446037cc8b5c3edde
refs/heads/master
2021-06-18T11:14:23.260017
2017-06-04T16:13:46
2017-06-04T16:13:46
92,842,835
1
0
null
null
null
null
UTF-8
C
false
false
1,007
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strchr.c :+: :+: :+: ...
[ "xavielniel@gmail.com" ]
xavielniel@gmail.com
56fc55d1ffc65fe1b224163c808ba2fc6e725b9e
38c10c01007624cd2056884f25e0d6ab85442194
/native_client/src/nonsfi/irt/irt_interfaces.c
d1561c5979a65c908cf6348202e261452461fa17
[ "BSD-3-Clause", "Zlib", "Classpath-exception-2.0", "BSD-Source-Code", "LZMA-exception", "LicenseRef-scancode-unicode", "LGPL-3.0-only", "LGPL-2.0-or-later", "LicenseRef-scancode-philippe-de-muyter", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-intel-osl-1993", "HPND-sell-var...
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C
false
false
24,678
c
/* * Copyright (c) 2013 The Native Client Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <assert.h> #include <errno.h> #include <fcntl.h> #include <limits.h> #include <pthread.h> #include <stdio.h> #include <stdlib.h> ...
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
6638e2828e81f3d11e0099e8ff15aa5b83994e9c
143dd594fe82b7bc72ea97ec9b99bef812eaa5f1
/Chapter-7-Process Environment/my_exit3.c
0f66732081fe279549fe9307538a117b27cac890
[]
no_license
dendi875/APUE
c93dcc06c7d2745028df044be1954fd052a709c1
7db4b4316a4a264ea6c278f52c507d8db6a37180
refs/heads/master
2020-04-24T08:41:48.842405
2019-12-06T02:02:36
2019-12-06T02:02:36
171,839,238
1
0
null
null
null
null
UTF-8
C
false
false
1,958
c
/** * 该程序证明如果main函数调用了用户函数,用户函数调用了_exit或_Exit, * 那么用户函数直接返回内核,不会再调用atexit注册的函数。 */ #include "apue.h" static void my_exit1(void); static void my_exit2(void); static void f1(void); int main(void) { if (atexit(my_exit2) != 0) { err_sys("can't register my_exit2"); } if (atexit(my_exit1) != 0) { ...
[ "quan.zhang@guanaitong.com" ]
quan.zhang@guanaitong.com
053bddf4cb9df33ce8d1882a7f2339d20d0a6d85
7a12c7c0bbd61918b969dd2b00ffbf7967e688e6
/codekata/string-count.c
0ef180fa606030f2dfaadac2234241c644b3f895
[]
no_license
harshita-karnani/C-programming
ba82fdf2879d6440861254e407043a308f40962d
c8d75b1f28c2d0499f4523c1f3ec1b0e6122f42f
refs/heads/master
2021-05-06T02:29:25.091478
2018-05-30T11:43:04
2018-05-30T11:43:04
114,605,687
0
0
null
null
null
null
UTF-8
C
false
false
182
c
#include <stdio.h> #include<string.c> int main(void) { int n,count=0,temp=0; scanf("%d",&n); while(n!=0) { temp=n%10; count++; n=n/10; } printf("%d",count); return 0; }
[ "noreply@github.com" ]
harshita-karnani.noreply@github.com
709d7321ffb86fc510d6b27b3e43d58ac9ca25cc
d9412c17fa34fc850060a89165a72fd0cbf9ecfc
/star2.c
bcd7b3722d690f59c79ee44016a980f728a9936b
[]
no_license
Skanda-Bharadwaj/Basic-C
197ad899887b85e5d251b38e76111af95a287bca
1f56af38097e25892da22186a034a324bccd3894
refs/heads/master
2020-05-22T17:42:45.076387
2017-03-12T08:13:49
2017-03-12T08:13:49
84,710,393
0
0
null
null
null
null
UTF-8
C
false
false
197
c
#include<stdio.h> int main(){ int n=11,i,j; for (i=1; i<=(n/2+1); i++){ for (j=(n/2); j>=i; j--){ printf(" "); } for (int k=1; k<=(2*i-1); k++){ printf("*"); } printf("\n"); } }
[ "noreply@github.com" ]
Skanda-Bharadwaj.noreply@github.com
6c0aab24e78543e77de87730058f7003b4f4dace
62fca7aa07094bea44aea3f781576f3448590e8c
/The First Person/Temp/StagingArea/Data/il2cppOutput/t1001.h
f911438ecc74740e4ee3d53fa4fa235a4e696c68
[]
no_license
RandomProduct/FirstPerson
ebd721ee93326413d110e2a787ff159690cb1157
5e07fcbf028bae55f3b4fc7635f20f5bb0088105
refs/heads/master
2021-01-10T16:12:46.329009
2016-03-01T05:49:03
2016-03-01T05:49:03
52,850,978
0
0
null
null
null
null
UTF-8
C
false
false
252
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> struct t1002; #include "t17.h" struct t1001 : public t17 { }; struct t1001_SFs{ t1002 * f0; t1002 * f1; };
[ "ream@uwec.edu" ]
ream@uwec.edu
f09bf8dbc56aa95239d43bb231f3b893c6379fdc
67305fcba68fdf469862aed2959ad1dd5b22a536
/rt-thread/components/lwp/lwp_mem.c
63fd5c89e1893ef32808c58c7e400fe8baab58c4
[ "Apache-2.0", "LicenseRef-scancode-generic-cla" ]
permissive
RT-Thread/IoT_Board
cdabf100a8d515fbcaa65ab0b72ec67acb0d2c9a
2d218a4e06f06dbb356ec00767904f91d00db7cc
refs/heads/master
2023-09-04T16:51:34.485240
2022-01-19T01:26:16
2022-01-19T01:26:16
161,133,933
344
238
Apache-2.0
2023-06-06T04:10:57
2018-12-10T07:21:46
C
UTF-8
C
false
false
5,554
c
/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2018-06-10 Bernard first version */ #include <rtthread.h> #include <lwp.h> #define DBG_TAG "LWPMEM" #define DBG_LVL DBG_WARNING #include <rtdbg...
[ "armink.ztl@gmail.com" ]
armink.ztl@gmail.com
660be29160636e549be1a6e15f47ef221103ee88
c974be9328483be28714c3461cec3b29fa633ea3
/nRF5_SDK_17.0.0_9d13099/examples/ble_peripheral/ble_app_cts_c/pca10056e/s112/config/sdk_config.h
ce61ad84e86edc34a55705e14c4cbae06e831231
[ "MIT" ]
permissive
Michaelhobo/nrf5_sdk17.0.0
3d1b03d3ce185dbd1d9bbdd99ca825a34f4ed434
1ac0daa9b6a4f359cefb6feda4ea38335f53b14d
refs/heads/master
2023-04-12T10:08:34.988836
2021-04-22T05:24:20
2021-04-22T05:24:20
276,929,487
0
0
MIT
2021-04-22T05:24:21
2020-07-03T15:18:10
C
UTF-8
C
false
false
267,767
h
/** * Copyright (c) 2017 - 2020, Nordic Semiconductor ASA * * 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 no...
[ "noreply@github.com" ]
Michaelhobo.noreply@github.com
128cd47fd2ba27277398dd595ffccc327f8485c9
5bc61b078b0df9d6034ab8339e2bd49f7fad4f79
/Classes/Native/mscorlib_System_Collections_Generic_Dictionary_2_Transform_1_31.h
3db020582e1a37e480c47e1facf478faf3342a5f
[]
no_license
Marcurion/PureMac
326aceaa69ffe43903dc2e0f3a220a39699a8266
f84326c8739512970707f89ffd9f1d1330314f0f
refs/heads/master
2021-01-10T17:01:28.241337
2015-11-26T18:47:43
2015-11-26T18:47:43
46,941,200
0
0
null
null
null
null
UTF-8
C
false
false
721
h
#pragma once #include <stdint.h> // System.Object struct Object_t; // System.IAsyncResult struct IAsyncResult_t53; // System.AsyncCallback struct AsyncCallback_t54; // System.Collections.DictionaryEntry #include "mscorlib_System_Collections_DictionaryEntry.h" // System.Collections.Generic.KeyValuePair`2<System.Object,...
[ "marcurion@googlemail.com" ]
marcurion@googlemail.com
f253139e09c1f59eab658291d256656faa45a9c5
8d3d080869d357b6afb06783c435fb5f4010d3ab
/Advanced_Unix_Programming/hw2/opt.c
9ef8bed197b85367e4457b3e1b359f378fd3f1c2
[]
no_license
jxcodetw/NCTU_HW
1ca53986a44672744010bbfb2a6ff85b9823da78
fd9f3ee6cdd01e531ec2e0eb632b4d08ba8c5be3
refs/heads/master
2022-10-07T21:17:39.362080
2020-06-10T15:50:29
2020-06-10T15:50:29
271,316,136
1
0
null
null
null
null
UTF-8
C
false
false
757
c
#include <stdbool.h> #include <unistd.h> #include "opt.h" const static char options[] = "axprqs"; struct opts_t opts = { .list_all_users_process = false, .list_without_associated_terminal = false, .sorted_by = S_PID, }; void opt_parse(int argc, char* argv[]) { int opt; while((opt = getopt(argc, argv, "axpqrs"))...
[ "jxcode.tw@gmail.com" ]
jxcode.tw@gmail.com
2659506799593fa45b32a5744c09a74290511f8e
70b9686323c7477d14db68d6600bc6a352949e69
/project/include/list_management.h
78e7840e2f5437ffd06240ab4f6a871affbfa495
[]
no_license
GeorgiyX/TP-CCpp-HW1
c785b3468e0891a36aec8860f60e5194f80da973
be1c1a21eeb382ced79d245355f3812e4d867eca
refs/heads/master
2023-08-25T00:35:36.840084
2021-10-18T19:45:45
2021-10-18T19:45:45
348,030,185
0
0
null
2021-03-18T13:51:12
2021-03-15T15:46:52
null
UTF-8
C
false
false
1,597
h
#ifndef TP_CCPP_HW1_PROJECT_INCLUDE_LIST_MANAGEMENT_H_ #define TP_CCPP_HW1_PROJECT_INCLUDE_LIST_MANAGEMENT_H_ /** * A single-linked list node that stores country parameters and a pointer to the next element. */ typedef struct country_node { struct { size_t square; size_t population; doubl...
[ "dev.georgiy@gmail.com" ]
dev.georgiy@gmail.com
2a7bc30f3a46d208fba26812bcccfd1402422f0a
177b00360c04f704696614dd0d3b770204cf5e79
/utils/SSEphem/SOFA/atco13.c
9be4260fb951e49a72535d6939d9bda94d296d6a
[ "MIT", "GPL-3.0-only", "LGPL-3.0-only" ]
permissive
rabrahm/ceres
816fa7bb0462bfc26e13bf8664360b7ce32a6519
72a95b22a8500ea8702062005232d6dcd1d86b60
refs/heads/master
2023-07-20T01:19:02.409058
2023-07-17T14:44:13
2023-07-17T14:44:13
67,373,548
40
27
MIT
2019-03-25T00:51:08
2016-09-04T23:30:04
C
UTF-8
C
false
false
12,475
c
#include "sofa.h" int iauAtco13(double rc, double dc, double pr, double pd, double px, double rv, double utc1, double utc2, double dut1, double elong, double phi, double hm, double xp, double yp, double phpa, double tc, double rh, double wl, double ...
[ "noreply@github.com" ]
rabrahm.noreply@github.com
e5b3b4c402f20fc0e6a34e146b31801bcceadf77
dec20ef31eee2b843721cb856e0785bc8838b047
/array.h
da5150728ab89b37b6156cbc7d7ff67338a57e37
[]
no_license
sekaranglila/GetWealthy
116b3209756162e26a8fddf5b18a31f6a1270b7e
a05d857e8b46e822f20a230b31a4897ece35fedf
refs/heads/master
2021-01-11T17:06:07.976978
2017-01-22T16:28:19
2017-01-22T16:28:19
79,718,351
0
0
null
null
null
null
UTF-8
C
false
false
741
h
/* Nama/ NIM : Kelompok Tubes 1-7 * Nama file : HeaderPemain.h * Topik : Monopoly, Let's Get Wealthy * Tanggal : 23 November 2015 * Deskripsi : phase 3, header array */ #ifndef ARRAY_H #define ARRAY_H /* Indeks untuk array integer */ #define IdxMinInt 1 #define IdxMaxInt 30 /* Indeks u...
[ "noreply@github.com" ]
sekaranglila.noreply@github.com
96b28434ba0de84c138da9bdbb9d8322843a4a67
a09ab104f90ce6d067bc216f6b2a9eb669a1159b
/proyecto_14/main.c
4f05481028d18cca42c92356036cc3b09bbae1e6
[]
no_license
Estebamq/practica
786d42f94a6e817dbfe7b333bdc9accf67fe6444
4ee7f03ed39790b2b4c07c9f1771e9f6cf73daf7
refs/heads/master
2022-07-21T20:44:21.701959
2020-05-14T07:57:05
2020-05-14T07:57:05
263,851,085
0
0
null
null
null
null
ISO-8859-1
C
false
false
1,446
c
#include <stdio.h> #include <stdlib.h> #include "clientesMascotas.h" #define TMAS 20 #define TCLIE 10 /****************************************************************************** estructuras: producto: id , nombre , precio , stock proveedor:id , nombre , localidad Cada producto puede tener un solo pro...
[ "noreply@github.com" ]
Estebamq.noreply@github.com
4b6979eec97e52db53fb86c51a929dd0abba5067
3ccd6f3118339d5b2c768d3d3164a96a374b6f24
/RL78G10_footsensors/cg_src/r_cg_systeminit.c
31cadd1b1ddf6bb372b4b6b89f6faa19577ca990
[]
no_license
JiGoRo1969/RL78G10_FootSensors
ede0e459363577d8aa4f0cfbafe817c7bc430798
6ce7bc1b5d573c2576c7e37dda19a7a33ba31e63
refs/heads/master
2022-10-22T09:21:04.808235
2020-06-17T09:14:43
2020-06-17T09:14:43
263,810,644
1
0
null
null
null
null
UTF-8
C
false
false
4,409
c
/*********************************************************************************************************************** * DISCLAIMER * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. * No other uses are authorized. This software is owned by Renesas Elect...
[ "n.okada@nifty.com" ]
n.okada@nifty.com
298e173ed87cf02031af7fba70559c4aff892019
c0a360f21cba4b888b86a0b6a62b60fecf5cb87b
/Projects/QueuePro/queueList.h
685aab727630b09026700b567ac73f39774db3ea
[]
no_license
myratsapar/Data-Structures
b5bcab171655a019bd61989b5d5eea87da34941e
1178e4a4080fe4fb40c3df45c38315e72307934a
refs/heads/master
2021-09-28T05:46:53.642252
2018-11-15T02:13:59
2018-11-15T02:13:59
106,123,587
0
0
null
2017-10-27T21:44:44
2017-10-07T19:09:24
C++
UTF-8
C
false
false
245
h
#ifndef queueList #define queueList struct student{ int id; struct student *next; }; typedef struct student Student; student *enque(student *root, int id); student *deque(student *root); void printQueue(student *root); #endif
[ "noreply@github.com" ]
myratsapar.noreply@github.com
527c463c4344fa7911cf43bbc10a7d718ec7c96e
a378e495a6d805a6f620148bd204a90fff8356da
/vendor/WinMice_64/mice/src/cspice/writln.c
c7f838f2587a31f97468a814ef7e288f72a803b3
[]
no_license
zhufengGNSS/odtbx_nasa
815a4b7b7075fb201efdfe020a132b6ef0f9bd38
ce195f5b7d32b4972ee46e76fe9a04ccf3c3e2a7
refs/heads/master
2021-06-07T23:45:18.676574
2015-07-28T21:50:02
2015-07-28T21:50:02
74,735,982
2
2
null
null
null
null
UTF-8
C
false
false
13,330
c
/* writln.f -- translated by f2c (version 19980913). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Table of constant values */ static integer c__1 = 1; /* $Procedure WRITLN ( Write a text line to a logical unit ) */ /* Subroutine ...
[ "eric.grejda@emergentspace.com" ]
eric.grejda@emergentspace.com
7e24a622f66dda29d729dc2381a0bfb3d8e7375c
8ddbcb74e55179620c74f66ddf1e845ad8027535
/1BProject/lab1b-client.c
8d02198773c92fd1571d5a03f1a88a0c0be3546e
[]
no_license
mlupu98/CS111
4b0ad816c36984a5444585a2c27ea0d8264bd6c2
b4aedc5d64e3c42ac63dd64ed5b0f16e55b12915
refs/heads/master
2020-04-07T07:26:08.010347
2018-11-19T19:15:49
2018-11-19T19:15:49
149,169,122
0
0
null
null
null
null
UTF-8
C
false
false
12,191
c
//client #include <unistd.h> #include <string.h> #include <errno.h> #include <getopt.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <signal.h> #include <termios.h> #include <poll.h> #include <sys/w...
[ "mateilupu20@g.ucla.edu" ]
mateilupu20@g.ucla.edu
bd0b9beac7c639c9cd28733f209a2bcb66df51e6
7cbdb37b5c5442e141246b9449bcd0ac4a1faafe
/c project/pointerintarray.c
b17ba64b2630ff42ef129a263e260053e23d040f
[]
no_license
Laijyourluv/c-projects
d7b6c3d08c44bde2e7043cf6c2198293cf84530a
764c293562b6f7f0300298d04f5f969e3c43af75
refs/heads/master
2023-07-25T17:52:32.062108
2021-08-29T13:03:50
2021-08-29T13:03:50
400,947,974
0
0
null
null
null
null
UTF-8
C
false
false
480
c
#include <stdio.h> const int max = 5; // global declaration -> value of constant variable can't be changed while excution int main() { int a[max], i; for (i = 0; i < max; i++) { scanf("%d", &a[i]); } int *ptr[max]; for (i = 0; i < max; i++) { ptr[i] = &a[i]; //assign addr...
[ "laijyour26@gmial.com" ]
laijyour26@gmial.com
599956830b4dfea9b1fdaf24936bef0da16ad175
8c6d39b5230e532b031985ff59b6c687aba4ca43
/C/pointerSum.c
3ca9b5b25889b81f175eb2db4e82cf3d104f7bd4
[]
no_license
seanpai96/NCKU_git
eb7931dc9aa920ff21bd2478cecb78b988eaac8c
402dddf7809b869ad01f281260548ad1359dd45a
refs/heads/master
2023-06-18T11:46:54.026598
2021-07-17T05:32:53
2021-07-17T05:32:53
294,070,129
0
0
null
null
null
null
UTF-8
C
false
false
125
c
void star(int* arr, int* result) { *result = 0; for(int i=0;i<5;i++){ *result += *arr; arr += 1; } }
[ "seanpai96@gmail.com" ]
seanpai96@gmail.com
acfb9088c164432a3035c510f3dbee91ddbfbbb0
d21a622182ef1ef7d6faecd88886f98efaff926b
/Project/AT_START_F403A/Examples/I2C/EEPROM/I2C_EEPROM/i2c_eeprom.h
ee54c53fe8dda1f0ed14e6b230859ddbce62f569
[]
no_license
Menglingyu2333/OV2640Driver
f75cab5a4c6c138c2308e80d968728ae1169b938
d1f22727f00270acdf887fc3217ec6a857929ec6
refs/heads/master
2023-01-29T10:41:07.155276
2020-12-14T06:15:58
2020-12-14T06:15:58
321,247,131
0
0
null
null
null
null
UTF-8
C
false
false
3,617
h
/** ****************************************************************************** * @file I2C/EEPROM/I2C_EEPROM/i2c_eeprom.h * @author Artery Technology * @version V1.1.2 * @date 2019-01-04 * @brief The header file of eeprom driver. **************************************************************...
[ "1171766563@qq.com" ]
1171766563@qq.com