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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7d4b74665a15e6bd694ecb71630db544114da093 | 00a993fdd3eb6889ad53f29cdec938ec7f0cef92 | /study/2.C_and_C++/C/class_clang/platform/01-第1天(嵌入式系统概述)/00-基础代码/01-最简单裸机工程代码/02-have-subdir/init/main.c | 6a496cb535e1eaa42975b72dda2a3df4e0b1618f | [] | no_license | dongdong-2009/API | cbed84bc792904bd018b3db7268979008c5da128 | ad3a3dbd6756c60bcbd96588c207192fb384abc4 | refs/heads/master | 2021-09-16T08:57:27.076430 | 2018-06-18T15:50:21 | 2018-06-18T15:50:21 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 236 | c | #include "uart.h"
int main (void)
{
printf("\ns5pv210: test the 02-have-subdir......\n");
printf("\nPress 'Ctrl+C' to end the test......\n");
while(1)
{
//ctrl+CÍ˳ö
if(_getc_int() == 0x03)
break;
}
return 0;
}
| [
"llb1008x@126.com"
] | llb1008x@126.com |
a1255db58582689d22131afa6d76cfd99fce92d8 | 135cb14d135ba81af69a5693f1c73e18e5c0c70d | /lines.c | ef3d4dfa7002993483c3e014c48ea675a878d3b9 | [] | no_license | guker/opengl_programming_guide_code | 851409013bbf3291d52acb455d59f8f5ae6c418e | 0a674a7f046fe00cdbe2cdea295201a793b3d21a | refs/heads/master | 2021-01-18T00:09:01.906197 | 2013-10-02T08:21:07 | 2013-10-02T08:21:07 | 39,760,567 | 1 | 0 | null | 2015-07-27T07:14:57 | 2015-07-27T07:14:57 | null | UTF-8 | C | false | false | 4,603 | c | /*
* Copyright (c) 1993-1999, Silicon Graphics, Inc.
* ALL RIGHTS RESERVED
* Permission to use, copy, modify, and distribute this software for
* any purpose and without fee is hereby granted, provided that the above
* copyright notice appear in all copies and that both the copyright notice
* and this permission... | [
"291221622@qq.com"
] | 291221622@qq.com |
b8f74696e2391cb14d12c1deba4a65f414935b66 | f42ffe2ee68e9c0a14eaf27f33c24792004ca045 | /drivers/stm32/canard_stm32.h | 7b8414c32380bdd6f81f38f6b09fdc1ae2d0d2d0 | [
"MIT"
] | permissive | matternet/libcanard | 75c9e9407b4954428e7721697de067131b28e21f | 60a94b93df426b2cef637c38d1cfbfc871f7084e | refs/heads/master | 2021-04-09T14:22:16.896256 | 2021-02-23T17:59:55 | 2021-02-23T17:59:55 | 125,578,547 | 0 | 0 | MIT | 2021-02-23T17:59:55 | 2018-03-16T23:03:18 | C++ | UTF-8 | C | false | false | 12,321 | h | /*
* Copyright (c) 2017 UAVCAN Team
*
* Distributed under the MIT License, available in the file LICENSE.
*
* Author: Pavel Kirienko <pavel.kirienko@zubax.com>
*/
#ifndef CANARD_STM32_H
#define CANARD_STM32_H
#include <canard.h>
#include <string.h> // NOLINT
#ifdef __cplusplus
extern "C"
{
#endif
/**
* ... | [
"pavel.kirienko@gmail.com"
] | pavel.kirienko@gmail.com |
c647e240f900429149e4eef9ecb40b10b1c312ce | 4defc9a85fc955baf7a15a568d60e15c98dd946d | /src/fx/zeronn/tensor.h | de092f9ad4214b1f0ba350ac823b3c2cd201267a | [] | no_license | knighton/zeronn | b4816508c498b61bb106572c35ffb5c9d99cea9a | 70553c73b52bb5df4b81edb4a2f5fa6a3d2975a9 | refs/heads/main | 2023-08-29T15:55:33.995905 | 2021-10-26T18:38:37 | 2021-10-26T18:38:37 | 411,022,988 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,580 | h | #ifndef ZERONN_TENSOR_H_
#define ZERONN_TENSOR_H_
#include <stdarg.h>
#include <stdint.h>
#include "zeronn/fx.h"
#include "zeronn/preproc.h"
#define NDIM_MAX 6
typedef struct {
int size;
int ndim;
int shape[NDIM_MAX];
fx_t* data;
} tensor_t;
typedef struct {
int size;
int ndim;
int shap... | [
"iamknighton@gmail.com"
] | iamknighton@gmail.com |
9dd84fc75128f6112c902d570a29ce2228a25746 | fba93185fd4de9945651def433b52c10721352c7 | /Script_1/Source/dokebirks_new.C | 9f63ad86d61459d50fa0557d56f7a12ef5c33118 | [] | no_license | Vlad-ole/Red_Root_scripts | 84dadbd34428385ccc49c4a27f49ae273d0d3653 | 43b41deb0f3a5175153c10abf12814c8cb2e0d67 | refs/heads/master | 2020-04-05T09:10:20.321104 | 2019-12-22T16:28:24 | 2019-12-22T16:28:24 | 156,745,597 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 49,389 | c | #include "TGraph.h"
#include "TCanvas.h"
#include "TGraphErrors.h"
#include "TMinuit.h"
#include "TPad.h"
#include "TH2F.h"
#include "TMath.h"
#include "TFile.h"
#include "TLegend.h"
#include "TF1.h"
#include "TStyle.h"
#include "TROOT.h"
#include <vector>
#include <iostream>
using namespace std ;
using namespace TMa... | [
"oleynikov.vladislav.p@gmail.com"
] | oleynikov.vladislav.p@gmail.com |
4396ab599f90d40364c62ba472039aa821478df9 | 0a579fbcd1cef145fa321b9c910a42f541f74ab4 | /4.6/2/mpx-poll.c | fa55d9d920a81baeca69981c9019f0df79924e97 | [] | no_license | electron101/stepik_linux | b947a9face03f1d277520cd1bf9306fa19c13209 | 35e279943c8b1f72bd0e52dac021aa86f3d98276 | refs/heads/master | 2020-05-18T06:39:39.654900 | 2019-08-28T08:55:31 | 2019-08-28T08:55:31 | 184,240,384 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,428 | c | /* map-noblock.c */
#include <fcntl.h>
#include <stdio.h>
#include <sys/poll.h>
#include <unistd.h>
int main(void)
{
struct pollfd fds[2];
char buf[4096];
int i;
int rc;
/* открыть оба канала */
if ( (fds[0].fd = open("p1", O_RDONLY | O_NONBLOCK)) < 0 ) {
perror("open p1");
return 1;
}
if ( (fd... | [
"sabashlive@gmail.com"
] | sabashlive@gmail.com |
15d2be4ed1f8bf01ba1e518efb526c2e84f5e1f4 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13715/function13715_schedule_6/function13715_schedule_6_wrapper.h | 2f1dbcf253134f87cc66f70d496ef740b695b2fa | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 447 | h | #ifndef HALIDE__generated_function13715_schedule_6_h
#define HALIDE__generated_function13715_schedule_6_h
#include <tiramisu/utils.h>
#ifdef __cplusplus
extern "C" {
#endif
int function13715_schedule_6(halide_buffer_t *buf00, halide_buffer_t *buf01, halide_buffer_t *buf02, halide_buffer_t *buf03, halide_buffer_t *bu... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
c458a6f13e477262235a94c731843de81092b2ac | b2fa6cc3a0726cf0d270660453bf9fefe3c9a6ac | /openmp/OMP_basic/set_threads.c | 5ae55d29ece6f4f3c904e933aab56523b4d913d8 | [] | no_license | damvantai/parallel-programming-2017 | 188fdc920120c5e563045143773325302f6b416b | 763571574c7469cb2057f011dc2c40e848a9381e | refs/heads/master | 2021-08-08T04:17:20.061336 | 2017-11-09T14:44:21 | 2017-11-09T14:44:21 | 103,840,742 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 357 | c | #include <omp.h>
#include <stdio.h>
int main(void) {
// #pragma omp parallel
// printf("hello from thread %d n hread %d\n", omp_get_thread_num(), omp_get_num_threads());
omp_set_num_threads(10);
#pragma omp_parallet
for (int i = 0; i < 10; i++) {
printf("hello %d from thread %d n hread %d\n", i, omp_get_threa... | [
"tai94bn@gmail.com"
] | tai94bn@gmail.com |
3d359c12a0d641fa4262279466e2cdce5825408b | ddda55fcfc84ac5cd78cfc5c336a3df0b9096157 | /drivers/hal/st/STM32H7xx_HAL/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h | 2ee957c35256f5229190f32f86f632dd09823364 | [
"Apache-2.0"
] | permissive | liu-delong/lu_xing_xiang_one_os | 701b74fceb82dbb2806518bfb07eb85415fab43a | 0c659cb811792f2e190d5a004a531bab4a9427ad | refs/heads/master | 2023-06-17T03:02:13.426431 | 2021-06-28T08:12:41 | 2021-06-28T08:12:41 | 379,661,507 | 2 | 2 | Apache-2.0 | 2021-06-28T10:08:10 | 2021-06-23T16:11:54 | C | UTF-8 | C | false | false | 64,685 | h | /**
******************************************************************************
* @file stm32h7xx_hal.h
* @author MCD Application Team
* @brief This file contains all the functions prototypes for the HAL
* module driver.
***************************************************************... | [
"cmcc_oneos@cmiot.chinamobile.com"
] | cmcc_oneos@cmiot.chinamobile.com |
dc082c9e182585eb788350e02458aa8c095e7e44 | 202bbc35b672ebda80f7295a7793995d5d877206 | /ScubaSteve/Builds/IOS/Classes/Native/mscorlib_System_MonoTouchAOTHelper.h | c5ecff4d7b007b223cc1265562334bbfd4d4cc06 | [] | no_license | gohun04/ScubaSteve | c2388d677c77b374fccb62c0e8cce4740d06ca50 | 2428e54e97238f48f67652a8dd982e1f6821e7e0 | refs/heads/master | 2021-01-01T16:00:07.055501 | 2015-04-25T09:07:26 | 2015-04-25T09:07:26 | 34,557,070 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 281 | h | #pragma once
// System.Object
#include "mscorlib_System_Object.h"
// System.MonoTouchAOTHelper
struct MonoTouchAOTHelper_t2388 : public Object_t
{
};
struct MonoTouchAOTHelper_t2388_StaticFields{
// System.Boolean System.MonoTouchAOTHelper::FalseFlag
bool ___FalseFlag_0;
};
| [
"jacobpipers@msn.com"
] | jacobpipers@msn.com |
385b6a34876e48f7f72c71eb32eefb7f62f5eca2 | 3d2e36f1b4855fcd206474f4aaac615d03ea0c23 | /crypto_kem/rollo-I-128/ref/ffi_poly.h | 2e7a58b7cff47635d5d52cad5700e1a7ac87ca1e | [] | no_license | dsprenkels/mupq | 842e56cf001c110c5834f31a864c81740e729220 | 12f6d394d9e51ef8308860633f3d097f298cec69 | refs/heads/master | 2021-02-17T19:11:04.970903 | 2020-02-04T11:29:42 | 2020-02-04T11:29:42 | 245,120,527 | 0 | 0 | null | 2020-03-05T09:29:43 | 2020-03-05T09:29:42 | null | UTF-8 | C | false | false | 2,060 | h | /**
* \file ffi_poly.h
* \brief Interface for polynomials over a finite field
*/
#ifndef FFI_POLY_H
#define FFI_POLY_H
#include "ffi.h"
#include "ffi_elt.h"
#include "ffi_vec.h"
#include "ffi_vspace.h"
#include "nist-rng.h"
void ffi_poly_init(ffi_poly* p, uint64_t degree);
void ffi_poly_resize(ffi_poly p, uint64_... | [
"noreply@github.com"
] | dsprenkels.noreply@github.com |
748ebc5b9d925b5134a977b11d1a0d77eaf6babe | 72a3994c7d326361c1337dc300f3c4491bb57211 | /libft/sources/utils/ft_putendl.c | 581fcc57348baec33bd7034a9c44ef74cf6d0d56 | [] | no_license | tle-dieu/lem-in | 18e822075b125278d8aa15c233f6b4ab1f08e9d1 | 95428442db116338634106564204a10e0614caa9 | refs/heads/master | 2020-04-20T16:19:18.129369 | 2020-03-09T13:05:12 | 2020-03-09T13:05:12 | 168,955,015 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,031 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: ... | [
"tle-dieu@e1r6p7.42.fr"
] | tle-dieu@e1r6p7.42.fr |
0bc096df20ec4cb0ceb01b38400857a49b5a6b9f | e77252d253f971bac25e5dc82c9cc74947c40fc8 | /Temp/StagingArea/Data/il2cppOutput/UnityEngine_UnityEngine_Physics2D.h | fcd9a7c5f6c162b7516bc1a959738b9e7b9d9c7f | [] | no_license | zpsaras/RemoteAssociatesTest | 47435babb962ba98a6bbd78d2a0c54b0410f2338 | 4199c7abcc14593d53370a8d135630d176235ff1 | refs/heads/master | 2021-01-18T15:08:17.660623 | 2015-12-05T21:36:30 | 2015-12-05T21:36:30 | 47,208,339 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 537 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_t1_874;
#include "mscorlib_System_Object.h"
// UnityEngine.Physics2D
struct Physics2D_t5_100 : public O... | [
"zach.psaras@gmail.com"
] | zach.psaras@gmail.com |
cf2351fa21bb0cc4df7699146227dde7832e3d24 | ff87f4221e2edac9fbc6094ea31eb1fcc87ae391 | /EL_Electrical/Dashboard controller/Arduino Invictus/test_bench/test_bench/projectconfig.h | 408a8a2c44ea7d7b8f9f5e623cc9d78dd139e53f | [] | no_license | NgToan/Ressources2020 | 201f06b9f1e6530bbb963222fc4409fcd37f7db6 | daaefeb8d3e58418c9bbc18a887b30d766af74b9 | refs/heads/master | 2020-09-23T10:01:42.684744 | 2019-12-02T16:48:18 | 2019-12-02T16:48:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 222 | h | #ifndef PROJECTCONFIG_H
#define PROJECTCONFIG_H
const int POT_PIN=15;
const int LAUNCH_PIN=14;
const int GEAR_UP_PIN=13;
const int GEAR_DOWN_PIN=12;
const int RED_SHIFT_PIN=5;
const int BLUE_SHIFT_PIN=6;
#endif | [
"raphael.viudes@ecl19.ec-lyon.fr"
] | raphael.viudes@ecl19.ec-lyon.fr |
afd00d55b97da7aba4b2aa18e6e3b6afeb998d3a | 1ad4dd5261a185f3cf92d7fd3226de28679747c5 | /kernel/drivers/gpu/drm/arm/hdlcd_drv.h | 56f34dfff64065640284e5eee100e628f4a59204 | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | oslab-swrc/libmpk | b30c8fa2eea834a8ab441fdd9f7789296781ec17 | a0b20ab8819d60d22d2a90f0d54eccae40ae6b05 | refs/heads/master | 2022-05-01T01:36:07.491532 | 2022-03-18T05:44:14 | 2022-03-18T05:44:14 | 223,290,854 | 0 | 0 | MIT | 2019-11-22T00:30:13 | 2019-11-22T00:30:12 | null | UTF-8 | C | false | false | 944 | h | /* SPDX-License-Identifier: GPL-2.0 */
/*
* ARM HDLCD Controller register definition
*/
#ifndef __HDLCD_DRV_H__
#define __HDLCD_DRV_H__
struct hdlcd_drm_private {
void __iomem *mmio;
struct clk *clk;
struct drm_fbdev_cma *fbdev;
struct drm_crtc crtc;
struct drm_plane *plane;
struct drm_atomic_state ... | [
"spark720@gatech.edu"
] | spark720@gatech.edu |
85f648e70ed970f3c03cc5bbcb97f34b81dcb66d | a5a2bb52bff0e1ba6aa03d9a63b829317555e730 | /mpi/heat/heat-2d/heat-2d.c | 3dce7e3ebceac24b41f52a2bee86e82ec30d1217 | [
"MIT"
] | permissive | mkurnosov/hpczoo | 0035b6bdc2034718b1e1523f984e855785deb9d6 | d9be8ae64273789976613c2009feec1acef7aaf2 | refs/heads/master | 2021-01-10T06:07:20.983110 | 2015-06-03T05:22:30 | 2015-06-03T05:22:30 | 36,780,586 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,494 | c | /*
* heat-2d.c: MPI implementation of Laplace equation solver by Jacobi iteration method.
*
* 2D Laplace equation:
* \Delta u = 0
* \frac{\partial^2 u}{\partial x^2} + \frac{\partial^2 u}{\partial y^2} = 0
*
* Domain: x in [0, 1], y in [0, 1]
* Boundary conditions:
* u(x, 0) = sin(pi * x)
* u(x, ... | [
"mkurnosov@gmail.com"
] | mkurnosov@gmail.com |
8ac5b8eb6d3dc647904ad8066cb740879a31f51f | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/a0a61d03-5f99-4ecf-885c-25d92a944adb.c | 3388cbb5114c2a1f254a60898e4512ac52f1ced4 | [] | no_license | nmharmon8/Deep-Buffer-Overflow-Detection | 70fe02c8dc75d12e91f5bc4468cf260e490af1a4 | e0c86210c86afb07c8d4abcc957c7f1b252b4eb2 | refs/heads/master | 2021-09-11T19:09:59.944740 | 2018-04-06T16:26:34 | 2018-04-06T16:26:34 | 125,521,331 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 544 | c | #include <string.h>
#include <stdio.h>
int main() {
float i;
float j;
float k;
float l;
i = 3;
j = 9;
//variables
/* START VULNERABILITY */
int a;
long b[24];
long c[56];
a = 0;
while (b[a] != 0) {
/* START BUFFER SET */
*((long *)c + a) = *((long *)b... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
fce15bca2e219dda280e823433d3c2f47ca19851 | 820a65679ab4c42dda1712e1519e3535722071f3 | /src/server/location.c | d9c49a1c7049480b501d0cc1b12ccd21c43028bb | [] | no_license | hhn21/siteshare | f6e53547e0f1d3b9b4679605731e23ac801f39ef | 57686ff07fea74a5fcbef060f31c7e0540830a5d | refs/heads/master | 2020-04-08T10:34:26.518294 | 2019-01-17T04:02:59 | 2019-01-17T04:02:59 | 159,274,324 | 0 | 1 | null | 2019-01-17T04:03:01 | 2018-11-27T04:06:34 | C | UTF-8 | C | false | false | 8,473 | c | #include "location.h"
BookRow* _newBookRow(){
BookRow *row = malloc(sizeof(BookRow));
row->data = newList();
return row;
}
/* create new LocationBook
* Return:
* - new LocationBook with empty ownerList and sharedList
*/
LocationBook* newLocationBook(){
LocationBook *book = malloc(sizeof(LocationBook));
book-... | [
"khoa.1997a@gmail.com"
] | khoa.1997a@gmail.com |
78beff2dfb59c343d8acbe65e8b8dbd0d3b94ad7 | 06c844f5e538b9e88246a66df8364f0ca14cb21f | /Process_1.c | 9dd82e80df16d85de4f25d58832022b94af1f483 | [] | no_license | phillipinseoul/SystemProgramming | f3c3231ebcc90a7cdf1017db5eedc2f555b657f8 | b9bf1fdd20fe51a1ece30af8fe600a056bcba393 | refs/heads/master | 2023-04-29T09:12:21.086162 | 2021-05-05T07:57:12 | 2021-05-05T07:57:12 | 364,473,143 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 284 | c | #include <stdio.h>
#include <unistd.h>
int main()
{
int proc_id, par_proc_id;
proc_id=getpid(); // getpid(): Get process id
par_proc_id=getppid(); // getppid(): Get parent process id
printf("PROCESS ID: %d\n", proc_id);
printf("PARENT PROCESS ID: %d\n", par_proc_id);
}
| [
"phillip9807@gmail.com"
] | phillip9807@gmail.com |
0fad618675c6a20bb3178b3bf173cabe04983a52 | 099125525f25327f4e50c492dd27b425d95428a5 | /sys/arch/armv7/imx/imxenet.c | 49f70f579cfc255816801c77fbe4a1cfeba36edb | [] | no_license | bradla/OpenBSD-Hammer2 | 2d9223e167347fea59afc7866deb8c5e9c7bd167 | 3cdc26721c09a4e3b6c18086d544a386330af59d | refs/heads/master | 2021-01-21T05:05:20.249320 | 2014-10-18T07:27:28 | 2014-10-18T07:27:28 | 19,660,090 | 18 | 2 | null | null | null | null | UTF-8 | C | false | false | 25,560 | c | /* $OpenBSD: imxenet.c,v 1.4 2013/11/06 19:03:07 syl Exp $ */
/*
* Copyright (c) 2012-2013 Patrick Wildt <patrick@blueri.se>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission noti... | [
"brad@Brads-MacBook-Pro-2.local"
] | brad@Brads-MacBook-Pro-2.local |
bafde184dc904f474a3c1c639e7ae56f625d4511 | 45671b0b4667c91501020fd922e9e1d4168252b3 | /src/Test/C/main.c | 446f484a586adde1b5a3e3d830ec11566b9d9401 | [] | permissive | haskell-tutorials/shake | 8c205265dcee6dea6fbcecb50f7f437eb1726606 | 780aec45d07c5489dd31b068f1e56c0a8838811e | refs/heads/master | 2022-12-19T16:56:46.129670 | 2020-09-29T10:05:11 | 2020-09-29T10:05:11 | 299,572,133 | 0 | 0 | BSD-3-Clause | 2020-09-29T09:45:02 | 2020-09-29T09:45:01 | null | UTF-8 | C | false | false | 97 | c | #include <stdio.h>
#include "constants.h"
int main()
{
printf("%s\n", message());
return 0;
}
| [
"unknown"
] | unknown |
c6130d1509a6ec1b13356a9e872b526df421eda5 | d4ebd62efe2689940251895df73ed5a261c80c6d | /Franourna/Capture_Possibility.h | 8b0f2c36ede5f5d641d69c2e0e03c2424b9ec988 | [] | no_license | theSoggyMuffins/Fanorona | 7baf71da7901ac129a9e485651473f1f997d7ac6 | 8f77329d0ba6337fd5823165d94c5d0cadbc9d98 | refs/heads/master | 2021-01-23T08:56:30.130100 | 2015-01-17T22:59:09 | 2015-01-17T22:59:09 | 29,408,119 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 403 | h | bool Capture_Possibility (char color , char B[][])
{
int height = 5;
int h = 1;
int width = 9;
int w = 1;
int moveCount = 0;
for (h <= height; h++)
{
for (w <= width; w++)
{
if (B[h][w] == color && Capture_Check(h,w,B[][]) == true)
{
moveCou... | [
"kochjamesr@gmail.com"
] | kochjamesr@gmail.com |
8209c06bb9f89f5aa596d1ef11c45fb1324e04a0 | c4423f118fdea197b8cc70fedbee959b531583fa | /eu0054/main.h | 9b2f8de0110ab852e99f242b6de721d57c677b9a | [] | no_license | nrey/eulerProject | 04e5cbc418425f57d1f383d46e58b4e576ba7d9f | cbd32f1dedebf0b99a1b12e7f0caf2a11066c699 | refs/heads/master | 2020-05-18T02:42:27.358357 | 2013-02-10T02:43:55 | 2013-02-10T02:43:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 77 | h | #ifndef main_h
#define main_h
#include"euler.h"
#include"eu0054.h"
#endif
| [
"nicorv@macondo-VB.(none)"
] | nicorv@macondo-VB.(none) |
e20afab6ca947edefb6b7702b71ec4a9c1bc3afb | bea2bf164e7959fbb8c8544859a4dca97987ec2b | /gijohn/src/cuda_cryptsha256.h | c83de7b1b80c7ed2ee659382b3b66b15b1920261 | [] | no_license | ph4r05/boinc | 21fff928a0bbcd486638fcdafbc865d743f6ddf7 | 41cbc9b4873d18e48a63a8731023481891a38c07 | refs/heads/master | 2020-05-31T23:30:31.735396 | 2012-11-05T10:13:42 | 2012-11-05T10:13:42 | 6,540,600 | 9 | 10 | null | null | null | null | UTF-8 | C | false | false | 1,719 | h | /*
* This software is Copyright (c) 2011 Lukas Odzioba <lukas dot odzioba at gmail dot com>
* and it is hereby released to the general public under the following terms:
* Redistribution and use in source and binary forms, with or without modification, are permitted.
*/
#ifndef _CRYPTSHA256_H
#define _CRYPTSHA256_H
#in... | [
"ph4r05@ph4.maleus"
] | ph4r05@ph4.maleus |
6e49071a675fdd0dc666cdda99a7b0be58b0ac2e | bbcf977377d3f10ca277468aee057c5fa7898baf | /cours11/ebbchar.c | 7aa86c31947d24bb00deaf94b482ce86a50d4d15 | [] | no_license | shalouys/CR340HIV2017 | fae15a3f5de77f5cda2f4b01231fd8f628a720d6 | c6ef9f0fce77046f88df59f540cc490f2bf028e4 | refs/heads/master | 2022-12-03T13:29:21.633585 | 2022-12-02T16:33:20 | 2022-12-02T16:33:20 | 78,464,767 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,627 | c | /**
* @file ebbchar.c
* @author Derek Molloy
* @date 7 April 2015
* @version 0.1
* @brief An introductory character driver to support the second article of my series on
* Linux loadable kernel module (LKM) development. This module maps to /dev/ebbchar and
* comes with a helper C program that can be run in ... | [
"pl@conseilpatricklecuyer.com"
] | pl@conseilpatricklecuyer.com |
ced7b9af4b8d813e2b5675e046a458373434756e | 0aef26863f142bef75a0e4aaf7da76fc95e3d8ae | /crypto_hash/groestl256/neon-bitslice/constants.c | 7b30ae9a1812cbe79672f03587779ba388595bfa | [] | no_license | jedisct1/supercop | 94e5afadc56ef650d7029774a6b05cfe2af54738 | 7c27338ee73a2bd642ba3359faaec395914175a2 | refs/heads/master | 2023-08-02T20:12:39.321029 | 2023-05-30T03:03:48 | 2023-05-30T03:03:48 | 179,046,113 | 23 | 2 | null | null | null | null | UTF-8 | C | false | false | 8,488 | c | /**
* Groestl constants.
*
* @file constants.c
* @author Martin Schlaeffer <martin.schlaeffer@iaik.tugraz.at>
* Peter Schwabe <peter@cryptojedi.org>
* Wolfgang Wieser <w.wieser@student.tugraz.at>
*
*/
#include "hash.h"
const __attribute__ ((aligned(32))) u8 CONSTS[32+1280] =
{
//... | [
"github@pureftpd.org"
] | github@pureftpd.org |
30e6921accbce778743db4a296facfe54e6756e9 | cf7e0b065f3edbb38b4d8bdf4d63d51fc3b0106f | /src/hdf5/src/H5C.c | 3f749860da9f5beb6e03161ecff553ad7fcd5d88 | [
"LicenseRef-scancode-hdf4",
"LicenseRef-scancode-llnl"
] | permissive | appleseedhq/windows-deps | 06478bc8ec8f4a9ec40399b763a038e5a76dfbf7 | 7955c4fa1c9e39080862deb84f5e4ddf0cf71f62 | refs/heads/master | 2022-11-21T07:16:35.646878 | 2019-12-11T19:46:46 | 2020-07-19T08:57:23 | 16,730,675 | 5 | 8 | null | 2020-07-19T08:57:25 | 2014-02-11T12:54:46 | C++ | UTF-8 | C | false | false | 290,514 | c | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... | [
"beaune@aist.enst.fr"
] | beaune@aist.enst.fr |
5efb6e86898f0dca1dd0d476b4b327f71f09a000 | 7e34099853f87cbfd0ee69d8894d10eaf8e1df94 | /implementations/group6/Win64-RC/C6/da278.c | ddba377c31c9325644b78c3e5920bf48fc62156d | [] | no_license | Matias-Bernal/dose2014 | cc1b973de8ba592ba82b2c8c8efd7749bcd3a033 | 139376fb884523cf5e0ccd7e9fed152555641a35 | refs/heads/master | 2016-09-06T03:51:44.566674 | 2014-12-24T14:49:10 | 2014-12-24T14:49:10 | 32,119,587 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,604 | c | /*
* Code for class DATE_VALUE
*/
#include "eif_eiffel.h"
#include "../E1/estructure.h"
#include "../E1/eoffsets.h"
#include "da278.h"
#include "eif_misc.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* {DATE_VALUE}.day */... | [
"payomaty666@gmail.com"
] | payomaty666@gmail.com |
04faac62663ce4436dd4da3094d8f437074efa73 | 04059aace7afad90b40d3315db8eb62fd1f682ba | /lub/list/private.h | ed160760536e3c308e631d440f3d4facd56fd857 | [
"BSD-3-Clause"
] | permissive | lmangani/klish | 27d8caa8d7c7198abe6bb9fcbe6a145fd9d1af67 | f88c52a32ab55a45147937d8d74cd78be6778496 | refs/heads/master | 2021-01-15T17:08:14.549942 | 2013-09-03T11:49:30 | 2013-09-03T11:49:30 | 13,071,291 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 217 | h | #include "lub/list.h"
struct lub_list_node_s {
lub_list_node_t *prev;
lub_list_node_t *next;
void *data;
};
struct lub_list_s {
lub_list_node_t *head;
lub_list_node_t *tail;
lub_list_compare_fn *compareFn;
};
| [
"serj.kalichev@gmail.com"
] | serj.kalichev@gmail.com |
bcdd1174384541cac570ef800998e8ef3cb7e783 | 7fcead8800ae7749eadf694f5eea851d29081352 | /Process Scheduling/csc501-lab1/TMP/main.c | a834aed4ebd2bc67d32bf18a133269fd075ce182 | [] | no_license | riteshghorse/Operating-System-Projects | 0d50c48d0cc38b6eb3f32e4c2a26239926f59381 | 280c3a780c3393eb31f5bcf0c7eb1c6172c77233 | refs/heads/master | 2023-01-21T22:06:59.137310 | 2020-12-03T03:11:31 | 2020-12-03T03:11:31 | 288,644,784 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,876 | c | #include <conf.h>
#include <kernel.h>
#include <q.h>
#include <lab1.h>
#include <stdio.h>
#include <math.h>
#define LOOP 50
int prA, prB, prC;
int proc_a(char), proc_b(char), proc_c(char);
int proc(char);
volatile int a_cnt = 0;
volatile int b_cnt = 0;
volatile int c_cnt = 0;
volatile int s = 0;
int main() {
int i;... | [
"riteshghorse@gmail.com"
] | riteshghorse@gmail.com |
0b454a28d7eb6e32304df46a629bbf363cc4decf | 3e07d3f9d5958c59d94ab6736ff567dc0fb18f22 | /src/mame/machine/midtunit.c | 72134c20500a25485ec2d5c4057be36e87b4317d | [] | no_license | EmulatorArchive/sdl-mame-wii | a8ce21867d547a24e1c5fbec0ef447622d445f5c | 17a88f1ed3581e5f015121a7afe76d285bfd338d | refs/heads/master | 2016-09-16T02:35:04.561355 | 2015-03-15T01:22:52 | 2015-03-15T01:22:52 | 32,225,637 | 2 | 2 | null | null | null | null | UTF-8 | C | false | false | 18,921 | c | /*************************************************************************
Driver for Midway T-unit games.
**************************************************************************/
#include "driver.h"
#include "cpu/tms34010/tms34010.h"
#include "cpu/m6809/m6809.h"
#include "audio/williams.h"
#include "audio/dc... | [
"baby.lueshi@c85e85c0-f42a-dfe2-6d14-576ce0669792"
] | baby.lueshi@c85e85c0-f42a-dfe2-6d14-576ce0669792 |
3c0fb0f5974a6a11b27549821324183d09548e26 | d07499d85cc7a808365e872d85001de918235c81 | /libft/ft_putstr_fd.c | 4846ccca2fbeaded2cf1866ea449979fe2de6b8c | [] | no_license | amineral/gnl_42 | 5ca402f64ace53c75f94e824241635d1cf36def0 | 16a9d3cf6042db24893eacebf34b164ca5bc0739 | refs/heads/master | 2021-01-16T04:30:39.929565 | 2020-08-25T08:09:43 | 2020-08-25T08:09:43 | 242,977,542 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,009 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: ... | [
"mineral@MacBook-Pro-Aleksandr.local"
] | mineral@MacBook-Pro-Aleksandr.local |
d6d1e84cfd441ad519a05718b881ef563d737cea | 03be09a011149bb44220a06b773f0efdc9697ea5 | /oneflux_steps/ure/src/info_reco_dt_ww.h | 23e78ec19d53bd1fe8c69626faa93be52a36f576 | [
"BSD-3-Clause-LBNL"
] | permissive | icos-etc/ONEFlux | 266438386b7ac124c5b05983641379c12af7c93d | d11b97b4c081c7a6e5b93325f2feeda63de15822 | refs/heads/master | 2020-06-18T22:50:46.851004 | 2020-01-29T00:19:56 | 2020-01-29T00:19:56 | 196,482,394 | 1 | 0 | NOASSERTION | 2019-07-12T00:36:42 | 2019-07-12T00:36:41 | null | UTF-8 | C | false | false | 23,657 | h | /*
info_reco_dt_ww.h
author: Alessio Ribeca <a.ribeca@unitus.it>
owner: DIBAF - University of Tuscia, Viterbo, Italy
scientific contact: Dario Papale <darpap@unitus.it>
please note this is an automatically generated file
created with txt2h on 201602110952
*/
const unsigned char info_reco_dt_ww[] = {
0x54, 0... | [
"gzpastorello@lbl.gov"
] | gzpastorello@lbl.gov |
9bb421a7233074d0cb9e4331d0a05b45dbf29088 | 83bf23c58e54169e505a926360a87f0421e3a3ee | /微观世界大冒险游戏资源/932740/assets/B_64.h | bb36dd14d4377645a228e12719618ce45df8e9e9 | [] | no_license | silentbo/BubbleProject | df6e747c071207f6154232bc9249b7f9e1cc55d7 | c96cb304c29293f34200e67a27f12cd6e3370995 | refs/heads/master | 2021-01-01T19:37:28.427637 | 2017-11-05T12:39:15 | 2017-11-05T12:39:15 | 98,628,979 | 2 | 0 | null | 2017-07-28T09:12:51 | 2017-07-28T08:42:33 | null | UTF-8 | C | false | false | 524 | h | {
13,
{
{40,35,75,0,true,0.5,false,0,0,0,0},
{42,60,285,0,true,-0.55,false,0,0,0,0},
{2,152,34,0,false,0,false,0,0,0,0},
{2,174,65,0,false,0,false,0,0,0,0},
{2,186,97,0,false,0,false,0,0,0,0},
{2,187,137,0,false,0,false,0,0,0,0},
{2,167,177,0,false,0,false,0,0,0,0},
{2,128,207,0,false,0,false,0,0,0,... | [
"1713598667@qq.com"
] | 1713598667@qq.com |
1a6f46c750948591c3e8a97c3976fbdad44035d1 | 23aee924d1dff317585082f125f64e93663bb427 | /libft/src/ft_printf/print.c | de5612d72dfa99081d1a55aebf1bc48ec1cc8bd8 | [] | no_license | ygarrot/corewar | fdd06dba459236920d05242a7aaf1ad669a83923 | 96075abc81b30bff332b079fcbe1ce393a4926c7 | refs/heads/master | 2023-03-14T13:57:35.086535 | 2021-03-19T17:38:32 | 2021-03-19T17:38:32 | 125,748,497 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,408 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* print.c :+: :+: :+: ... | [
"ygarrot@e2r9p3.42.fr"
] | ygarrot@e2r9p3.42.fr |
4c767fab1b2d3aa0ef1514c709d13aa2eaef8c78 | 1608dfc2ddbccd9587de08bb0e5d41f33d729ec9 | /validation/.svn/pristine/4c/4c767fab1b2d3aa0ef1514c709d13aa2eaef8c78.svn-base | bb947f91a52a891ecc52e6e88ce0b161151289b5 | [] | no_license | dkhaldi/PIPS_TaskParallelization | d623d3ae334d0e1c63772bae86bb0c115e928708 | f324f3374cc8cbb58498b9dde172b1e7596abe1c | refs/heads/master | 2020-07-03T14:16:30.427670 | 2016-11-18T21:44:34 | 2016-11-18T21:44:34 | 74,167,837 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 494 | #include <stdio.h>
void scilab_rt_gsort_i2s0s0_i2(int sin00, int sin01, int in0[sin00][sin01],
char * option, char * direction,
int sout00, int sout01, int out0[sout00][sout01])
{
int i,j;
int val0=0;
if (option != NULL && direction != NULL) {
for (i = 0; i < sin00; ++i) {
for (j = 0; j < sin0... | [
"dounia@eureka.cs.uh.edu"
] | dounia@eureka.cs.uh.edu | |
4e90cc745e60567ce5ef3681226e92c832408b18 | 28d0f8c01599f8f6c711bdde0b59f9c2cd221203 | /sys/external/bsd/drm2/dist/drm/amd/display/dc/bios/command_table2.h | 10fda62f445d6780429788655f18a27f0f77dd5f | [] | no_license | NetBSD/src | 1a9cbc22ed778be638b37869ed4fb5c8dd616166 | 23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c | refs/heads/trunk | 2023-08-31T13:24:58.105962 | 2023-08-27T15:50:47 | 2023-08-27T15:50:47 | 88,439,547 | 656 | 348 | null | 2023-07-20T20:07:24 | 2017-04-16T20:03:43 | null | UTF-8 | C | false | false | 3,563 | h | /* $NetBSD: command_table2.h,v 1.2 2021/12/18 23:45:00 riastradh Exp $ */
/*
* Copyright 2012-15 Advanced Micro Devices, 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 r... | [
"riastradh@NetBSD.org"
] | riastradh@NetBSD.org |
d7598939aaa19f4c8754a3be209946dd6f6d5f3d | 63dc99fdf962d9429f0346643db48ec55ed0079a | /src/tools.c | 97ce8d6cabb77e439a145a8d1f533bdda251f2e7 | [] | no_license | cran/population | 524213f1c10769c65bc866dbf65fe3c0ebb6002f | dd691a21a62bc0bb48a4463f47fe47f88672f101 | refs/heads/master | 2022-04-26T13:41:50.632670 | 2022-03-16T12:30:06 | 2022-03-16T12:30:06 | 48,670,382 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,258 | c | /* tools.c
*
* Copyright (C) 2011-2022 Guillaume Chapron.
* gchapron@carnivoreconservation.org
*
* This file is part of 'population', a R package to run population simulations
*
* 'population' is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publi... | [
"csardi.gabor+cran@gmail.com"
] | csardi.gabor+cran@gmail.com |
78d3d5dac0d76b6162d7002e4b971cf735447f47 | d1affcb02e49ed75941faf8fd97109ecfff5df03 | /udp-talker.c | d3410465992dc18c937af6fd85dda2e97c487ba9 | [] | no_license | fsmiamoto/c | db53dd26e874f1a9a3030b4ee864f3aa7e573cf5 | 76ef989062b31d8d3bf2d6e462e2284b88551f5a | refs/heads/master | 2023-08-22T20:16:53.312835 | 2021-09-19T15:14:39 | 2021-09-19T15:14:39 | 280,283,542 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,520 | c | /*
** talker.c -- a datagram "client" demo
* source: https://beej.us/guide/bgnet/html/index-wide.html
*/
#include <arpa/inet.h>
#include <errno.h>
#include <netdb.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#d... | [
"fsmiamoto@gmail.com"
] | fsmiamoto@gmail.com |
b1a2fc9226d6117960efc2942c76b11641bbb409 | 69c106b45e5eaaeb0ce99f352175a0bf03a5525e | /OpenLogger/libraries/WINC1500/utility/driver/include/m2m_ate_mode.h | 4a2e98178a26920269e579fa49741d73e97cb162 | [
"MIT"
] | permissive | Digilent/openlogger | 7331a75c2dc84cc197cd5a351b0363893a584910 | 594b2f3102815ecf956b4d5b092e7359f879e38d | refs/heads/master | 2020-05-30T01:50:03.946554 | 2019-05-30T21:46:50 | 2019-05-30T21:46:50 | 189,486,101 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 21,743 | h | /**
*
* \file
*
* \brief WINC ATE Test Driver Interface.
*
* Copyright (c) 2015 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are me... | [
"sam.kristoff@digilent.com"
] | sam.kristoff@digilent.com |
44cc149eb99bd92aed168289d4f5e313c443012e | cd33f72314b07f3d1a5d5aa98d65f900b4b71e21 | /src/task_oled.c | e76b93d618d795bde37765756daac0497cdb28be | [] | no_license | vycska/os | f73003e937ab0a2f538a5317aadc505b73855204 | b2a0ef53d45c5ae5643903d7467862ef66a0ef35 | refs/heads/master | 2021-09-10T15:21:19.963670 | 2018-03-28T11:19:16 | 2018-03-28T11:19:16 | 105,775,085 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,628 | c | #include "task_oled.h"
#include "fifos.h"
#include "os.h"
#include "task_bme280.h"
#include "task_ds18b20.h"
#include "timer.h"
#include "u8g2.h"
#include "utils.h"
#include "LPC1769.h"
uint8_t u8x8_gpio_and_delay(u8x8_t*,uint8_t,uint8_t,void*);
extern int mtx_timer[4];
extern struct Task_BME280_Data task_bme280_data... | [
"vycska@gmail.com"
] | vycska@gmail.com |
23672f1fd881c39c23d776809ce1d292c4b208b6 | a8fdd77a0b6af032033f1d0466410e9b27612d33 | /vme_drs_v5.1_tdc/daq/macro/c1.C | f58a2130fbb712050dce3e5e02f4ef92925f0948 | [] | no_license | HidemitsuAsano/daqmw_elph201710 | e3093ed1845b4ec6665d97697e7916adac1ee592 | ae3df8d44660ef5f6b1d587e7858cef4c42f0cf3 | refs/heads/master | 2021-08-23T10:17:47.423251 | 2017-11-12T06:07:11 | 2017-11-12T06:07:11 | 108,068,665 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 22,218 | c | void c1()
{
//=========Macro generated from canvas: c1/c1
//========= (Sun Mar 26 22:56:11 2017) by ROOT version6.09/01
TCanvas *c1 = new TCanvas("c1", "c1",10,31,700,500);
gStyle->SetOptFit(1);
gStyle->SetOptTitle(0);
c1->Range(-57.4359,-3.953313,352.8205,28.99096);
c1->SetFillColor(0);
c1->SetBorde... | [
"daq1@nlabdaq2.rcnp.osaka-u.ac.jp"
] | daq1@nlabdaq2.rcnp.osaka-u.ac.jp |
7315d538a3e52fb48db5d0e6f92ac7ba1aed2baa | bc0821dcbee64eb44c7fae38aec24d50ce6131a9 | /table.c | 528822bdeabe5084bc490d4f997ecdadb36ea60e | [] | no_license | GasparyanG/zao | f8b9cbbcffed3ca3426e9301699e2f71ebc19f29 | 8b55756236ca69401c4b1c304c8b78de0ea8a362 | refs/heads/master | 2023-05-08T10:48:56.378392 | 2021-05-30T07:41:02 | 2021-05-30T07:41:02 | 315,295,089 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,650 | c | #include "table.h"
#include <stdio.h>
void initTable(Table* table) {
table->size = 0;
table->capacity = 0;
table->entries = NULL;
}
void freeTable(Table* table) {
free(table->entries);
}
uint32_t hashString(const char* key) {
uint32_t hash = 2166136261u;
for (int i=0; i < str... | [
"gasp.garnik@gmail.com"
] | gasp.garnik@gmail.com |
3f122cee18f6518e98fb3de9a2ff865eb97ae1dc | 396e61c3a3522437d8ff15ab642d0aba4bce01a3 | /FINAL_CODE3.c | d1d98acf876884888504bfe98a32593b0d12314c | [] | no_license | varunkuo/pilldispenser | 7f53506bfedccf91f341af2090866a24c0ebe676 | 56590d3d320aee1b69baec207027d96ece3895f7 | refs/heads/main | 2023-01-08T18:45:08.448220 | 2020-11-09T00:40:59 | 2020-11-09T00:40:59 | 311,182,084 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,981 | c | int purpleCount()
{
int purpleCount = 0;
displayString(2, "Enter number of purple pills");
while (!getButtonPress(buttonEnter))
{
while (!getButtonPress(buttonUp))
{
displayString(4, "Purple Count: %d", purpleCount);
if (getButtonPress(buttonEnter))
{
return purpleCount;
}
}
wh... | [
"noreply@github.com"
] | varunkuo.noreply@github.com |
c86028797dcd37f7f1049979304f2afb5fb3aad4 | dcf26a6bcf853a3f8f6f50f9379998ef4d8aad40 | /third_party/musl/kernel/src/time/__secs_to_tm.c | 1b84b5222edf770f56609153972e9b2052134f3d | [] | no_license | small-seven/testmem | c5f3202dce1c369e9d84cdaaccc2008b827c16d8 | 2771460c617439bd1be562ffdc94543ea170a736 | refs/heads/main | 2023-03-12T22:16:28.824577 | 2021-03-03T04:24:59 | 2021-03-03T04:24:59 | 343,847,762 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 199 | c | #include "time_impl.h"
#include <limits.h>
#define LEAPOCH (946684800LL + 86400*(31+29))
#define DAYS_PER_400Y (365*400 + 97)
#define DAYS_PER_100Y (365*100 + 24)
#define DAYS_PER_4Y (365*4 + 1)
| [
"huihuigong@users.noreply.github.com"
] | huihuigong@users.noreply.github.com |
29ef7d2518f193842194fc280a60cbdd4ee0744b | aced0b0b4b73ecb9837500a9b65eb039033e94d3 | /Win10_1809_RS5_17763/x64/System32/ntoskrnl.exe/Standalone/_CACHED_KSTACK_LIST.h | b6b2d951f5a47440cd428097ab82929a4cf1608f | [] | no_license | Qazwar/headers | a16193b7343f8497c4dde1f0eb6fee52a0ed91e1 | 049e8a564a1f82a8316f187f8a8bbcdb29be5e01 | refs/heads/master | 2020-04-05T15:36:20.462296 | 2018-11-08T18:53:40 | 2018-11-08T20:37:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,045 | h | typedef union _SLIST_HEADER
{
union
{
struct
{
/* 0x0000 */ unsigned __int64 Alignment;
/* 0x0008 */ unsigned __int64 Region;
}; /* size: 0x0010 */
struct // _TAG_UNNAMED_23
{
struct /* bitfield */
{
/* 0x0000 */ unsigned __int64 Depth : 16; /* bit position: 0 */
... | [
"w.benny@outlook.com"
] | w.benny@outlook.com |
58ffcc88827ebadb928dbd95c81386d9277ce372 | 8da97a5d26c04066ba328dcea739827515d9930f | /d/laowu/obj/jadepai.c | ba5ef03ea28af1efd212b74d14582db0eba64f2b | [] | no_license | mudchina/fy2 | 15045041bdf42e9a76525db7ce5cb61329a096a4 | 78599a39965ef63b38a815ce3ab774fb3361b3d2 | refs/heads/master | 2021-01-10T06:50:29.722868 | 2016-02-21T09:18:38 | 2016-02-21T09:18:38 | 52,199,056 | 4 | 3 | null | null | null | null | WINDOWS-1252 | C | false | false | 269 | c |
inherit ITEM;
#include <ansi.h>
void create()
{
set_name("ÂÞɲů" , ({ "luosha" , "pai"}) );
set_weight(5);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "¿é");
set("long", "Ò»¿éÂÞɲů\n");
set("value", 100000);
}
}
| [
"liming.xie@gmail.com"
] | liming.xie@gmail.com |
3bc85a30172b6653cb826c00e927a7cdaed40569 | 028b10c2ac186d7d1eaee57ea89160ddc92deaf5 | /0x06-pointers_arrays_strings/6-cap_string.c | bb1683b184f26a7e08d0d56c6bcc60002f582ddc | [] | no_license | yosefBP/holbertonschool-low_level_programming | 0b37689d6ec1fbefb1f093296bc1e805b8978ff3 | d25acc8687d7deece599d2b01040b3d7b8818067 | refs/heads/master | 2022-12-24T03:58:44.096610 | 2020-09-30T12:43:48 | 2020-09-30T12:43:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 572 | c | /**
* *cap_string - Function that capitalizes all words of a string
* @str: string input
* Return: The first letter of each word with uppercase
*/
char *cap_string(char *str)
{
int i, j;
char symbols[13] = {' ', ',', ';', '.', '!',
'?', '"', '(', ')', '{', '}', '\n', '\t'};
for (i = 0; str[i] != '\0'; i++)
{... | [
"juan@pop-os.localdomain"
] | juan@pop-os.localdomain |
ee6f29c3c4b99fbcff696f4e6c4665ca74040e85 | 749d6fa8a96152f0fbca44a252ccfeafd181ad4f | /c/ads/src/tests/test_linked_list_simple.c | 6475379da24043b006ed344e0c623c21307982ac | [] | no_license | igaray/toolkit | aaabcd1cf7c4241f5a8934502aa5df83551afe2f | 6db950f3582e48dd9bc24cf27a18e1e301babb05 | refs/heads/master | 2023-08-01T15:54:39.526084 | 2023-07-05T12:07:38 | 2023-07-05T12:07:38 | 1,790,569 | 4 | 0 | null | 2017-04-27T20:22:05 | 2011-05-23T22:42:06 | Prolog | UTF-8 | C | false | false | 459 | c | #include <stdio.h>
#include <stdlib.h>
#include "linked_list_simple.h"
int main()
{
list_t l = NULL;
linked_list_print(l);
l = linked_list_new(0);
linked_list_print(l);
for (int i = 5; i > 0; i--)
{
list_t t = linked_list_new(i);
linked_list_insert(l, t);
}
do {
linked_list_print(l);
... | [
"igarai@gmail.com"
] | igarai@gmail.com |
3bc24f93c1144db3e4dfe03b3c75f7e24f7d5ec9 | 59635af0f09d91bd485344363e0a08afda7ed988 | /C_程序/数值计算方法计算机实现源代码/RINV.C | 541af2c3babd49781f5f54842a8de1e9559e4fa0 | [] | no_license | fly-tree-huan/learn | b90860c05ad033b8ca47de340dd3c195d6d04d4c | b3e3516e423d0bf9934cf3f874cf8788b9c23f82 | refs/heads/master | 2022-03-06T18:42:15.397746 | 2019-05-05T13:00:33 | 2019-05-05T13:00:33 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 2,495 | c |
//文件名 RINV.C
//实矩阵求逆
#include <stdlib.h>
#include <math.h>
#include <stdio.h>
int rinv(n,a)
int n;
double a[];
{ int *is,*js,i,j,k,l,u,v;
double d,p;
is=malloc(n*sizeof(int));
js=malloc(n*sizeof(int));
for (k=0; k<=n-1; k++)
{ d=0.0;
for (i=k; i<=n-1; i++)
for (j... | [
"2229545945@qq.com"
] | 2229545945@qq.com |
b2012a1b6b8412001323ecfa3b0a855d3db0a70f | 4cd6720efe80a52d58f434e134a430a0b5015099 | /Bitwise operators/even odd AND.c | 735be7996b4f7fcd045c9ec6a68037e155995757 | [] | no_license | pelatge/C-Programming-Basic | c3e0ff0dbacdb5e8df8f6dfc8c4f1d725803c6d3 | 8a18f8d092c7e5e9298cb6b2c8d1311ff227016d | refs/heads/master | 2022-12-21T16:20:40.668138 | 2020-09-09T17:44:52 | 2020-09-09T17:44:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 247 | c | #include<stdio.h>
int main()
{
int x;
printf("Please enter a number: ");
scanf("%d", &x);
if((x & 1) == 1)
{
printf("%d is odd\n", x);
}
else
{
printf("%d is even\n", x);
}
return 0;
}
| [
"ilakshmangope@gmail.com"
] | ilakshmangope@gmail.com |
60c5b1024e52d4c00f27ad383d41d7da554144e5 | 7b39a344de1aa94c48098a2e8648f44f4a1d1bd6 | /external/lv_lib_jpg/libjpeg-turbo/simd/loongson/jdcolext-mmi.c | f3f12611de251388e2ef63209bd28f2e191d5396 | [
"IJG",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"Zlib"
] | permissive | DriftSnail/qt_idf | 64e41d8be798c31fbb9251f1257eebafb185d422 | efc7614c52dafb76fb7867a297b48e9d087b6e98 | refs/heads/master | 2023-08-26T07:42:20.160838 | 2021-10-23T07:49:55 | 2021-10-23T07:49:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,903 | c | /*
* Loongson MMI optimizations for libjpeg-turbo
*
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
* Copyright (C) 2015, D. R. Commander. All Rights Reserved.
* Copyright (C) 2016-2017, Loongson Technology Corporation Limited, BeiJing.
* All Rights Reserved.
* Au... | [
"git@hacperme.com"
] | git@hacperme.com |
966ecffd49acf0cd1e9ac6795f06b43662b0b4c9 | d773aa27f49dfb6b442b9e026c54f9fb5ec81365 | /MCP4726_SETUP_VREF.h | 95d288abaabff39a1a32e96251dabcc5140c742a | [] | no_license | NGonka/Loadcontroller | 0d9ed56a42fdd424486c0b8655a49145e19a95f9 | bb60c299ca5655d422265a2632ca2867e3f66db7 | refs/heads/master | 2019-01-02T04:05:05.557335 | 2015-07-08T10:13:39 | 2015-07-08T10:13:39 | 33,194,837 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 22 | h | #define USE_VREF_INPUT | [
"ngonka@gmx.de"
] | ngonka@gmx.de |
d33a15af1097acf8beafb7da5ddce1e20814b253 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen_1195MethodDeclarations.h | 88b58e12e99035982b70e2c058549961b4b4a466 | [] | 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,818 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.Array/InternalEnumerator`1<FastReplyLogic/CUR_REPLYMODE>
struct InternalEnumerator_1_t17401;
// System.Object
struct Object_t;
// System.Array
struct Array_t;
// FastReplyLogic/CUR_REPLYMODE
#includ... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
68a17bdfcaf33f2907732dc13069331ad9fdf4af | 54f6893bf6b0536a0c1c320f90ba20e446b35079 | /apps/hardware/remote/3189.sh | 8dde6e8f0d8f7072704224a61271d624559918b6 | [] | no_license | webclinic017/Termux | b9b68f7761a86abd5d78baa89ad1512db6983e68 | bea9195298e9b01c3c2d3678becf04577051cb9b | refs/heads/master | 2023-03-26T02:02:48.435930 | 2021-03-24T13:10:37 | 2021-03-24T13:10:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,868 | sh | /* Cisco VPN Concentrator 3000 FTP remote exploit
* ==============================================
* A vulnerability exists in the Cisco VPN Concentrator 3000,
* an unauthenticated user may access the file system through
* manipulation of FTP service commands. An unauthenticated
* user can use the following comma... | [
"nateweiler84@gmail.com"
] | nateweiler84@gmail.com |
b564cd5698101347a2242cd3a1d67a0dd4295edc | 1c87f96b5f9f0d9834cb79da72d732dc08400f5a | /uspace/drv/audio/sb16/dsp.c | f3b3cf89486c4a14e4ee81a4c2c23f33c07dc676 | [] | no_license | fanjinfei/helenos | af157a944f5b67658ccc91bc89e0953ccdbd11d7 | eb5791c169028714e997ae845b5574e2dd6ae633 | refs/heads/master | 2021-01-22T19:42:26.350009 | 2017-03-16T18:41:42 | 2017-03-16T18:41:42 | 85,231,545 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,104 | c | /*
* Copyright (c) 2011 Jan Vesely
* 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 conditio... | [
"fanjinfei@hotmail.com"
] | fanjinfei@hotmail.com |
882f4ff329104c0420159db5482e538c20981786 | f35e42ff9fda44033c908da7959235133527c731 | /src/snprintf.h | 0fbd39a85aa4fd7aa863742c4a574a17960a6dbd | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | tedajax/runner | 29d8d8693ae6184aa8529c777ec393806fe307cf | 0b6d23627922228cc7d5f82747b99aa5deff2ca3 | refs/heads/master | 2020-12-26T04:37:42.680162 | 2015-02-16T23:50:17 | 2015-02-16T23:50:17 | 26,664,296 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 697 | h | #ifndef RUNNER_SNPRINTF_H
#define RUNNER_SNPRINTF_H
#include <stdio.h>
#ifdef _MSC_VER
#include <stdarg.h>
#include "inline.h"
static inline int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap) {
int count = -1;
if (size != 0) {
count = _vsnprintf_s(str, size, _TRUNCATE, format... | [
"ted.ajax@gmail.com"
] | ted.ajax@gmail.com |
c6e2f67c49772908522ba5722db6a60828b35024 | fad392b7b1533103a0ddcc18e059fcd2e85c0fda | /install/px4_msgs/include/px4_msgs/msg/trajectory_bezier.h | 437c21bcb6745668175472c69b090a2e840950a7 | [] | no_license | adamdai/px4_ros_com_ros2 | bee6ef27559a3a157d10c250a45818a5c75f2eff | bcd7a1bd13c318d69994a64215f256b9ec7ae2bb | refs/heads/master | 2023-07-24T18:09:24.817561 | 2021-08-23T21:47:18 | 2021-08-23T21:47:18 | 399,255,215 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 102 | h | /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/trajectory_bezier.h | [
"adamdai97@gmail.com"
] | adamdai97@gmail.com |
bbef889c66b364c101d7724b86d23a676e78397b | ab85c2ffd7ebcb7df1463e5020c973b3dea67fd6 | /pix/great_burst_win_map_clear.c | a5f51332140661de623a4e4da6231f4c514a829e | [
"MIT",
"CC-BY-3.0"
] | permissive | basxto/great-burst | cfe5251e3e115c8df0175aa05b29c39b61541e01 | b0e6c37bb88d20f5ff44cd48bc83fb110df0ac85 | refs/heads/master | 2020-06-25T06:03:36.775903 | 2019-10-02T13:09:06 | 2019-10-02T13:09:06 | 199,224,799 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,966 | c | /*
Tiles map
TileMap Size : 20 x 18
*/
const unsigned char great_burst_win_map_clear[] = {
0x04,0x04,0x04,0x12,0x04,0x7E,0x7F,0x80,0x81,0x82,0x04,0x83,0x84,0x7F,0x85,0x82,0x86,0x04,0x04,0x04,
0x09,0x0A,0x0B,0x12,0x04,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x88,0x8F,0x8B,0x90,0x04,0x04,0x04,
0x12... | [
"git@basxto.de"
] | git@basxto.de |
12b79565e86c9ec9ee703709fe709f91466fddde | a32fcde20e5f0586016ebc462b96a747b9ff9066 | /test/unit/workbook/test_workbook_write_workbook.c | fb64550f3b2e8dde3a7685117093eb73a032f688 | [
"BSD-2-Clause-Views",
"BSD-3-Clause",
"Zlib"
] | permissive | ViacheslavL/libxlsxwriter | 634a7fd2ac62a1e50dbe032778cbf1048e1a2af0 | da49373582de5c86397998807e6517dd053a41d9 | refs/heads/master | 2021-06-29T22:41:02.786628 | 2020-12-30T13:24:12 | 2020-12-30T13:24:12 | 74,008,173 | 1 | 2 | NOASSERTION | 2020-12-30T13:24:14 | 2016-11-17T08:51:25 | C | UTF-8 | C | false | false | 684 | c | /*
* Tests for the lib_xlsx_writer library.
*
* Copyright 2014-2016, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/workbook.h"
// Test the _write_workbook() function.
CTEST(workbook, write_workbook) {
char* got;
char exp[] = "<workbook xmlns=\"... | [
"jmcnamara@cpan.org"
] | jmcnamara@cpan.org |
391f204b9d6f0b484a894953fcf3be169a0997ca | f1072da7dbff060ca7b538a81d3936571fec56ea | /drow/src/render/model_ed/ui_ed_obj_print.c | b3efeab6b1cd5ee024405e4f48514600f8cfba9b | [] | no_license | Hkiller/workspace | e05374d30a6f309fa8cf1de83887ccb5d22736f9 | 660fc5900300786d7581a850a3fefc90f8d07a93 | refs/heads/master | 2021-03-30T22:44:17.469448 | 2017-04-12T06:08:02 | 2017-04-12T06:08:02 | 125,022,632 | 2 | 0 | null | 2018-03-13T09:07:03 | 2018-03-13T09:07:03 | null | UTF-8 | C | false | false | 2,801 | c | #include "cpe/utils/stream_buffer.h"
#include "cpe/dr/dr_json.h"
#include "render/model/ui_data_module.h"
#include "render/model/ui_data_sprite.h"
#include "render/model/ui_data_action.h"
#include "render/model/ui_data_layout.h"
#include "ui_ed_obj_i.h"
#include "ui_ed_src_i.h"
void ui_ed_obj_path_print(write_stream_t... | [
"570385841@qq.com"
] | 570385841@qq.com |
d84d4b1dbff55c5f8dcf303be589a349b263054a | 81e2ed3743c5008563e43fb412c377bd65b21399 | /main.c | 772ca96b2904d828f01d822c9aa8103742ee2ae2 | [] | no_license | LiuZheliang/0452015-0511 | 0ba5deb4c1b0db11afbd70ec4abc5a6c975076ff | 9d58abc43eaba0684aaf19b48a911d892ebac7b7 | refs/heads/master | 2020-03-16T21:06:41.777030 | 2018-05-11T15:29:06 | 2018-05-11T15:29:06 | 132,985,161 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 258 | 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 i,sum=0;
for(i=0;i<10;i++){
sum += i;
}
printf("%d",sum);
return 0;
}
| [
"u0452015@nkfust.edu.tw"
] | u0452015@nkfust.edu.tw |
f7f0f0d6a8d1e6b1dce374a80c0499ea4fd100d9 | ac5939716951adc0024a47938b64c1f0d435fe56 | /xv6-public/sleep.c | 90d6a06c58601029cd5914cf0b87a62e8629ff68 | [
"MIT"
] | permissive | obravocedillo/OliverBravoMyOperativeSystem | 9d3b021a0976860b7a34ad21f34d121707b602a4 | 8d3693920a880f5a14f51aecd7978c4d1cbc3b12 | refs/heads/master | 2022-03-05T10:46:53.387612 | 2019-11-20T03:14:48 | 2019-11-20T03:14:48 | 202,251,198 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 258 | c | #include "types.h"
#include "stat.h"
#include "user.h"
int
main(int argc, char **argv)
{
int i;
if(argc>=2){
printf(1,"A dormir \n");
i = atoi(argv[1])*100;
sleep(i);
}
printf(1,"Ya me desperte \n");
;
exit();
}
| [
"oliverbravo45@gmail.com"
] | oliverbravo45@gmail.com |
d8d2dbfa519128d389a8849445f339245349b69e | 0f4012d03230b59125ac3c618f9b5e5e61d4cc7d | /Cocos2d-x/2.0-x-2.03_branch_231_NoScript/cocos2dx/platform/third_party/win32/MMEAD/MMEAD_Config.h | e4a0a41ebbb4acdfb8af966fceb50757765bd743 | [
"MIT"
] | permissive | daxingyou/SixCocos2d-xVC2012 | 80d0a8701dda25d8d97ad88b762aadd7e014c6ee | 536e5c44b08c965744cd12103d3fabd403051f19 | refs/heads/master | 2022-04-27T06:41:50.396490 | 2020-05-01T02:57:20 | 2020-05-01T02:57:20 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 2,221 | h | #pragma once
#if !defined(WIN32)
#pragma GCC diagnostic ignored "-Wwrite-strings"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "big.h"
#include "ecn.h"
#include "CRC32.h"
#include "MD5.h"
#include "SHA.h"
#include "blowfish.h"
#include "MMUtility.h"
/******************************
密钥对常量
*... | [
"hanshouqing85@163.com"
] | hanshouqing85@163.com |
9f9cc9b2d9a0fe83f9d30527bb0e635428877d01 | 1354a7506484fc941ab279a31d9214b492268dd6 | /bmp_headers.h | c8b581ab2abe8b7c96d2dbb958496ab069922144 | [] | no_license | dominoanty/BitManip | 7ea0a209a4bd6f9b35c24f80c472991c5d6de2aa | 5ce64ea9b9c2b3c90aad096486206c35c0195b39 | refs/heads/master | 2021-05-01T09:24:14.032351 | 2016-10-03T18:57:32 | 2016-10-03T18:57:32 | 69,753,908 | 0 | 0 | null | 2016-10-03T18:57:33 | 2016-10-01T17:50:43 | null | UTF-8 | C | false | false | 832 | h | #pragma pack(push,1)
/* Windows 3.x bitmap file header */
typedef struct {
char filetype[2]; /* magic - always 'B' 'M' */
unsigned int filesize;
short reserved1;
short reserved2;
unsigned int dataoffset; /* offset in bytes to actual bitmap data */
} file_header;
/* Window... | [
"ranganath.pai@gmail.com"
] | ranganath.pai@gmail.com |
d0839ff28050dc901164035757e846dbf18bfc29 | 52c0bc858667a895ccfeeb82825e8704dd1a798c | /chapterThree/one.c | a451fae0463148cce705e8c39aefe3a572de01e2 | [] | no_license | robert491001/C-Programming-Design-fifth-edition- | 709194e3f581b50448a25f26e789ee02f1500d50 | bcddf49f479adb223269d9bffea28d9fe970d062 | refs/heads/master | 2023-05-27T12:11:58.857183 | 2021-06-14T10:22:30 | 2021-06-14T10:22:30 | 376,780,122 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 540 | c | /**********************************************
*File name: one.c
*Description: C程序设计(第五版)课后编程习题第1题
*Version: 1.0
*Author: Robert
*Create Time: 2021-6-4
**********************************************/
#include<stdio.h>
#include<math.h>
//函数功能:计算10年后我国国民生产总值与现在相比增长多少百分比。
//计算公式:P=(1+r)的n次幂,r为年增率,n为年数,p... | [
"2772160156@qq.com"
] | 2772160156@qq.com |
f8249fdbbb288fca71bf3df427153828f9928779 | 2f8eef638c557d69341d58ec3df8ff71266e68a3 | /Practica 7/3.c | 636a5428fd8120bb26e6d2d7419452e8ce434e8c | [] | no_license | AlejoCart/C-practices | 639472909ea0fe37d8a5703c11db80450375118c | 5a9d01342cf7859a22ad93ee2b367de33400800d | refs/heads/master | 2023-08-27T21:20:14.608555 | 2021-11-13T12:56:38 | 2021-11-13T12:56:38 | 401,483,762 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,010 | c | #include<stdio.h>
void main(){
short alto=2,ancho=2,i,j;
int matriz[alto][ancho];
int otraMatriz[alto][ancho];
for(i=0;i<alto;i++){
for(j=0;j<3;j++){
matriz[i][j]=rand()%101;
}
}
for(i=0;i<alto;i++){
for(j=0;j<3;j++){
otraMatriz[i][j]=rand()%101;
}
}
printf("Matriz 1:\n");... | [
"alejocartolano54@gmail.com"
] | alejocartolano54@gmail.com |
706c01792af6ac1ef42260a97359dffa9ebb9450 | 0e9d69f154fdb642f14958e4f60168247d7222f8 | /NUCLEO-L476RG/Clock/Inc/lcd.h | 894741f00b95fbeb583751d7636e960d053fbb6d | [] | no_license | ai-ri-lin/stm32-mcu | f73c1ffb21dda7a51ba25d387406eb4888d12873 | f76fb2e01f4334fbe28bd72094d8ef547a2d321d | refs/heads/master | 2022-01-10T05:09:06.362142 | 2019-06-09T04:54:06 | 2019-06-09T04:54:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 403 | h | #include <stdint.h>
#include "stm32l4xx_hal.h"
#include "stm32l4xx_hal_i2c.h"
#define LCD_I2C_ADDRESS 0x3e // AQM1602XA-RN-GBW
void write_command(uint8_t command);
void write_data(uint8_t data);
void lcd_init(I2C_HandleTypeDef *phi2c);
void lcd_clear(void);
void lcd_newline(void);
void lcd_move_left(void);
void lcd_m... | [
"araobp@users.noreply.github.com"
] | araobp@users.noreply.github.com |
df4a60448d0105b954f969890fa0d5e3199ec81d | 776037fb4a91183c821784af9ab117048a326423 | /d/songshan/obj/status.c | e88af1412709d666ca8822e330602d274d5877ed | [] | no_license | zhoudaohong007/fengyun2005 | 74d41428339e8e57854e26de27cdcfbbf7ac1e34 | 8b52994bbd8db9de7bcb7f15012261a0f9554977 | refs/heads/main | 2023-06-10T13:17:50.285139 | 2021-06-27T12:46:10 | 2021-06-27T12:46:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 363 | c |
inherit ITEM;
void create()
{
set_name("雕像", ({ "xiang" , "diao xiang", "diao"}) );
set_weight(50000);
set_max_encumbrance(8000);
set("no_get", 1);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "个");
set("long", "天文家僧一行的雕像\n");
set("value", 1);
}
::init_item();
}
int is_container... | [
"i@oiuv.cn"
] | i@oiuv.cn |
da1d88eb334bbfcf00c0bbe5e8e45080561a551a | d0f428e03c104b1f51e0a3e6d997b42b9ac1dbcd | /OldVersion/Lib/algBus.C | 20b1342208fc0737c7af8f86e02705c2efc062da | [] | no_license | praiua/buscar | d9fae3726daa45ca4ad43e6b229b31f360ab5b0e | e860bc2d0086616a5ca5e5b424a0c6af2c419a3d | refs/heads/master | 2021-01-15T10:47:08.044003 | 2009-09-12T18:16:39 | 2009-09-12T18:16:39 | 164,242 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 134 | c | #include "algBus.h"
int AlgoritmoBusqueda::nClases = 0;
AlgoritmoBusqueda* AlgoritmoBusqueda::fClase[AlgoritmoBusqueda::kMaxClases];
| [
"javi@javi-laptop.(none)"
] | javi@javi-laptop.(none) |
2b888c6618eb31cb854fe443416f6d3eb5ff0a30 | 86c4f4c441dcf600fb5f4a19e16dea8f3b764fc8 | /src/fasthenry/bigmeshPre.c | 381698fef6ad0d871cfd222d8549a64f3261f918 | [] | no_license | vedsgit/FastHenry2 | 6d5de464bdff161c1c0a3d0fe5b56cb3eb81ab87 | 363e43ed57ad3b9affa11cba5a86624fad0edaa9 | refs/heads/master | 2022-03-16T23:59:31.097020 | 2015-09-08T16:58:40 | 2015-09-08T16:58:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,211 | c | /* This preconditions one row. It is mostly a duplicate of indPrecond()
code from olmulPrcond() */
#include "induct.h"
#define PARTMESH OFF
/* This near picks up only the hamming distance one cubes. */
#define HNEAR(nbr, nj, nk, nl) \
((ABS((nbr)->j - (nj)) + ABS((nbr)->k - (nk)) + ABS((nbr)->l - (nl))) <= 1)
/... | [
"support at fastfieldsolvers dot com"
] | support at fastfieldsolvers dot com |
2cd995237e278c2c6320061e879a334e9492149f | a9aa074f0d0bbbd75bc5ea72c4a60c3985407762 | /suzaku/xis/src/module/XISrmfgen/XISrmfgen_body.c | 08334fa5aaf3a51084c7ee75381d8efa8cbf614c | [] | no_license | Areustle/heasoft-6.20 | d54e5d5b8769a2544472d98b1ac738a1280da6c1 | 1162716527d9d275cdca064a82bf4d678fbafa15 | refs/heads/master | 2021-01-21T10:29:55.195578 | 2017-02-28T14:26:43 | 2017-02-28T14:26:43 | 83,440,883 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 59,750 | c | /*************************************
XISrmfgen (XISmkResp & XISwriteResp)
----------------------------------------------------------------------------
XISmkResp
2006/02/09 created by H.Nakajima
ver 0.0 2006/02/09 H.Nakajima
ver 0.1 2006/02/15 H.Nakajima
weight RMF parameters using wmap in sprctrum ... | [
"alexander.w.reustle@nasa.gov"
] | alexander.w.reustle@nasa.gov |
23c7367ea268509c1134bad11919b281db35f939 | 97f6cabede5d77fe367afe246de6c01325f984ea | /Assignment 2/ascii.c | bd8ff74399a6cebf363f940611ea3c05d5f19002 | [] | no_license | chelseama/COMP206 | 4b46c74f50be508a1e522309605ab2a66a92887a | 07bfcda64815d19fc63cb12417c79cf7d77bf5d7 | refs/heads/master | 2016-08-11T17:36:05.001933 | 2016-01-19T19:32:25 | 2016-01-19T19:32:25 | 49,973,598 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,138 | c | #include <stdio.h>
void main(int argc, char *argv[]){
//argc is the number of arguments passed into the program from the // command line,including the name of the program.If the argc<=1, // it means the user only type the program name,which is the first way
if(argc <=1){
printf("Welc... | [
"jin-yeong.ma@mail.mcgill.ca"
] | jin-yeong.ma@mail.mcgill.ca |
59603008b6715a8e8437a3c8b651fc81cc46da56 | 191707dd19837f7abd6f4255cd42b78d3ca741c5 | /X11R2/X.V11R2/lib/Xt/Popup.c | d1abb0b71a0aacd800f1f1c71aaa1daa2032366c | [] | no_license | yoya/x.org | 4709089f97b1b48f7de2cfbeff1881c59ea1d28e | fb9e6d4bd0c880cfc674d4697322331fe39864d9 | refs/heads/master | 2023-08-08T02:00:51.277615 | 2023-07-25T14:05:05 | 2023-07-25T14:05:05 | 163,954,490 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,206 | c | #ifndef lint
static char rcsid[] = "$Header: Popup.c,v 1.14 88/02/26 12:44:54 swick Exp $";
#endif lint
/***********************************************************
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
... | [
"yoya@awm.jp"
] | yoya@awm.jp |
392b2c3194cfec1bc0b92fc5327c6f1f690df1fd | d8d6afe5cfef34f6574c8e52029edf2c0bc87f78 | /aula0040_constantes.c | ad86b22ea19ca2c4a9c31919e73cc8f917dd6ca5 | [] | no_license | excript/curso_c | 9216c4021b1163124bd4306b4b6a8c123ca960aa | 57e68af76b2bf07364eee55e3ddee40c0b586b22 | refs/heads/master | 2020-05-19T10:26:04.670242 | 2015-08-02T09:50:42 | 2015-08-02T09:50:42 | 38,587,682 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 305 | c | #include <stdio.h>
#include <stdlib.h>
// ========== ==========
// ========== www.eXcript.com ==========
// ========== ==========
//# comando nome_da_const valor
#define w 7
int main()
{
const int constante = 12;
printf( "%i", w + constante );
return 0;
}
| [
"claudiorcf@gmail.com"
] | claudiorcf@gmail.com |
6a3204872f4114a42b7168165cd41e921c7efe0b | 60f3444f91b0b571f1ea7fa42c292b83ecc14e4b | /inc/module/gb905_update/tsm/gb905_update_tsm.h | 6a5e66d1ed6c10de8058c98a75614e62e72edbd9 | [] | no_license | jerryxiee/linux-batman | a20a9394fe777676b701276e8c43cdc1e27e612b | 49e2f06349881ec0cb5e18a38661d241acbb6e7a | refs/heads/master | 2022-01-08T04:29:08.886973 | 2018-06-13T10:42:23 | 2018-06-13T10:42:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 938 | h | /****************************************Copyright (c)**************************************************
** File name: gb905_update_tsm.h
** Descriptions:
**
**------------------------------------------------------------------------------------------------------
** Created by: wenyu_... | [
"wellok@139.com"
] | wellok@139.com |
cec41ca7ea2a152a8596b059454614a787027d2b | e74c3e61dd9aa6858964181c541e7e503ccf782b | /ctf-challs/mycustom/fs/exploit.c | 1797987331069954a4ff72802ebdaee8f246985e | [] | no_license | fengjixuchui/kernel-hacking | 3ad4c54314ddd508876546db54c3ec4d1bde2532 | 6c78eaec077f85a306cc1ef9fe22720d4eb1548f | refs/heads/master | 2023-07-15T20:01:30.405536 | 2021-08-26T10:20:39 | 2021-08-26T10:20:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 929 | c | #include<stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <signal.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/socket.h>
#define DEVICE_FILE "/dev/cmo... | [
"arav1635@gmail.com"
] | arav1635@gmail.com |
935d94085d11cc21192082e3843c6df2af3ef6ba | 8290883a5e6349fd90e4a771127075440c74bb81 | /public/inc_DMTCommonLib/Def.h | dcee234758f581c24d8199b2eb732a6f88237867 | [] | no_license | zhy282289/DuoMeiTiDownload | bcc47c3ec004a29c08396b31f6d4ff7efe196fab | e85789da41e75abf79784a6d0b4dbbfa474054e0 | refs/heads/master | 2020-04-22T15:47:54.788400 | 2019-06-23T14:53:50 | 2019-06-23T14:53:50 | 170,488,093 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 107 | h | #pragma once
#include "DMTCommonlib_global.h"
#include <QString>
#define TR(s) QString::fromLocal8Bit(s)
| [
"396962243@qq.com"
] | 396962243@qq.com |
0522783e8b26d82af9c451f3fc0e9f363b237a28 | ac362bb8969d647cd219430bc71c831d894e531c | /dist/bind/lib/dns/include/dst/gssapi.h | a0c44b1f1e990ababfde5173eaa6fac6a7858d95 | [
"ISC"
] | permissive | noud/mouse-bsd-4.0.1 | efb3b16fcc872ab227e6bb651cf1e836796a0804 | 4c0a1e08df407a759afac2d6a98507df94f5f814 | refs/heads/master | 2023-02-24T23:42:54.060718 | 2020-08-16T20:10:53 | 2020-08-16T20:10:53 | 334,536,412 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,593 | h | /* $NetBSD: gssapi.h,v 1.1.1.1.6.1 2007/05/17 00:41:09 jdc Exp $ */
/*
* Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby g... | [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
a41619feb76f8ad37719bd0486ae9873cc0a64c4 | 7c4b148b85bb903cd689e73c4becda9c9b02d233 | /typed-config/config.h | e121ef036810516e9d59d1068dd75da798a2610e | [] | no_license | esheldon/old-ccode | c120201a1b052a777896c7a2849bee51a482ac3c | 31b10a50ff20ff71c025b0ab1af03e51d537c95b | refs/heads/main | 2023-03-18T14:57:47.855765 | 2021-03-16T01:17:02 | 2021-03-16T01:17:02 | 348,172,462 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,021 | h | #ifndef _CONFIG_H_GUARD
#define _CONFIG_H_GUARD
#include <stdint.h>
enum cfg_type {
CFG_DOUBLE=0,
CFG_LONG,
CFG_STRING,
CFG_DBLARR,
CFG_LONARR,
CFG_STRARR,
CFG_UNKNOWN
};
enum cfg_status {
CFG_SUCCESS=0,
CFG_PARSE_BLANK,
CFG_PARSE_COMMENT,
CFG_PARSE_FAILURE,
CFG_NOT_FOU... | [
"erin.sheldon@gmail.com"
] | erin.sheldon@gmail.com |
f3b63c7db8eae1f78af9c60dc160c5d08e1183bc | 721b7d48fb4d7cb9389f07278030a40698d1b929 | /keyboard.h | 01465de9095ba819a39177533f3da22fddc25faa | [] | no_license | jelleschut/Snake-to-C- | 13e2678768a51807e14672b7915dd22d2ad8935d | 1f0fa7af9a082486114b1cd38f63e8662c8fc10a | refs/heads/master | 2021-04-27T10:45:20.278760 | 2018-02-24T01:07:54 | 2018-02-24T01:07:54 | 122,546,262 | 0 | 0 | null | 2018-02-24T01:07:55 | 2018-02-22T23:07:18 | C | UTF-8 | C | false | false | 148 | h | #ifndef KEYBOARD_H
#define KEYBOARD_H
#include "fsm.h"\
EVENTS keyboardInput(void);
EVENTS keyboardMovement(void);
#endif // KEYBOARD_H
| [
"noreply@github.com"
] | jelleschut.noreply@github.com |
363a3e465d5251e391cfbde4293e53ae698e5332 | c425afb8bb6b182168fd4c3a46c9b334f4740e60 | /d/hudie/liandan/guoyuan.c | 75bdde31fedf8a88765eae3b09c188cd6119fd5a | [] | 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 | 6,798 | c | #include <ansi.h>
inherit ROOM;
void faya(object me);
void jiaoshui(object me);
void chucao(object me);
void zhuochong(object me);
void shouhuo(object me);
void create()
{
set("short", "果园");
set("long", @LONG
这里是『蝶谷医仙』胡青牛的果园,零零落落种了几棵果树。胡大
夫为人脾气古怪,请不到什么人为他打理,因此这片果园显得相当破败
衰落。
LONG
);
set("outdoors", "mingjia... | [
"i@oiuv.cn"
] | i@oiuv.cn |
33b3c62762a60093cc0e2322cf6e728cfae4c912 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/07589d36-a3c6-493c-b479-88c3db80c12a.c | 198a5ec2992f77404f63a33a1119b4f768b4b532 | [] | no_license | nmharmon8/Deep-Buffer-Overflow-Detection | 70fe02c8dc75d12e91f5bc4468cf260e490af1a4 | e0c86210c86afb07c8d4abcc957c7f1b252b4eb2 | refs/heads/master | 2021-09-11T19:09:59.944740 | 2018-04-06T16:26:34 | 2018-04-06T16:26:34 | 125,521,331 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 229 | c | #include <stdio.h>
int main() {
int i=4;
int j=13;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = l%j;
l = k-j*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
44a49e8e7f9f031a8f957e458bd41c047c848d39 | 1c7833b4f75894a4975479137c6487fbb0cbba84 | /d03/ex02/main.c | 267713bce40253f1baabd398500af6a75af413ef | [] | no_license | 42-Projects/piscine | 514f40d71b7398ce24a32ac15d7b6d2bdc88c865 | 874ffb22703a49a3afbd30a96713995d4d0da5ab | refs/heads/master | 2020-03-17T16:08:38.989206 | 2018-05-17T00:46:12 | 2018-05-17T00:46:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,041 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: ... | [
"noreply@github.com"
] | 42-Projects.noreply@github.com |
0ebccf9f6b6e2b0ce3932d9ff0d355f37e152645 | 4ac17bf72f1d1da0fc4eb169a2e36ff045c40306 | /2020_2/apcnoturno/exercicios/exerciciostruct2.c | 869d43d2cbecf600da593348bd860be0fda389bd | [] | no_license | danz-git/iesb | 1eaa02212da3f3b55b9c720e97f8f79dab79ca4d | 59b1a0cf8f4f0a0aa96e51f4f434fdcb4da58188 | refs/heads/master | 2023-01-11T21:23:22.007741 | 2020-11-18T23:46:20 | 2020-11-18T23:46:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,640 | c | #include <stdio.h>
#include <stdlib.h>
typedef struct Data
{
int dia, mes, ano;
} Data;
/*
Crie um programa que permita armazenar o matricula, a altura e da data de nascimento de até 10 pessoas.
Cada pessoa deve ser representada por uma struct dentro de um vetor.
A data de nascimento também deve ser uma struc... | [
"rambim@gmail.com"
] | rambim@gmail.com |
47579379f174d9f730cf866657e3c37e1a6dfde1 | ba91a2acb7f4900adce87b944c96494176fdd27c | /MultiWii_Flip/config.h | fcc8519f40b099a8a118e59432d5ca7242c41bb1 | [] | no_license | biggs2003/Quadcopter | f2361e130b0b26f6f4ab346c93c8abd4c29bc9dd | ee7c5c94c804a41e742ba7324f3dff194a1dd581 | refs/heads/master | 2020-06-06T11:50:28.743581 | 2014-10-04T20:52:34 | 2014-10-04T20:52:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 66,148 | h | #ifndef CONFIG_H_
#define CONFIG_H_
/*************************************************************************************************/
/**** CONFIGURABLE PARAMETERS ****/
/**********************************************************************************... | [
"biggs2003@gmail.com"
] | biggs2003@gmail.com |
94f4bbd87b306ac7611ddc4eab9d437034066770 | fdcceff24a571b7a13f4f4f92154e129a268465a | /0x10-variadic_functions/1-print_numbers.c | b5c488c7f94a383bb082d13aa8a2338589fdd2b1 | [] | no_license | Ruby-alx/alx-low_level_programming | 8d8e2248e6888ead8ff1088d9033745bab46c664 | 8e613e8705977fba945e17fbf61397ed09e260cd | refs/heads/main | 2023-07-06T04:00:12.287458 | 2021-08-09T21:14:28 | 2021-08-09T21:14:28 | 377,936,109 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 536 | c | #include "variadic_functions.h"
/**
* print_numbers - print integers with given separator
* @separator: delimiter
* @n: number of arguments passed
*
* Return: void function
*/
void print_numbers(const char *separator, const unsigned int n, ...)
{
int sum = 0;
unsigned int i;
va_list args;
va_start(args, n);
for ... | [
"rattari.ae@gmail.com"
] | rattari.ae@gmail.com |
0f8a61454043306265fbd9a70e2008c7a43e4904 | 1f90bf31bc393da974f290ca48ca21ec5b0028c6 | /REE_TEE_shizheng_nommap/bl_fp_demo_paul/jni/bf_ta/platform/trusty/headers/external/lk/include/io_device_def.h | 2bf6346fe50d2bfcd5fa705cc06a946c0d08db11 | [] | no_license | changliang328/learngit | f1da210850dd07d507d71ce8cc8055b904872140 | 306bde543ebd146714949649716fe2ab57c997c0 | refs/heads/master | 2020-12-02T06:29:59.770391 | 2018-02-02T02:49:53 | 2018-02-02T02:49:53 | 96,844,144 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,066 | h | /*
* Copyright (c) 2016, Spreadtrum Communications.
*
* The above copyright notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNES... | [
"changliang328@163.com"
] | changliang328@163.com |
f1183cf7f67347e13579af9935d3f6d4967b7dbd | c2fc754df6b9fb9d6ec21f43838e60d517dbc78d | /exhaustive_search_key/src/key.c | a549a1908e56b25f84dabbf937479a595cd0e3fa | [] | no_license | mahaaaham/whitebox_attack | a8a4e24e3cba8c026f81e14c26feb3c586f4b1b3 | facca1b80ee269f6422ab42d96627af9f503d531 | refs/heads/master | 2022-12-15T10:13:25.130279 | 2020-08-27T19:53:54 | 2020-08-27T19:53:54 | 286,827,287 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,565 | c | #include "key.h"
#include <stdlib.h>
#include <ctype.h>
/* rcon[0] isn't used */
static const uint8_t rcon[11] =
{ 0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 };
void
rot_word (uint8_t *word)
{
uint8_t tmp = word[0];
word[0] = word[1];
word[1] = word[2];
word[2] = word[3];
word... | [
"eric.sageloli@gmail.com"
] | eric.sageloli@gmail.com |
db0980f3cdb71494ea54a977311b34dd8ad6ff1c | 9746c6cbca2673e1452f7e1c9b10fabf71f844f5 | /Griffieth_Alan_HW3.c | b4902cde51e7162be4a76751ff58bd7629d19c77 | [] | no_license | apgriffieth/C-Assignment-3 | 505c22289b8da2d89a29629cfa45721db5e1a45d | a18ce3eacdb84e40e4cdf7d3b294d10c2568aa13 | refs/heads/master | 2020-04-26T08:38:30.806703 | 2019-03-02T09:37:22 | 2019-03-02T09:37:22 | 173,429,351 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,581 | c | #include <stdio.h>
#include <stdlib.h>
void OneDMath(int);
void fillArray(char*, int);
void OneDChar(int);
void TwoDChar(int, int);
void Swap(int*, int*);
int ArrayDivider(int arr[], int, int);
void QuickSort(int arr[], int, int);
void SwapChar(char*, char*);
int ArrayDividerChar(char arr[], int, int);
void QuickSor... | [
"noreply@github.com"
] | apgriffieth.noreply@github.com |
291be682cfd058c940a023c50c247e541620d91f | 0683bb036dd5f2fec4b86714ace9e5e5c8c60807 | /src/arm/rockpie.c | 8415b7cf3e113649fd1dcb3567fd550e7c59323f | [
"MIT"
] | permissive | radxa/mraa | 8872c589815808c1e245321a77ded41c31a668d0 | d59936ffd4672c3234bcd9e6018af1bc1fcb8c05 | refs/heads/master | 2023-04-07T22:47:30.779435 | 2023-03-24T06:50:47 | 2023-03-24T06:50:47 | 249,920,881 | 11 | 17 | MIT | 2023-05-31T06:19:04 | 2020-03-25T08:08:09 | C | UTF-8 | C | false | false | 7,000 | c | /*
* Author: Shine <yll@radxa.com>
* Copyright (c) Radxa Limited.
*
* SPDX-License-Identifier: MIT
*/
#include <mraa/common.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include "arm/rockpie.h"
#include "common.h"
#define DT_BASE "/proc/device-tree"
/*
* "Radxa ROCK Pi 4"... | [
"stephen@vamrs.com"
] | stephen@vamrs.com |
f46be5275ceacf878f37899eff2628ea1e8a7822 | 793c8848753f530aab28076a4077deac815af5ac | /src/dskphone/logic/threadtask/include/common.h | 1197dfb2c843df65b5558be84cd642d4df2dbe31 | [] | no_license | Parantido/sipphone | 4c1b9b18a7a6e478514fe0aadb79335e734bc016 | f402efb088bb42900867608cc9ccf15d9b946d7d | refs/heads/master | 2021-09-10T20:12:36.553640 | 2018-03-30T12:44:13 | 2018-03-30T12:44:13 | 263,628,242 | 1 | 0 | null | 2020-05-13T12:49:19 | 2020-05-13T12:49:18 | null | UTF-8 | C | false | false | 964 | h | #ifndef THREAD_TASK_COMMON_H_
#define THREAD_TASK_COMMON_H_
#include "taskaction/common.h"
// taskaction 中使用的下载模式
enum TASKACTION_DL_MODE
{
MODE_NONE = 0,
MODE_MUTIL_AUTH,
MODE_SIP_XSI_AUTH,
MODE_BASIC_AUTH,
MODE_BASIC_XSI_AUTH,
MODE_FUZE_HOTELING_AUTH,
};
// LDAP元素数据
struct LDAPITEMINFO
{
... | [
"rongxx@yealink.com"
] | rongxx@yealink.com |
ad8211510f4e1ff1b8664a3040b097124e9e17bd | 8baef33d0829e8ab2ec33a6b893415fc731162c9 | /include/ops-copp-defaults.h | 7f01fe932519590abee90a2f9c01fdbb7a5fcbd9 | [
"Apache-2.0"
] | permissive | ukoranne/ops-switchd-opennsl-plugin | 0b9cceb3a6d39472e39a0fba04d716c8922e3d5b | 44e2fa0d7a6519aa40741eda441bdf4c73690cf3 | refs/heads/master | 2021-01-17T15:34:47.977858 | 2016-08-22T22:51:27 | 2016-09-13T23:43:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,202 | h | /*
* Copyright (C) 2016 Hewlett-Packard Development Company, L.P.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/license... | [
"review@openswitch.net"
] | review@openswitch.net |
a1dc633356969145a60a2865be21a9c6e21b8047 | 9c72347720ac02fcec0dc72a54ebce02c953e0b6 | /hammersuite/src/main.c | ee43edafc76e7f0c24e007179e42abd5276a40df | [
"Apache-2.0"
] | permissive | CyberFlameGO/trrespass | 2f94b82ed5d209dcff3b13945a4db1ca1e5307fc | 7ea523a4149daf1f1c4d8b099c2b3584f973d086 | refs/heads/master | 2023-04-06T02:44:53.324136 | 2021-05-05T10:35:44 | 2021-05-05T10:35:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,632 | c | #include "stdio.h"
// #include <x86intrin.h> /* for rdtsc, rdtscp, clflush */
#include <stdint.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <sched.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdbool.h>
#include <getopt.h>
... | [
"emanuele.vannacci@gmail.com"
] | emanuele.vannacci@gmail.com |
0a0f6f9914d6a78f2063e1e7618804ae2e6cb893 | a9aa074f0d0bbbd75bc5ea72c4a60c3985407762 | /ftools/timing/xronos/src/rbf2fits/hrbf2fits.c | 700679086793384ce1146d642d322cb66cff7ecb | [] | no_license | Areustle/heasoft-6.20 | d54e5d5b8769a2544472d98b1ac738a1280da6c1 | 1162716527d9d275cdca064a82bf4d678fbafa15 | refs/heads/master | 2021-01-21T10:29:55.195578 | 2017-02-28T14:26:43 | 2017-02-28T14:26:43 | 83,440,883 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 456 | c | /*
filename: hrbf2fits.c
purpose: c - wrapper for host XRONOS RBF2FITS task
author: Lawrence E Brown
*/
#include <stdio.h>
#ifdef unix
#define RBF2FITS rbf2fs_
#endif
#ifdef vms
#define RBF2FITS rbf2fs
#endif
#ifdef unix
#define RETURN 0
#endif
#ifdef vms
#define RETURN 1
#endif
int MAIN_; /* work around SunOS... | [
"alexander.w.reustle@nasa.gov"
] | alexander.w.reustle@nasa.gov |
a7df68ade2108d5c9e2070adc3f0854f8e8c384a | a556c07ecfa1031dae46fd3433762941ceca68b1 | /d/dalicheng/wangfu3.c | 44616afaeca02d506debe3a1f278a8b7fed9f56e | [] | no_license | yqzcabao/pkuxkx-utf8 | 53c3c24f4e3a9125372bca72b6a4b10aa6293a7f | 0eaf237c9970795a51aa4cc04b5b762003300cbd | refs/heads/main | 2023-04-01T21:16:23.894845 | 2021-04-09T13:33:24 | 2021-04-09T13:33:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 546 | c | //Cracked by Roath
// Room: /d/dalicheng/wangfu3.c
inherit ROOM;
void create()
{
set("short", "石板路");
set("long", @LONG
这是一条青石板路,两边种了不少柏树,显得庄严肃穆。西面是个花园,一
阵阵浓郁的花香扑鼻而来。
LONG);
set("exits", ([
"north" : __DIR__"wangfu4.c",
"south" : __DIR__"wangfu2.c",
"west" : __DIR__"wangfu6.c",
"east" : __DIR__"wangfu5.c",... | [
"i@oiuv.cn"
] | i@oiuv.cn |
ff6df4a058e324a24bf4e54ce038ca8f67e0aa08 | eed36aedbf4b54634c6297a30b61def549acb830 | /CCS_workspace/eMD_MPU9250/core/mllite/start_manager.h | 7eed41b8feab1159efbb2ce11bdae91ba8bf19ff | [] | no_license | dgiovanelli/sensortag.eMD_MPU9250 | 214c368f0cd69aedbac1cecbc9a8e74f318e787f | 85948a6da63cdfb59212b579799c3c6998c9c64a | refs/heads/master | 2021-01-25T08:13:00.406997 | 2017-06-08T09:39:19 | 2017-06-08T09:39:19 | 93,729,223 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 698 | h | /*
$License:
Copyright (C) 2011-2012 InvenSense Corporation, All Rights Reserved.
See included License.txt for License information.
$
*/
#ifndef INV_START_MANAGER_H__
#define INV_START_MANAGER_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "../../core/driver/include/mltypes.h"
/** Max number of start... | [
"dgiovanelli@fbk.eu"
] | dgiovanelli@fbk.eu |
5e749b0ea3451d6455b109488d8f8790b0c6b772 | 28d0f8c01599f8f6c711bdde0b59f9c2cd221203 | /usr.bin/dc/misc.c | ffef87e412de552c9176eccd8ee21385afced16a | [] | no_license | NetBSD/src | 1a9cbc22ed778be638b37869ed4fb5c8dd616166 | 23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c | refs/heads/trunk | 2023-08-31T13:24:58.105962 | 2023-08-27T15:50:47 | 2023-08-27T15:50:47 | 88,439,547 | 656 | 348 | null | 2023-07-20T20:07:24 | 2017-04-16T20:03:43 | null | UTF-8 | C | false | false | 2,149 | c | /* $NetBSD: misc.c,v 1.1 2017/04/10 16:37:48 christos Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions o... | [
"christos@NetBSD.org"
] | christos@NetBSD.org |
ce46d522a0e0e8a0882f5b05bddd85343f4e89af | e1dbba89eced90b4a7ce9518120164412b74023c | /arkanoPiLib.c | 8742d0ce203d1bd8de2c93b7f8111a6e2a101b0c | [] | no_license | rmnhg/arkanoPi | ebca90ff643d9e25795f669c153fa9b64b1cb6c5 | d12d16112194aa76cb0055a991c694c9df5014c1 | refs/heads/master | 2023-05-01T16:42:41.784043 | 2021-02-20T12:32:19 | 2021-02-20T12:32:19 | 338,845,106 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,991 | c | #include "arkanoPiLib.h"
int ladrillos_basico[NUM_FILAS_DISPLAY][NUM_COLUMNAS_DISPLAY] = {
{1,1,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1},
{0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0},
};
//------------------------------------------------------
// FUNCIONES D... | [
"rmnhg16@gmail.com"
] | rmnhg16@gmail.com |
d8893703408d1c8ee7f7ba6374d0dd19e4839dca | 707baf19fbfb0f9b20eefe5032e9810265c8d4e4 | /src/noui.h | 85d5069d3b5bf5c2f9c42371f0a7f8e203dc4f1c | [
"MIT"
] | permissive | tmiholdings/tmi | dc397c895fd8d801e2769fa18feae30f6ddceafc | f1b6027f025dafc40616cde076df2f4b8cdae8a2 | refs/heads/master | 2020-06-30T23:09:46.155886 | 2019-08-07T05:40:59 | 2019-08-07T05:40:59 | 200,978,055 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 296 | h | // Copyright (c) 2013-2014 The TMIcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TMICOIN_NOUI_H
#define TMICOIN_NOUI_H
extern void noui_connect();
#endif // TMICOIN_NOUI_H
| [
"tmiholdings@daum.net"
] | tmiholdings@daum.net |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.