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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fce9538195f4d52cc4e002ad97eb0e9b5a2b28b1 | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/cygwin-master/newlib/libc/string/wcslcpy.c.bak.c | 63efe8b2c72ae58eebfb99c4303a33fae1797b3c | [] | no_license | zhiyuanjia/WoBench | 878255ce45e76ef57f88743c7f43acdfa59e93e7 | 6b337780cbd598de98fc0eabd19efaf1a01b6012 | refs/heads/master | 2021-09-23T03:12:08.091319 | 2018-06-14T10:17:59 | 2018-06-14T10:17:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,138 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
/*
FUNCTION
<<wcslcpy>>---copy a wide-character string to specified length
SYNOPSIS
#include <wchar.h>
size_t wcslcpy(wchar_t *<[dst]>, const wchar_t *<[src]>, size_t <[siz]>);
DESCRIPTION
<<wcslcpy>> copies wide characters from <[src]> to <[dst]>
such ... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
fb163e47ffc6f578f92880f803edb32d358a51f5 | ebd8b6191939e56c24dcb548114870b85ead421b | /srcs/executer_builtin_nofork.c | edbf01a09df24910a0c98498f49dadddb091c4fc | [] | no_license | harinez2/42_minishell_main | 0d21163c60b1cf6bcbc726425bdebcc3d8542086 | 08e68c30fd749890a1a11bdf92d401827e6f24c0 | refs/heads/main | 2023-08-22T09:18:52.941911 | 2021-09-20T15:24:14 | 2021-09-20T15:24:14 | 399,089,615 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,451 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* executer_builtin_nofork.c :+: :+: :+: ... | [
"yonishi@student.42tokyo.jp"
] | yonishi@student.42tokyo.jp |
8bd8bbb09f7252638c954072cbe7db24022fba43 | 65dee4ed37f1f9dd5e2baba7a88d08a112c41124 | /algoritmosOriginais/ordenacao/selectSort/main.c | 7e085d09cc1328ddff8741926fcdbf476aa36946 | [] | no_license | FranciscoBraaz/exercicios-paa | 6cdff80ccb67040b6b5bf849633b895e0291418f | 8994d3a96477a667db1e7a8f8c6db4c2041da9fc | refs/heads/main | 2023-07-08T18:42:28.521764 | 2021-08-01T14:20:01 | 2021-08-01T14:20:01 | 372,689,039 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 618 | c | #include <stdio.h>
void selectSort(int T[], int n) {
for(int i=0; i<n-1; i++){
int smaller = i;
for(int j = i+1; j<n; j++){
if(T[j] < T[smaller]){
smaller = j;
}
}
int aux = T[i];
T[i] = T[smaller];
T[smaller] = aux;
}
}
i... | [
"francisco_braaz@hotmail.com"
] | francisco_braaz@hotmail.com |
0cd318878020971f776a11fbf78ab96660a948d6 | d3635e8d5742f5144a1c8bc4af349731a0490dc6 | /hexbin/hexbin.c | 51a1eafba8dddc87c1fe093fb44633990a4a32a1 | [] | no_license | ivanagui2/macutils | 85e3d56fd66ea467e43a7927de20694ef6addb7c | 1c126a2d40141e3521a5f4e31febdc0c23d37214 | refs/heads/master | 2020-04-13T23:21:40.625721 | 2018-03-23T02:23:30 | 2018-03-23T02:23:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,806 | c | #ifdef TYPES_H
#include <sys/types.h>
#endif /* TYPES_H */
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "globals.h"
#include "crc.h"
#include "readline.h"
#include "../util/masks.h"
#include "../util/util.h"
#include "../util/patchlevel.h"
#include "../fileio/wrfile.h"
#incl... | [
"wnayes@gmail.com"
] | wnayes@gmail.com |
e632151813425c071fe8c495113e0fac60933e36 | 848905af84a24df2f4c2c8ebc20b71092bbca8d2 | /libbio/bprint.c | 6e21e444ec883a67f9032ab5f7dee1ced6456e21 | [
"MIT"
] | permissive | aryx/fork-kencc | 6c59abdf0eb34da460ed73ddc3d15d7ca75521b9 | 70d6732897dc3503e2ed7896d555a5acf6229313 | refs/heads/master | 2021-01-21T01:59:37.360108 | 2018-06-16T00:06:18 | 2018-06-16T00:06:18 | 15,622,022 | 26 | 1 | null | null | null | null | UTF-8 | C | false | false | 456 | c | #include "lib9.h"
#include <bio.h>
int
Bprint(Biobuf *bp, char *fmt, ...)
{
va_list ap;
char *ip, *ep, *out;
int n;
ep = (char*)bp->ebuf;
ip = ep + bp->ocount;
va_start(ap, fmt);
out = vseprint(ip, ep, fmt, ap);
va_end(ap);
if(out == nil || out >= ep-5) {
Bflush(bp);
ip = ep + bp->ocount;
va_start(ap, ... | [
"pad@fb.com"
] | pad@fb.com |
7f0041adcb39a2cd26bf021df26f9139a8bbefde | beaaa927185dcd17184e3e6ea346d003916a1068 | /platforms/m3/prc_v17/software/design_tb_5/design_tb_5.c | 218d967ebf56c7720eec809e8e3d3406ee4f9426 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lab11/M-ulator | aeb65cb46c4e2ceaf9e014edbca4d41b3e97dc20 | a7debc76a22aed467f3135c9be6913c74d5794f1 | refs/heads/master | 2023-08-31T14:48:24.603783 | 2023-08-25T19:05:00 | 2023-08-25T19:05:00 | 5,779,032 | 23 | 11 | NOASSERTION | 2021-01-22T16:34:47 | 2012-09-12T11:51:41 | C | UTF-8 | C | false | false | 18,747 | c | //*******************************************************************
//Author: Yejoong Kim
//Description: Developed during PRCv17 tape-out for verification
//*******************************************************************
#include "PRCv17.h"
#include "PMUv9_RF.h"
#include "mbus.h"
#define PRC_ADDR 0x1
#define ... | [
"yejoong@umich.edu"
] | yejoong@umich.edu |
b8b64ef458102f002acbaf4abfc3de999b8198b9 | 8c3c7ccf11717eb5f45f7359c84d3ad10a404517 | /Problems on Numbers/Accept total marks & obtained marks from user and calculate percentage.c | 0834d7e2c91320d10cf16c196e3ba7374a6f8748 | [] | no_license | SarikaBodkhe/C-Programs | a19a20775a75a7f2c6025e94aaac9acb3ecdaf0d | 17168e375e2555812204f13eaf4a1db9f047cebd | refs/heads/main | 2023-07-10T00:17:55.453396 | 2021-08-11T12:48:20 | 2021-08-11T12:48:20 | 394,744,214 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 650 | c | /* Write a program which accept total marks & obtained marks from user and calculate percentage.
Input : 1000 745
Output : 74.5%
*/
#include<stdio.h>
float percentage(int iNo1,int iNo2)
{
float iAns=0.0;
if((iNo1==0) ||(iNo2==0) || (iNo1<iNo2))
{
return 0;
}
iAns=(float)iNo2/(float)iN... | [
"noreply@github.com"
] | SarikaBodkhe.noreply@github.com |
b363dc4d5fb23a98317c56ec707b5821085d241d | 776037fb4a91183c821784af9ab117048a326423 | /obj/book/skill/13sword_100.c | b99c66a80cfc2d192f0fa382a3ab98e651ac3341 | [] | 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 | 743 | c |
inherit ITEM;
void create()
{
set_name("削断的梅枝", ({ "meizhi"}));
set_weight(100);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "段");
set("long",
"一段两三尺长的梅枝,似乎是被什么利器削断。然而断口处很长,
几乎是平行着这根梅枝削下来的。梅枝上墨痕点点,似乎有人用墨迹标明了剑势的来龙去脉。\n");
set("value", 700);
se... | [
"i@oiuv.cn"
] | i@oiuv.cn |
4b4749cb0fb508c91a95dbf84d6bf2846fe84eca | 9973a8587f59effa7ec6ede68f4cb99bcb877482 | /src/delaunay.c | bb66b8ed80665e92cddab047c08e9182bd8cde69 | [
"BSD-3-Clause"
] | permissive | yiwang62/spglib | 86bf4c9e90a6621b6adfaabed3532f12c2d75ddf | e8118d854a4c11dbaa8d7b2c55d4a1e74ddcaaf7 | refs/heads/master | 2023-03-01T16:18:40.943239 | 2021-01-29T05:24:23 | 2021-01-29T05:24:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,233 | c | /* Copyright (C) 2010 Atsushi Togo */
/* All rights reserved. */
/* This file is part of spglib. */
/* 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 abov... | [
"atz.togo@gmail.com"
] | atz.togo@gmail.com |
801c04186f728f8489ff6055c6b79b757753055c | 23edb23d91511eff03022a77633057b01d9e6420 | /c05/20-field-handling.c | 6c3c454342316f84b1c2b06fd94b5a6c3d32f875 | [] | no_license | haolaoshi/K-R | b2306b6bfacd2c3c0823a4e8fff259dd27ba8790 | c860a52c9fff2367e081ca6a904f6ac010abf014 | refs/heads/master | 2023-03-10T14:05:01.407729 | 2021-02-20T05:14:30 | 2021-02-20T05:14:30 | 162,091,960 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 297 | c | /*
*
* Exercise 5-17:
* Add a field-handling cpa ility so sorting may be done
* on fields within lines,each field sorted according
* to an indepaendent set of options.
* The index for this book as sorted with -df for the
* Index category and -n for the page numbers)
* ;
* /
*/
| [
"liujiahao.oak@gmail.com"
] | liujiahao.oak@gmail.com |
8c20af23681a0b4160107e0aeed7547eeb12370a | 99a32ddcf2357202136b1cf8a439ee89eebf7480 | /Platform/common/include/utils.h | 76dc0c3e58d2337a66d3247690a9bb22ec7b677d | [] | no_license | strongstar79/openRTK330-lib | 6cbeb37276198c684118df39cba87367e317c3d7 | fcbc22577096b02ffb0e49f871d17a1985582dc9 | refs/heads/master | 2021-04-16T09:46:57.056936 | 2020-03-14T03:01:57 | 2020-03-14T03:01:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,929 | h | /*******************************************************************************
* @file: utils.h
*******************************************************************************/
/*******************************************************************************
Copyright 2020 ACEINNA, INC
Licensed under the Apache L... | [
"dwang@aceinna.com"
] | dwang@aceinna.com |
dbde64c1908f2a0c1f8a35e513c3605743b76c3c | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/tig/src/extr_refs.c_refs_read.c | 9917079b4d894eec03bf5250e9b80bf74a94c559 | [] | 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,021 | 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 |
095c93f7913f6c004008485200207b29cb9dbfaa | 79c87bf4edbb0e9ec8be1025615500fb775eaa38 | /io/ttyname.c | 46281e04e9999786785e8c2e86006a001a2d18fe | [] | no_license | komh/os2compat | d0976f4af06779e0519638e4736cfdbf2d38de57 | 23ed29f07f987df42889d06d2bf7629426aa3afc | refs/heads/master | 2023-02-06T06:08:12.883111 | 2023-01-31T10:29:51 | 2023-01-31T10:29:51 | 23,450,203 | 6 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,256 | c | /*
* ttyname() implementation for OS/2 kLIBc
*
* Copyright (C) 2023 KO Myung-Hun <komh@chollian.net>
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Pub... | [
"komh@chollian.net"
] | komh@chollian.net |
b5aa18960294f75015a2e96dd6e31b922f170b76 | 59db541234431a235104440dc8a76417f65dcd51 | /adc.h | ddb643643868360041321fe2d6724ecfd11a0d29 | [] | no_license | EobanZ/Space-Invaders-Arduino | 34a0654df9e89ded7618a19722440f2502ba4143 | e252b6e810a16ed74fd8a171998dea21d799b0e5 | refs/heads/master | 2020-09-20T07:14:32.005525 | 2019-11-26T09:45:55 | 2019-11-26T09:45:55 | 224,408,718 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 167 | h | #ifndef adc_h
#define adc_h
#include <avr/io.h>
#include <util/delay_basic.h>
#include "asserts.h"
void init_ADC(void);
uint16_t read_ADC(uint8_t channel);
#endif | [
"zwick.fabi@googlemail.com"
] | zwick.fabi@googlemail.com |
e613b807197beb55b1cac0786096befee6043857 | 667ffd4fc96cbf3322c8e248f2c7ce4a84e8d8dd | /flasher_tweak.h | fbc40b151d376520839e445df4e803a844116135 | [] | no_license | eamars/mmculib | 961740bc095c1ef59011eaf9f9d53929569502e4 | 5095e8b57ce1c6c4d145d701c649fa5ee7da479c | refs/heads/master | 2021-01-19T23:25:47.040692 | 2017-04-13T03:36:07 | 2017-04-13T03:36:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 388 | h | /** @file flasher_tweak.h
@author M. P. Hayes, UCECE
@date 15 May 2007
@brief
*/
#ifndef FLASHER_TWEAK_H
#define FLASHER_TWEAK_H
#include "flasher.h"
extern void
flasher_tweak_mod_duty (flasher_pattern_t *pattern, uint8_t mod_duty);
extern void
flasher_tweak_mod_freq (flasher_pattern_t *pattern, uin... | [
"michael.hayes@canterbury.ac.nz"
] | michael.hayes@canterbury.ac.nz |
b504182a3205da828ee34cf74404425d9ef7381b | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/media/platform/davinci/extr_vpbe.c_vpbe_get_std_info_by_name.c | 143cc1bc57d6cd2194244c6658365b549ad301ba | [] | 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,257 | 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 |
4b4f939c818a81fe149263c053b5fda1df3d8b51 | a876e4d3ad58610c0f040d6fd75776eac6fc2660 | /amazon-freertos/projects/infineon/xmc4700_relaxkit/dave4/aws_demos/Dave/Model/APPS/CMSIS_DSP/v4_0_20/Templates/Source/FilteringFunctions/arm_fir_sparse_f32.c | 5204775d0e8d3b83256f8d63afa2246f0625fb3b | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain",
"MIT",
"Apache-2.0"
] | permissive | Infineon/pred-main-xmc4700-kit | e1f5820ecbed90e7c13a3017029a107c22175509 | afe3afe9d75b371351b22b81572be9245094f027 | refs/heads/master | 2023-06-29T05:06:22.144239 | 2021-07-06T06:22:00 | 2021-07-06T06:22:00 | 362,029,099 | 2 | 2 | null | null | null | null | UTF-8 | C | false | false | 12,296 | c | /* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_fir_sparse_f32.c
* Description: Floating-point sparse FIR filter processing function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --... | [
"manuel.hollfelder@infineon.com"
] | manuel.hollfelder@infineon.com |
12fc6eba21437c9b5fa76cb99a88e7397f632e02 | 8970365b7a53bf6da4c0a824aa1e8768c133beab | /h/uta.h | 8effcc2654ea36cff2506cdb3369d26b095e7898 | [
"MIT"
] | permissive | zen3d/utone | 0edbe6a02a603ccfe6af044b995437692a3c57e4 | 4ec1a76ffe4c560d70c8787e678e0a1c2de4f20f | refs/heads/master | 2022-12-02T03:44:15.847629 | 2020-08-09T20:18:23 | 2020-08-09T20:18:23 | 286,133,718 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 321 | h | typedef struct {
UTFLOAT *buf;
uint32_t pos;
uint32_t bufsize;
ut_audio uta;
ut_auxdata aux;
} ut_uta;
int ut_uta_create(ut_uta **p);
int ut_uta_destroy(ut_uta **p);
int ut_uta_init(ut_data *ut, ut_uta *p, const char *filename);
int ut_uta_compute(ut_data *ut, ut_uta *p, UTFLOAT *in, UTFLOAT *out);... | [
"danm@zen3d.com"
] | danm@zen3d.com |
7beac4a220534e61b94f0c446da1b85ad91ce644 | c68ec003852ae3480aaa7b9f1bab428d3a7d30e2 | /usblib/usb_dcd_int.c | 6db26143459fcd125a50818f634db4e781efbbda | [] | no_license | nowhard/STM32F2_LEVEL_GAGE_TEST | 1f98eb16b0ddf4962ef286e93ace0507f0847a4e | a02660fb4eeaa15f4480828719ab732b4bff2c3f | refs/heads/master | 2021-01-01T17:52:03.155829 | 2015-06-24T11:26:55 | 2015-06-24T11:26:55 | 34,658,460 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 22,204 | c | /**
******************************************************************************
* @file usb_dcd_int.c
* @author MCD Application Team
* @version V2.0.0
* @date 22-July-2011
* @brief Peripheral Device interrupt subroutines
*************************************************************************... | [
"nowhard@mail.ru"
] | nowhard@mail.ru |
feb156156b2dacbc95020880c60e09e5e797ab8b | 7b9879948b92f5689bed9846ea4c7c6303f70d56 | /Stable_Releases/LimitsStableReleases/v1.0/ProfileLikelihood_ReducedParams.C | 0d10410fd4a9386490f8495a498ea7088bfbf774 | [] | no_license | p-terman/Pulse_chopping | 19f38b1c75ecea452b4ae74ae94f71626d13cdeb | 7b084bd5762b802274e8eceb003cac01d4b53805 | refs/heads/master | 2023-02-08T23:48:04.345674 | 2021-01-01T00:34:43 | 2021-01-01T00:34:43 | 173,791,462 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 39,848 | c | //////////////////////////////////////////////////////////////////////////
// Based on KRG's ProfileLikelihood.C
// AC 2013-07-16 -- Put in simple linear yields of initial quanta and Gaussian resolutions on S1 and S2.
// Reverted to a beta=0 version of WIMP spectrum until normalisation of full version is fixed.
// KRG... | [
"terman.paul@yahoo.com"
] | terman.paul@yahoo.com |
3a2b7b5d1ecc61de491e04195add5f5826fb79ea | 4bcd999496f484201d9a29340ce4dc5cf34a3725 | /vendor/c/px/src/flopen.h | d8202844eb37bb12faf080a3a3f202ed490f347b | [
"MIT"
] | permissive | tongson/omnia | e2ae0fb7811793d6a715a2c6188bba8a742d191c | a5780e8143ed32a2a7d7e578c8b18ee7d00e5731 | refs/heads/master | 2021-06-26T16:31:04.590755 | 2020-11-05T01:12:59 | 2020-11-05T01:12:59 | 33,995,031 | 52 | 2 | null | 2018-03-13T03:26:37 | 2015-04-15T13:21:26 | C | UTF-8 | C | false | false | 47 | h | int flopen(const char *path, int flags, ...);
| [
"propolice@gmail.com"
] | propolice@gmail.com |
0830d0fcb90d1c6fe435a276697e834463c91914 | 5ba46601f02e68d136700e90377a1336f2f42a4c | /cc3000_web_client/drivers/rgb_led_driver/rgb_led.h | 048b19fee6f92b1d76f8da17d936fada84f947c9 | [
"MIT"
] | permissive | camsoupa/cc3000 | e93f76da7175394759cd04cbe34c6cce7e4dc660 | bcd011289ffd5f870e3f4b6aee229f223220d3a4 | refs/heads/master | 2016-09-06T12:09:27.470962 | 2014-04-29T15:30:46 | 2014-04-29T15:30:46 | 18,114,551 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 561 | h | /*
* rgb_led.h
*
* Version 1
*/
#ifndef RGB_LED_H_
#define RGB_LED_H_
#include <stdint.h>
void init_rgb_pwm(uint8_t _gpio_r, uint8_t _gpio_g, uint8_t _gpio_b, uint8_t _gpio_i);
void init_rgb_led(uint8_t _gpio_r, uint8_t _gpio_g, uint8_t _gpio_b);
void set_color(uint8_t r , uint8_t g, uint8_t b);
void set_br... | [
"camsoupa@gmail.com"
] | camsoupa@gmail.com |
e39ddd9eb33991b33b24357c2712db6005094218 | 179570cbe9d519a3d540cf9e501033ff3c29a5a9 | /src/game/Skill.h | 680a9a43c714fabbf2b468c0e449fc2dffbb44e7 | [] | no_license | wksgame/common | 020f522e6950972e878801f6202918e6e2766d79 | 3969e88b867aec3f81588ff8aa3fa0b87d4d8256 | refs/heads/master | 2021-01-21T12:50:00.211780 | 2017-12-28T06:29:07 | 2017-12-28T06:29:07 | 38,437,205 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 119 | h | #pragma once
#define SKILL_COUNT 3
extern const char* skill_name[SKILL_COUNT];
extern int skill_damage[SKILL_COUNT]; | [
"361709892@qq.com"
] | 361709892@qq.com |
14745751a38f1b1f66b7a628cdcd8a943d0eccf3 | 5eb795276c300471512faab5ef37bc71b60b2148 | /components/bl602/bl602_wifi/modules/ke/src/ke_event.c | 3e5bcc3b590a7357f7655a79baa66dcf2993c2f3 | [
"Apache-2.0"
] | permissive | lorenz/bl602-re | 98fb5f59c88954c3e171fdf958ced5d0e4c8ebee | abbf6a4a841f3a0cb131f4ba7eacd99200c3ab6f | refs/heads/master | 2023-01-23T15:41:41.285207 | 2020-11-22T10:01:01 | 2020-11-22T10:01:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 795 | c |
void bl_main_event_handle(...);
void bl_utils_dump(void);
void hal_mib_dump(...);
void ipc_emb_dump(void);
void rxl_cntrl_dump(void);
void rxl_hwdesc_dump(void);
void txl_cfm_dump(void);
void txl_cntrl_env_dump(void);
void txl_frame_dump(void);
void bl60x_fw_dump_statistic(int forced);
void bl_event_handle(int param);... | [
"j.l.madushan@gmail.com"
] | j.l.madushan@gmail.com |
9b59a29b718e7c839f87bda36113d9025a63f109 | 408228c92ae006c96723f64422eb7387be0a80ea | /OSLab/Dining Philosopher Problem/task2.c | 16b421c6796fdda88d3c1e1e9c27f35ff2742e23 | [] | no_license | refaat31/academics | 8988bae8eb4625a9540887bc0e49c94df159bc13 | 077155d34aa6fd0ea25875bd02664e4d368c2869 | refs/heads/master | 2022-12-01T05:59:09.068818 | 2020-08-14T15:18:37 | 2020-08-14T15:18:37 | 279,381,300 | 0 | 1 | null | 2020-07-22T07:43:00 | 2020-07-13T18:27:34 | C++ | UTF-8 | C | false | false | 3,136 | c | #include <pthread.h>
#include <semaphore.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#define N 5
#define THINKING 2
#define HUNGRY 1
#define EATING 0
#define LEFT (phnum + 4) % N
#define RIGHT (phnum + 1) % N
//int j=0;
int flag[N] = {0};
char status[][10] =... | [
"refaatalamgir@iut-dhaka.edu"
] | refaatalamgir@iut-dhaka.edu |
889640499477d570ee279a82646e053e2c2b36ac | 3268a083ed59705526748ae4d567874eb032937d | /source/data/charset1.h | 9119f36d691d653875cb54cb5b4a1082033f97cd | [
"MIT"
] | permissive | tchaly-bethmaure/BPCore-Engine | ef9f7f8b4454a07e069d3b701d2afe14ce6ba4e8 | f9b809545bcffe895e8d7b0435d9b7822063c82e | refs/heads/master | 2023-08-02T04:18:37.486680 | 2021-09-14T02:06:20 | 2021-09-14T02:06:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 730 | h |
//{{BLOCK(charset1)
//======================================================================
//
// charset1, 10104x8@4,
// Transparent color : FF,00,FF
// + palette 256 entries, not compressed
// + 1263 tiles not compressed
// Total size: 512 + 40416 = 40928
//
// Time-stamp: 2021-09-11, 03:51:52
// Exported by Cear... | [
"ebowman@bu.edu"
] | ebowman@bu.edu |
86f2bcfb80adf6ed7a3b3a1a4bf5826c61f7da39 | 01698dd342f5b85294203b313948009d07392ddf | /code/Deprecated versions/v4.1 PersimmonL4/Src/tim.c | 1037b28039752cf7eabaddbb9afd6376c900d7a8 | [] | no_license | outsidersdelaelectronica/tiic-2015 | 4c89742104751d982a106b0883306ea67c28b528 | a2394d87318190c7520758ed7f22125e0d7bad13 | refs/heads/master | 2021-01-24T09:10:06.095910 | 2017-02-10T00:22:43 | 2017-02-10T00:22:43 | 35,607,935 | 0 | 0 | null | 2016-05-25T15:38:12 | 2015-05-14T11:37:51 | C | UTF-8 | C | false | false | 6,407 | c | /**
******************************************************************************
* File Name : TIM.c
* Description : This file provides code for the configuration
* of the TIM instances.
******************************************************************************
*
... | [
"tomasvalno@gmail.com"
] | tomasvalno@gmail.com |
7397df4c8695a8cdddccc2827625af34c51cdf0e | e0b489cfc159348f13aa989a9b717f6084c253fc | /F1-TestFixture.cydsn/codegentemp/UART_460800_PM.c | 68667b6662f25ac4aa7b21c41a9ca6545a0c389b | [] | no_license | feniex/firm_F1-TestFixture | 293f2eb2228e965510d9690f2b9e719ec8b47d69 | 7afe4b0200b242de031db68c21e86180d9788a5c | refs/heads/main | 2023-08-23T12:12:17.825012 | 2021-09-20T19:20:33 | 2021-09-20T19:20:33 | 321,795,737 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,544 | c | /*******************************************************************************
* File Name: UART_460800_PM.c
* Version 2.50
*
* Description:
* This file provides Sleep/WakeUp APIs functionality.
*
* Note:
*
********************************************************************************
* Copyright 2008-2015, Cypres... | [
"n.marth@feniex.com"
] | n.marth@feniex.com |
04b7d2ae63e82ba13304700c9d69bd756ba878ef | 10275998ae967116ede5d15cfafe550ee9ab56ce | /week3/ex2.c | 3a812637a082bd6a8256c041c84df0d619f7f2c5 | [] | no_license | mikadonia/os_homeworks | 15c3e6fbc3a86a23f114a97f02243aff1de6ee98 | 97ae02c22a737201af6c8999a29ca4c42ee99f55 | refs/heads/master | 2023-01-12T15:19:09.523966 | 2020-11-18T18:29:00 | 2020-11-18T18:29:00 | 288,519,426 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 600 | c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define N 10
void bubble_sort(int *a)
{
for (int i = 0; i < N; ++i)
for (int j = 1; j < N; ++j)
if (*(a + j - 1) > *(a + j)){
int temp = *(a + j - 1);
*(a + j - 1) = *(a + j);
*(a + j) = tem... | [
"noreply@github.com"
] | mikadonia.noreply@github.com |
f4f9556ee8a2968945554cbfbbacdf4abab45caf | 5058337fe83ab01b87ab644af0e862621e14aa49 | /srcs/handle_keys.c | f8528e46ead0fd077d321c90fe3b0e904f66bc63 | [] | no_license | gagonzal/Fractol | 0214540e821417aac606f48cfb4e2b11d851bf76 | 29b3eb0099120ec1fbd6ecbbd4c3338dc92a9881 | refs/heads/master | 2020-04-04T15:03:29.809168 | 2018-11-04T20:51:12 | 2018-11-04T20:51:12 | 156,023,191 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 383 | c |
#include "../includes/fractol.h"
int handle_key(int key, t_mlx *mlx)
{
if (key == 34 && mlx->frac->nb_iter <= 1000)
mlx->frac->nb_iter += 25;
else if (key == 40 && mlx->frac->nb_iter > 25)
mlx->frac->nb_iter += 25;
else if (key == 49)
mlx->frac->juliamouse = (mlx->frac->juliamouse ? 0 : 1);
else if (key ==... | [
"baudibert@winter-mushroom.com"
] | baudibert@winter-mushroom.com |
4021877b79b0c7632cc97871b52dc2cae740c27b | 7fb887dc36ee914c15ea69cab9dd33021d255795 | /libft/src/ft_isalpha.c | feba0a59f147a3e1f2d43d61cde946a6a3b4780d | [
"MIT"
] | permissive | gsinged/push_swap | d7bda7bad3245db7842b8b307412977791671bf3 | 94306a492ebe92117eaaf0e585b6a94f4e8b90dd | refs/heads/main | 2023-06-28T08:15:12.034617 | 2021-07-28T11:13:08 | 2021-07-28T11:13:08 | 311,432,247 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,025 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: ... | [
"gsinged@at-m3.msk.21-school.ru"
] | gsinged@at-m3.msk.21-school.ru |
32cf655c2ca69716c05730c35000ca5218224ca8 | 95f475ed68a0929f3e0746c3a3b7c427cb4273ee | /codegen/lib/forCoder/xzlarfg.h | 66cda2dd1e1d79e3ebf5db9c04ce0fbffeba8678 | [] | no_license | MolVlad/Angle-of-Arrival-Estimation-Simulation | b1496ba1fc3a4e15db33379ade658b6d20863c42 | de2830e619241a907cccca0eac27af33857fd931 | refs/heads/master | 2023-08-17T19:53:19.160956 | 2021-10-29T10:49:28 | 2021-10-29T10:49:28 | 279,341,387 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 441 | h | /*
* File: xzlarfg.h
*
* MATLAB Coder version : 4.1
* C/C++ source code generated on : 23-Jul-2020 18:38:00
*/
#ifndef XZLARFG_H
#define XZLARFG_H
/* Include Files */
#include <stddef.h>
#include <stdlib.h>
#include "rtwtypes.h"
#include "forCoder_types.h"
/* Function Declarations */
extern creal_T ... | [
"molvlad@frtk.ru"
] | molvlad@frtk.ru |
0729b57233057ac543dea27aa86487eeb7e78eff | b42f45d70e2b3723bbc6c862c564d3858aa5967d | /SRC/MORE/MOVETOLS.C | 05cfd1ac2da688e64e4dc7ddcd46fa988a3b8c91 | [] | no_license | OS2World/UTIL-FILE-AIXLIKE | 966c18ab1077a081ab9815bd04bc4376658006a0 | c73e3e7f7c93c46ea50d9cde4cbc3e5e462bf679 | refs/heads/master | 2016-09-16T00:12:29.440637 | 2014-11-29T16:35:10 | 2014-11-29T16:35:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,347 | c | static char sccsid[]="@(#)64 1.1 src/more/movetols.c, aixlike.src, aixlike3 9/27/95 15:45:14";
/************************************************/
/* Author: G.R. Blair */
/* BOBBLAIR @ AUSVM1 */
/* bobblair@bobblair.austin.ibm.com */
/* ... | [
"martin@os2world.com"
] | martin@os2world.com |
ef951ddda460016afb5e9b9017971cdb58d9651a | 982d4c81d788df89eeda20fbde24778169bf22fe | /TP_3_Gr/funciones.c | de9bc61128ae09c15f7af3f80854a10ab4250b98 | [] | no_license | gregnaninl/tp_laboratorio_1 | d4f71c30ba151f6bd28b066eca9af099197f0991 | cc8d51db62135f8426e92ab78cbfa75dcc4efe24 | refs/heads/master | 2021-01-18T23:31:47.008961 | 2017-06-09T14:35:56 | 2017-06-09T14:35:56 | 87,112,150 | 0 | 0 | null | null | null | null | ISO-8859-2 | C | false | false | 6,600 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "funciones.h"
int agregarPelicula(EMovie* p )
{
int x=0;
FILE* f;
printf("Ingrese Titulo:\n");
fflush(stdin);
gets(p->titulo);
printf("Ingrese genero:\n");
fflush(stdin);
gets(p->genero);
printf... | [
"noreply@github.com"
] | gregnaninl.noreply@github.com |
96abbc5b8692d797daad6ec9710cdfdc8feb7b6b | 80895ffa6699b22965f113d5aa69f23c065ee454 | /app_global.h | 689675e6ffac41c56998ae7aed64f663f45daa0c | [] | no_license | jbrjnk/ble-temperature-sensor | 42034ca9b71f06891c8d80928a3986b54d5e2807 | 065c98a5074ed058af97ebbe8da308db92115f28 | refs/heads/main | 2023-07-30T21:17:10.222135 | 2021-09-20T21:57:17 | 2021-09-20T22:00:33 | 408,589,606 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 253 | h | #ifndef APP_GLOBAL_H_8a4f510bcddd7ab
#define APP_GLOBAL_H_8a4f510bcddd7ab
#define ADVERTISING_INTERVAL_MS 1200
#define MEASUREMENT_INTERVAL_MS 10 * 1000
#define TIMER_LIB_PRESCALER 0
#define BLE_GAP_DEVICE_NAME "B001"
#define BLE_GAP_TX_POWER 4
#endif | [
"brjnk@outlook.com"
] | brjnk@outlook.com |
ff68c03b352cd69aba6515b6182954a3c4c48b6a | c5cb98ad5c3fa37ce761cb9b430b69e29a33141f | /d/city3/wenzai/npc/obj/saoba.c | e6727c46581f6026b50aa9c3aad59e5a287e5eea | [] | no_license | cao777/mudylfy | 92669b53216a520a48cf2cca49ea08d4df4999c5 | 266685aa486ecf0e3616db87b5bf7ad5ea4e57e4 | refs/heads/master | 2023-03-16T20:58:21.877729 | 2019-12-13T07:39:24 | 2019-12-13T07:39:24 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 362 | c | //bye enter
inherit ITEM;
void create()
{
set_name( "扫把", ({ "saoba"}));
set_weight(300);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "把");
set("long","这是一把用来的打扫卫生的扫把。\n");
}
}
int query_autoload() { retur... | [
"i@chenxuefeng.cn"
] | i@chenxuefeng.cn |
6421c031004fa66112f154ab894bebc80019740c | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/g++.dg/inherit/access2.C | dc5f7d73caad0ea32969f235e1a83de192c424c3 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C | false | false | 194 | c | // Test that a base doesn't get special rights to convert to itself.
struct A {
void f ();
};
struct B: private A { };
B b;
void A::f ()
{
A* ap = &b; // { dg-error "base|inherit" }
}
| [
"rink@rink.nu"
] | rink@rink.nu |
f8f0c7d5995cfeda93b272b8ec174c06004990c3 | df259bbf953477e19ff2d20ea660c071d1babdc8 | /ctrl.h | 8ac51bf7db0616650040f1d330c6f932ff81b0c8 | [] | no_license | nishiokozo/mbs | ca2b18a2cdb15775773b652c24dd9ef0c68acfcc | 82c9ff714b7d31abb639ebc46d2b4cc308837db5 | refs/heads/master | 2020-03-28T16:06:46.224704 | 2018-09-19T12:37:00 | 2018-09-19T12:37:00 | 148,660,627 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 90 | h | int ctrl_update();
int ctrl_keyinput( int key );
int ctrl_init( int argc, char *argv[] );
| [
"nishiokozo@gmail.com"
] | nishiokozo@gmail.com |
9d1a777e8972028413eed0ab6f6f82f5f35c0652 | d569033b7912038b9c49d4439325810499fab849 | /libft/ft_di_helper.c | 5d044ed5a19b83e6fc043d9d4f949e594d2a18a7 | [] | no_license | maabou-h/ft_ssl_md5 | 2f05d28e03907d243f01d9f164c32bc17cfdd17d | 08b58111939341f26a17354eca1000ccdf0d100c | refs/heads/master | 2023-04-19T12:32:40.859404 | 2021-05-03T20:19:23 | 2021-05-03T20:19:23 | 361,092,069 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,723 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_di_helper.c :+: :+: :+: ... | [
"maabou-h@e1r4p12.42.fr"
] | maabou-h@e1r4p12.42.fr |
02c55949fef21bc686d4b74033fa93174de6ef14 | 8262795e1df3d1a1a1fb4e7d1aa1757fbdff5186 | /practice/29.c | 7a5fd55a668baccf4df95be4ed1eb6fb7ce6c53f | [] | no_license | yanglt7/C | 868cdcc6bc81ea6d3d098dfc5b01fb3162398389 | 12a39ddb5572e213bc21a8810355261f899b1ac6 | refs/heads/master | 2020-04-24T14:45:58.296316 | 2019-02-22T09:24:22 | 2019-02-22T09:25:47 | 171,416,876 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 303 | c | //给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。
#include <stdio.h>
int main()
{
int n;
int i = 0;
int k;
scanf("%d", &n);
while (n != 0) {
k = n%10;
n /= 10;
printf("%d", k);
i++;
}
printf("\n");
printf("%d\n", i);
}
| [
"yanglt7@qq.com"
] | yanglt7@qq.com |
39ff64efa64f218138583ea7d68ec743af4a20d5 | 9c836cf367bae0a04cfdda7c8d06c42e9c4d7c14 | /chararrayC/main.c | e222c96c4ce99ec644aa2d57ed707453031b1f0a | [] | no_license | Moonzxxi/Hacking-exploitation | 529f53a2d7de158e8fd1e293532601406c600708 | 13d934868ca653cef0dfb3485de88e0b7a0ee31f | refs/heads/master | 2022-11-06T06:55:19.200912 | 2020-06-16T01:40:58 | 2020-06-16T01:40:58 | 271,217,988 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 161 | c | #include <stdio.h>
#include <string.h>
#pragma warning(disable: 4996)
int main() {
char str_a[20];
strcpy(str_a, "Hello, world!\n");
printf(str_a);
} | [
"noreply@github.com"
] | Moonzxxi.noreply@github.com |
7fd65f97045cb6314da9abe9be2417bafa427985 | c2cedcf36667730f558ab354bea4505b616c90d2 | /players/maledicta/cont/rooms_bk/284.c | 2a6df6fd8f598bf6e6177e1d7c52cd2a57710978 | [] | no_license | wugouzi/Nirvlp312mudlib | 965ed876c7080ab00e28c5d8cd5ea9fc9e46258f | 616cad7472279cc97c9693f893940f5336916ff8 | refs/heads/master | 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,371 | c | #include "/players/maledicta/ansi.h"
#define tp this_player()
#define tpn this_player()->query_name()
#define tpp this_player()->query_possessive()
#define RNUM 284
inherit "players/maledicta/cont/inherit/room";
string rtype;
reset(arg){
if(arg) return;
short_desc = "a large plain";
set_light(1);
rtype = "plain";
... | [
"rump.nirv@gmail.com"
] | rump.nirv@gmail.com |
97c322c1427e32add8f59210d5c1966caa8a6f1e | dd22a2ca5471eaef5a6116e8560908ad09a7ee69 | /Stage1/Ex2/exptree.c | d191db138bfc38a9a44ad410aaa685f01ec4637c | [] | no_license | ddeepakk13/Compiler-Lab | a73403fbdcceb571b2295f333b273473d5d49eae | 3e0470cd7563a1017b3a8f4e401034d916e29fe8 | refs/heads/master | 2020-04-19T00:21:22.426152 | 2019-03-15T08:45:39 | 2019-03-15T08:45:39 | 167,844,497 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 946 | c | #include "exptree.h"
#include<stdio.h>
#include<stdlib.h>
struct tnode* makeLeafNode(int n)
{
struct tnode* leafptr = malloc(sizeof(struct tnode));
leafptr->value = n;
leafptr->op = NULL;
leafptr->left=NULL;
leafptr->right=NULL;
return leafptr;
}
struct tnode* makeOperatorNode(char c, struct t... | [
"ddeepakk13@gmail.com"
] | ddeepakk13@gmail.com |
569e09e902a67907036803e36c7accb7a2e462b5 | 9b553bbfc8b0807d7f860964d6044d6ccf6d1342 | /include/JSystem/JAudio2/dsptask.h | 667d996f4f4caab0e6a7fc6f6ab4880d22f4a8db | [] | no_license | DedoGamingONE/tp | 5e2e668f7120b154cf6ef6b002c2b4b51ae07ee5 | 5020395dfd34d4dc846e3ea228f6271bfca1c72a | refs/heads/master | 2023-09-03T06:55:25.773029 | 2021-10-24T21:35:00 | 2021-10-24T21:35:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 88 | h | #ifndef DSPTASK_H
#define DSPTASK_H
#include "dolphin/types.h"
#endif /* DSPTASK_H */
| [
""
] | |
832e33956ead1ed230dd72775070b699ffef0ed8 | 5d7cd9067bf205ba863a13ff995ecc2061fea292 | /C언어 유제_1/C언어 유제_1/04-04-1.c | 12fecde9525b17ebef314b90c67c5a9b739aa8b5 | [] | no_license | Chae-yun/C-afterschool-1 | b82318eaa1c1f951f890388a920ba6b88b994d80 | 2b210a98fc4fd47c4ef907881b3848d8b2039410 | refs/heads/master | 2021-01-19T00:40:43.019176 | 2017-04-04T15:00:37 | 2017-04-04T15:00:37 | 87,198,685 | 0 | 0 | null | null | null | null | UHC | C | false | false | 345 | c | #include <stdio.h>
#pragma warning(disable:4996)
#define M2PY(m) 0.3025*m
#define PY2M(p) 3.305785*p
int main()
{
double m, p;
printf("제곱미터 입력 : ");
scanf("%lf", &m);
printf("평 입력 : ");
scanf("%lf", &p);
printf("%.1lf 제곱미터는 %.1lf 평\n", m, M2PY(m));
printf("%.1lf 평은 %.1lf 제곱미터\n", p, PY2M(p));
}
| [
"Chae-yun Yang"
] | Chae-yun Yang |
1941da16ac845b231835763131194414268d2d41 | fc5bb0b25b4ae63359e344e9b82b1cdc0acd646e | /src/shape.c | 229788b59e4acccd6a854357f0495fadce0c5a45 | [] | no_license | khannea/C-RayTracer | 7f06e6f2a92403cbca681238b2542cf6dcdf8b23 | 0dfac5363756b0a57a1c8909b0b13663048b156b | refs/heads/master | 2022-03-24T21:39:34.846612 | 2020-01-05T22:19:45 | 2020-01-05T22:19:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,682 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* shape.c :+: :+: :+: ... | [
"noreply@github.com"
] | khannea.noreply@github.com |
c8f01ca4eb1e881da067cbde0039571dbb345e46 | 6ad31a63f072d6a97245d7e9b1de0584a3159387 | /control.c | 1433d365322f736f2ca3a461ce96bcbd424b1a6c | [] | no_license | Harevost/os_env | 1cf03bee19104617b1cbdc962d5ac4a5380913a0 | 7fc5b1ba294fa24c35541536fdc0532510870cfa | refs/heads/master | 2021-09-02T14:57:48.652857 | 2018-01-03T09:50:32 | 2018-01-03T09:50:32 | 115,583,331 | 0 | 0 | null | 2018-01-03T09:50:34 | 2017-12-28T04:00:42 | C | UTF-8 | C | false | false | 4,538 | c | #include "bootpack.h"
#include <stdio.h>
#include<string.h>
#define BUFFER_SIZE 100
static int t=0;
static int counter = 0;
int LookupCounter();
int LookupCounter(){
return counter;
}
void task_consumer(struct SHEET *sht_win_b)
{
struct FIFO32 fifo;
struct TIMER *timer_1s;
int i, fifobuf[563];/... | [
"noreply@github.com"
] | Harevost.noreply@github.com |
63a8ea88a20efbcf9d7479cb07a7efbb4d108d9b | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/sdktools/buggy/driver/deadlock.c | b34a25d1b199d382845dc493061fb979bbcd4a50 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C | false | false | 62,569 | c | /*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
vfpdlock.c
Abstract:
Detect deadlocks in arbitrary synchronization objects.
Author:
Jordan Tigani (jtigani) 2-May-2000
Silviu Calinoiu (silviuc) 9-May-2000
Revision History:
--*/
//
// TO DO LIST
//
// - detec... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
de1779329ed7f27eab791f4e4afee6f882975736 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/php-src/ext/xmlrpc/libxmlrpc/extr_xmlrpc.c_XMLRPC_CreateValueDateTime_ISO8601.c | 2b427f2a33c9aeaa0172e195f577bbba390acac4 | [] | 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 | 910 | 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 |
072ac6d6ae7be8542c65152fcc93ace4f10e91d9 | f86fa6f6c9911c1fbdd113e213c7478c27a09fff | /MagicSynth/Source/OscillatorEditor2.h | 5e73b4abf043059297d9bbfc3e7be18036e68fd1 | [] | no_license | SharodCelestin/MagicSynth | a0553156364289a9697af4c378e6e23d697f0047 | e077376dfe495d69f2901cec523c7ba51b98ac5b | refs/heads/master | 2020-06-30T04:01:07.052583 | 2019-08-05T19:42:00 | 2019-08-05T19:42:00 | 193,749,685 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 128 | h | version https://git-lfs.github.com/spec/v1
oid sha256:5e1c503297955457bba242caa595307953ba4b1bf62815acb6cdb39b2443c9d6
size 939
| [
"shcel001@mail.goucher.edu"
] | shcel001@mail.goucher.edu |
b5d54e91445ea501d13714dc5c841fc65468fa6e | 92be46fd3fd6d8c525bfcd67678c05b9bcfff578 | /get and print the size of basic types.c | 9977df4419532abf986d3abeacf3c52990f0c975 | [] | no_license | Hacker9896/Initial_C | 3e8848a4c99ba16b9773b1c535193fef34560a2d | 19a73c86d35346a3c7bc4258ae82b704bd8467f3 | refs/heads/master | 2023-04-22T12:37:01.198930 | 2021-05-07T16:42:56 | 2021-05-07T16:42:56 | 339,009,381 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 241 | c | #include <stdio.h>
int main(){
char c;
int i;
double d;
char listchar[3];
int listint[3];
double listdouble[3];
printf("%zu\n", sizeof(listchar));
printf("%zu\n",sizeof(listint));
printf("%zu\n",sizeof(listdouble));
return(0);
}
| [
"sss12212001@gmail.com"
] | sss12212001@gmail.com |
75a878bc930aa93b40584c65b8c7f984006ff860 | de6a1a95444071c5ae201e0add4a6133905492ee | /apps/rtos/freertos/basic_freertos/firmware/src/config/sam_e70_xult/definitions.h | 775d1c7e9d423156a55f97f2365f7e86c1d8de78 | [
"LicenseRef-scancode-unknown-license-reference",
"ISC",
"LicenseRef-scancode-public-domain"
] | permissive | fb321/core | bba2c99e7ab09d4c884fad7227fc4a98e1c38c81 | ac3b1a4d576ee974ad9f1bcfdc7889a05c885a2d | refs/heads/master | 2020-06-27T13:44:06.203997 | 2019-06-28T12:29:22 | 2019-07-02T14:15:32 | 199,966,101 | 0 | 1 | NOASSERTION | 2019-08-01T03:02:36 | 2019-08-01T03:02:36 | null | UTF-8 | C | false | false | 6,421 | h | /*******************************************************************************
System Definitions
File Name:
definitions.h
Summary:
project system definitions.
Description:
This file contains the system-wide prototypes and definitions for a project.
*******************************... | [
"http://support.microchip.com"
] | http://support.microchip.com |
87530592121b614e5be81ff074b648b6a1bd826c | bc2cf0b73b0df2cb30cbf59282ee2a4118338bfa | /src/libs/compat/linux_snull/compat/uapi/linux/random.h | afba163365fdc61eb6ff51c64c08c53cc1b887f7 | [] | no_license | xinyx/haiku | d43c2e37f24eea3e9ff38b9c6722ad68cdb552bb | 10c606fd2795a56725f6f128de01dcd6063198c6 | refs/heads/master | 2021-03-12T20:14:44.698546 | 2015-05-31T15:00:20 | 2015-05-31T15:00:20 | 35,649,280 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 212 | h | #include <generated/autoconf.h>
#ifndef __UAPI_LINUX_RANDOM_H__
#define __UAPI_LINUX_RANDOM_H__
#include <linux/types.h>
#include <linux/ioctl.h>
#include <linux/irqnr.h>
#endif /* ! __UAPI_LINUX_RANDOM_H__ */
| [
"xinyunxing0001@163.com"
] | xinyunxing0001@163.com |
f811992b0df462ba05b185331c04baedf351b425 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/67b5e074-992b-4f8b-8144-56c09247b942.c | 3bc52594d90b485f43f93a88455bc0e23249b53a | [] | 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 | 585 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = j/j;
l = i%j;
l = i-j;
k = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[98];
int c[64];
a = 0;
do {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
03691970c465450cf640448208816e00fb278822 | 0cb581d527dc108f0c7e8b7b63a6188f312f0bf8 | /Lab_7/Generated_Code/ASerialLdd1.c | e376f4fcf319bd231f571ec4630157d7440300cf | [] | no_license | JackNguyenJN/CC2511 | b49abc770fe2aa37fbb1bb94d39b45bd108b19d8 | 6144a1dafb673fb3b5d74bc4ccc9e5b4d632bd73 | refs/heads/master | 2022-12-31T02:06:19.466144 | 2020-10-24T23:28:41 | 2020-10-24T23:28:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,959 | c | /* ###################################################################
** This component module is generated by Processor Expert. Do not modify it.
** Filename : ASerialLdd1.c
** Project : lab_8
** Processor : MK20DX128VLH5
** Component : Serial_LDD
** Version : Component 01.188, ... | [
"68810480+jackoyo@users.noreply.github.com"
] | 68810480+jackoyo@users.noreply.github.com |
a626b800c68ec557a6b4a726393f25ddeedd8fd4 | 06b1c887274634ca9f4606641914e71443d9923c | /src/scripts/src/GossipScripts/Setup.h | 62cc6decd5c87b7a8278b35afdaf04831d89f05a | [] | no_license | zod331/Summit | 3d12db09fc02a1557de91cb61aacf6f801c16e38 | 95df88b83918a70d2d25d8618ca79b6cc1e8f38a | refs/heads/master | 2020-06-01T03:44:07.453120 | 2013-06-09T21:21:47 | 2013-06-09T21:21:47 | 10,589,168 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 195 | h | #ifndef INSTANCE_SCRIPTS_SETUP_H
#define INSTANCE_SCRIPTS_SETUP_H
void SetupInnkeepers(ScriptMgr * mgr);
void SetupGuardGossip(ScriptMgr * mgr);
void SetupBattlemaster(ScriptMgr * mgr);
#endif
| [
"zod_new@hotmail.fr"
] | zod_new@hotmail.fr |
1b49ddca2dd9ef1c21e64348fa6fd553a67c7e18 | 9f6c23bc3ddcba04aa74e36cb52a9717195b53a5 | /abc-modified/src/aig/mfx/mfxResub.c | 5a4786d6135c005637eb0832c95844a7dcd9db1f | [
"MIT-Modern-Variant"
] | permissive | kyotobay/playing_abc | 057b242392641cef608668336f9d5ebb8bce9d02 | 60daba3cb6680c7b88c5708a286b169f61408368 | refs/heads/master | 2021-01-13T02:02:13.739622 | 2012-07-20T13:14:28 | 2012-07-20T13:14:28 | 1,842,439 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,838 | c | /**CFile****************************************************************
FileName [mfxResub.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [The good old minimization with complete don't-cares.]
Synopsis [Procedures to perform resubstitution.]
Author [Alan Mishchenko... | [
"antigonaki2003@yahoo.com"
] | antigonaki2003@yahoo.com |
23daf9126fe06676629cfb15e887c31c9d93a72a | 3b7d74b1d6650797845d6912521df3d470b0ce9c | /set_dutycycle.c | 269c24b4328176e7dd5335513b2aa1c63332198f | [] | no_license | mahdieh-ahmadi/DC_and_steper_motors | 99f2a51b1267d59a421276fa7bc592854180519f | e8913e268eac739f809eda0d54d8ec9ca6388444 | refs/heads/main | 2023-01-03T22:59:40.456466 | 2020-11-02T16:40:31 | 2020-11-02T16:40:31 | 308,624,706 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 186 | c |
#include <mega16.h>
void set_dutycycle (void){
int pina;
float duty;
int y;
pina = PINA;
duty = (90*pina/255)+5;
y = (203/8)*duty-(203/8)+26;
OCR0 = y;
} | [
"m119.ahmadi@gmail.com"
] | m119.ahmadi@gmail.com |
60686ee7ac371f92bcd66445bb23a222d37048fc | c7d8adaf7fb531fed8cd8f695718d247ae592118 | /Homework 4/runner.c | c233451b18ec18416d352993a4e24afd60c96ee7 | [] | no_license | cruhl/mizzou-computer-science-2050 | 1c8506d8525982ab5aee356de89c75442de4d4b6 | 124e298055cf4e0f70455cb775a90ca5b086bec3 | refs/heads/master | 2020-05-17T05:22:44.742088 | 2015-11-18T23:41:12 | 2015-11-18T23:41:12 | 41,072,520 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,389 | c | #include "print.h"
#define MAX_NUMBER_OF_NODES 250
// function prototypes for main
tree* read_file_into_tree(char* file);
int main(int argc, char* argv[]) {
// read file data into a new bst
tree* balanced_tree = read_file_into_tree(argv[1]);
// program logic
printf("\nbalanced tree:\n\n");
print_tree(balanced... | [
"connerruhl@mwc-168036.dhcp.missouri.edu"
] | connerruhl@mwc-168036.dhcp.missouri.edu |
9be483221518de78b4e38d32c272c9fd8b02845e | 99437dcab8e4270d669e7e3a69e8e4b600d00405 | /C++Tutorial 17 HeaderDateienUndInclude/C++Tutorial 17 HeaderDateienUndInclude/meineFunktionen.h | 00c37eb4be01e8f6ea20cebd71ceffca98bb55f9 | [] | no_license | Dante3085/OldCppTutorials | 998da99398b2ff59f05d9ea61bf0b564700ae433 | 8b4beedfe643536e14d263056e377ee1a2f65e3f | refs/heads/master | 2020-03-27T19:23:26.093320 | 2018-09-01T13:43:12 | 2018-09-01T13:43:12 | 146,985,887 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 41 | h | //Funktionsprototypen
int max(int, int);
| [
"moritz97.s@web.de"
] | moritz97.s@web.de |
f3c1a6ed58af4acc03d935ed0292ea2e7269ede2 | 49abf9651a82afa642f1d2e36dc7103cf80ca326 | /Software/PortableGameConsole/Sources/Menu/ApplicationMenu.h | 46ed08d5adbb20d91dcf21e63df7e917f90d0972 | [] | no_license | chythe/PortableGameConsole | 33a034ebd1ff8d91e8f953265275a73028965619 | 09b859bf644b28dfdd7b9ea90c5277a562149cf8 | refs/heads/master | 2020-06-27T03:34:23.758891 | 2019-07-31T10:26:55 | 2019-07-31T10:26:55 | 199,832,918 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,267 | h | /**************************************************************************//**
* @file ApplicationMenu.h
* @brief Menu z aplikacjami - header file
* @author Mateusz Chudy
******************************************************************************/
#ifndef _APPLICATION_MENU_H_
#define _APPLICATION_MENU_H_
... | [
"Mateusz.Chudy@wdc.com"
] | Mateusz.Chudy@wdc.com |
ae8c79e4fce792353e79ace1048c50d48eaa5da3 | 78e676e5a258487068cc693c22ad36765fa9a0e4 | /lab11-1/Clock.h | 994316d1dd89b7155fac7ac8ee7eae68d79b7257 | [] | no_license | indrih17/C-labs | 6292b9d67203c9b4814c8d79ff47075343f0ccdf | 53598c5ee74e37e21b6efaf16faa1aeb083dd601 | refs/heads/master | 2022-01-25T21:50:48.761569 | 2018-01-04T13:05:17 | 2018-01-04T13:05:17 | 116,170,751 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 371 | h | #ifndef CLOCK_H
#define CLOCK_H
struct Clock {
unsigned short hour;
unsigned short minute;
unsigned short second;
};
Clock createClockInstance();
void print(Clock);
int minutesUntilTheEndOfTheDay(Clock);
int minutesUntilTheEndOfTheDay(unsigned short, unsigned short, unsigned short);
int minutesUntilTheE... | [
"indrih17@gmail.com"
] | indrih17@gmail.com |
4ad38f0a5dcb1f8cd67bcaec978057768aa4b187 | c100631308233e21a7b478a16c322f92a3ee9143 | /sdk-xgs-robo-6.4.1/src/appl/stktask/safc.c | bc39076e6a77dd0aff39696026dfdadbb5454dda | [] | no_license | mk386/bcm-1 | af4f5efaa95a8fe0344e0c78011df340ca32959c | bd0f09a01811438230b8fc3b1a7fd4a280800ad6 | refs/heads/master | 2022-03-31T01:37:51.272923 | 2015-09-07T11:11:35 | 2015-09-07T11:11:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 56,392 | c | /*
* $Id: safc.c,v 1.11 Broadcom SDK $
* $Copyright: Copyright 2012 Broadcom Corporation.
* This program is the proprietary software of Broadcom Corporation
* and/or its licensors, and may only be used, duplicated, modified
* or distributed pursuant to the terms and conditions of a separate,
* written license agr... | [
"lorchid@yorkes-MBP.local"
] | lorchid@yorkes-MBP.local |
578b161c33793dfaaa594d84419bafdf04a8b6ca | 83aaaadfd0413f568d583cb0fbcd3c82322481e5 | /PEDisector.h | 213c39e5ae6a2fca7f81476d2479f14017457885 | [] | no_license | juozuxp/Exe-Mods | 73dafd45e76c1f9ca6965ce26de7dec6a6fbf966 | f7dbf1e13686158786e8a561acc264bfbb0dd758 | refs/heads/main | 2023-07-16T23:53:26.091739 | 2020-12-14T21:46:28 | 2020-12-14T21:46:28 | 318,825,950 | 1 | 1 | null | 2023-02-08T18:33:20 | 2020-12-05T15:46:34 | C | UTF-8 | C | false | false | 39,979 | h | #pragma once
#ifndef BOTH_PEDisector_HEADER_INCLUDED
#define BOTH_PEDisector_HEADER_INCLUDED
#include "GeneralErrors.h"
#define GET_IMAGE_DOS_HEADER(PEBuffer) ((IMAGE_DOS_HEADER*)(PEBuffer))
#define GET_IMAGE_NT_HEADERS(PEBuffer) ((IMAGE_NT_HEADERS*)((char*)(PEBuffer) + GET_IMAGE_DOS_HEADER(PEBuffer)->e_lfanew... | [
"noreply@github.com"
] | juozuxp.noreply@github.com |
11c0e55eccaf053c75655dd39a8f6b3ef6b05d41 | a576cec12354d7876e813de25fdb9141be2ebda1 | /chapter12/virtualFunctions/dswppTalkHit1/B.h | 3bf5a8b06ff5a33ead56ae1edc63f5053e5636f2 | [] | no_license | guyavrah1986/learnCpp | 1a024b659699fc39c15bcd4f6111ccb779804105 | f73ab5c5b15399e0e8c3431443f996787aedd302 | refs/heads/master | 2022-12-30T20:48:52.893585 | 2022-12-25T07:04:25 | 2022-12-25T07:04:25 | 160,546,507 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 176 | h | #pragma once
#include "A.h"
struct B : A
{
B(const unsigned int& ui, const int& i, const char& c, const short s);
~B();
unsigned int m_ui;
}__attribute__ ((__packed__));
| [
"Guy.Avraham@ecitele.com"
] | Guy.Avraham@ecitele.com |
dfb58c2f7962d9687ba4daa6b41def9ff2f3a64e | 445a913c92b36d39276b29227b1b4972356aeacf | /Libraries/keyboard.c | 4a362dd7ccb6c7b25da0cfc40f53b674b152eef3 | [] | no_license | AlexanderPokhilenko/Blinking-Keypad-Indicator | 157758617208ceac538c1a1f4e722856f32b7801 | 72c6fda05f91228074bf0682a5fdcb9f9c8f9c4e | refs/heads/master | 2022-06-02T03:55:31.188090 | 2020-04-24T16:58:31 | 2020-04-24T16:58:31 | 258,530,195 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,116 | c | #include "keyboard.h"
// in this example key saved you state
char keypad[numRow][numCol]=
{
'1','2','3',
'4','5','6',
'7','8','9',
'*','0','#'
};
void (*keypad_functions[numRow][numCol])()=
{
indicator_turn_on_1, indicator_turn_on_2, indicator_turn_on_3,
indicator_turn_on_4, indicator_turn_on_5, indicator... | [
"pokhilenko.alex@gmail.com"
] | pokhilenko.alex@gmail.com |
677f5d2b7386e97e128595b7fae2d92efff30cec | d32f3d77c52a1d41fc77272be5a3582856157fa1 | /c/c_primer_plus/rect_pol.c | cd3ce8301a380a4ddf3c7b0b515ecb4b9859b7b0 | [] | no_license | gkzhb/code | c4afc019f7f465845b0b0ef40d08f30c1fd247d6 | 73ab7fb0e156a5904b82811df805b66af36b38c0 | refs/heads/master | 2020-03-18T01:48:59.518692 | 2019-06-15T11:48:40 | 2019-06-15T11:48:40 | 134,161,057 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 947 | c | /* 程序清单16.13 -- rect_pol.c -- 把直角坐标转换为极坐标 */
#include <stdio.h>
#include <math.h>
#define RAD_TO_DEG (180/(4*atan(1)))
typedef struct polar_v
{
double magnitude;
double angle;
} POLAR_V;
typedef struct rect_v
{
double x, y;
} RECT_V;
POLAR_V rect_to_polar(RECT_V);
int main(void)
{
... | [
"zhb896579388@163.com"
] | zhb896579388@163.com |
1f28eb9caeb44964075fe84769a4a41d80ff7042 | 475edcc050edb226517cd917f2259cb6f49d2f61 | /my_package/build/rosidl_generator_c/my_package/msg/rosidl_generator_c__visibility_control.h | a48976fc4d8692ab262408c0a86bcd2ea1d93615 | [] | no_license | JRestovich/ROS2-RadarDrivers | f10787baa20abeadb750d68b4b8af07a25870c1a | d03ae2c3ec41e8e025e031a6331130916a373364 | refs/heads/master | 2023-09-05T18:37:40.431217 | 2021-10-01T18:23:18 | 2021-10-01T18:23:18 | 412,576,540 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,479 | h | // generated from rosidl_generator_c/resource/rosidl_generator_c__visibility_control.h.in
// generated code does not contain a copyright notice
#ifndef MY_PACKAGE__MSG__ROSIDL_GENERATOR_C__VISIBILITY_CONTROL_H_
#define MY_PACKAGE__MSG__ROSIDL_GENERATOR_C__VISIBILITY_CONTROL_H_
#ifdef __cplusplus
extern "C"
{
#endif
... | [
"jrestovich@plantium.com"
] | jrestovich@plantium.com |
7a1bb80db94227d7b963f7f751a804cb59f5cb7d | 71e5f96a29f5d643ab888b37677d38c33f8d765d | /d/antioch/valley/rooms/g1.c | b793120cf0c14fbc62c91613ee920f3d13dff859 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Cherno-SuS/SunderingShadows | 5f755fbebb79dc0b9d1c2a0541408be4afeb8b67 | c3b4370beb2c4351ecc60826850c94892a42b685 | refs/heads/main | 2023-04-21T09:52:14.580024 | 2021-03-23T12:09:55 | 2021-03-23T12:09:55 | 349,490,686 | 0 | 0 | NOASSERTION | 2021-03-23T12:09:56 | 2021-03-19T16:40:12 | null | UTF-8 | C | false | false | 374 | c | #include <std.h>
#include "../valley.h"
inherit GRASS;
void create()
{
::create();
set_long(::query_long()+"%^GREEN%^There is a large tree to the north.\n"
);
set("night long",query("night long")+"%^GREEN%^There is a large tree to the north.\n"
);
set_exits( ([
"west" : ROOMS+"v23",
"east" : ROOMS+"g2",
"sout... | [
"law@shadowgate.org"
] | law@shadowgate.org |
88f0131963dddb7743a2fe92b1c1dda5666570a9 | 2ac4f88613498e7a4e13172a58f0d9e083269c4e | /Practica3/pmm-secuencial.c | 45bbc2958abca3886e6e0db289e568c6d99af57f | [] | no_license | Joselmo/Arquitectura_Computadores_p | 6d57744f06b7e095dea0f269089d7d8358b7ffc9 | 34f92cadcc05c2b54c2f3a6b55214916bfc62791 | refs/heads/master | 2021-01-20T11:19:13.481900 | 2016-06-01T09:28:32 | 2016-06-01T09:28:32 | 58,916,446 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,591 | c | #include <stdlib.h> // biblioteca con funciones atoi(), malloc() y free()
#include <stdio.h> // biblioteca donde se encuentra la función printf()
#include <time.h> // biblioteca donde se encuentra la función clock_gettime()
#ifdef _OPENMP
#include <omp.h>
#else
#define omp_get_thread_num() 0
#endif
/**
* Documentacion... | [
"joselmo@correo.ugr.es"
] | joselmo@correo.ugr.es |
cfc9b5c9d135a4895a512253f0759f4077093f9e | 048ced2396f88cbfffae4b6a9637a1e2ef749a8b | /Programacion C/Practica15/Practica15.c | 993ff2d4629c5831f504b331ee8e0082bed6912d | [] | no_license | gercorona/UNAM-CERT | d1e3eb0e763e1aa32f26c535606c22df092319de | 3a2c79d65f386c8eedcaa8c398f731efa46c1eef | refs/heads/master | 2022-02-09T14:14:23.549262 | 2022-02-04T21:14:49 | 2022-02-04T21:14:49 | 113,470,074 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,187 | c | //Preprocesador
#include <sqlite3.h>
#include <stdio.h>
//programa principal
int main(void) {
sqlite3 *db;
char *err_msg = 0;
//Se intenta abrir la base de datos Becarios.db, si no existe la crea.
int rc = sqlite3_open("Becarios.db", &db);
//si no se puede abrir la base de datos, muestra error.... | [
"noreply@github.com"
] | gercorona.noreply@github.com |
2a6c8bd90df4b15e3e30b6351445798dbfc49f04 | 0a0de8ecd8322ff2957618344d0de8cd9555a7fa | /tuya_ble_app/src/sdk/tuya_uart_common_handler.c | 503d75371c12f18560ff3d9dc950d05a2fbc268a | [
"MIT"
] | permissive | tuya/tuya-iotos-embeded-demo-ble-smart-neck-massager | b5367294e7370b3dff50f074ea76edf057aef34f | 50edeb5c009094253c27dfe836d068ed591b1e86 | refs/heads/master | 2023-06-10T16:45:07.131376 | 2021-06-22T02:10:19 | 2021-06-22T02:10:19 | 373,450,479 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,359 | c |
#include "tuya_ble_common.h"
#include "tuya_ble_mem.h"
#define DP_LEN_MAX 220
#define UART_HEAD_NUM 6
#define UART_FRAME_MAX (220+4+7)
#if 0
MYFIFO_INIT(uart_rx_fifo, UART_FRAME_MAX+2, 4);
MYFIFO_INIT(uart_tx_fifo, 255, 5);
#endif
void tuya_uart_common_send_bytes(u8* buf,u16 len)
{
tuya_bsp_uart_send_by... | [
"liang.zhang@tuya.com"
] | liang.zhang@tuya.com |
27266961d3e46c8d3a559dbd4d8d6ffbbe3ef87f | e349beeaf9db5c5ac239c80a70d02b2b5ae7b4cb | /graphics/GraphicsMagick/patches/patch-coders_png.c | a5994f391384cc9723d8de013548504879d88c15 | [] | no_license | johanhenselmans/pkgsrc | 82f602556751884b70b0d88c53ea34552ab92256 | 5a1f5301de21a2e0cdfc27c82ac11c2ccbabc2eb | refs/heads/master | 2021-01-20T21:29:27.536956 | 2012-08-24T01:27:17 | 2012-08-24T01:27:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,665 | c | $NetBSD$
Tom Lane (tgl@redhat.com) found an issue in ImageMagick. Basically
CVE-2011-3026 deals with libpng memory allocation, limitations have been
added so that a bad PNG can't cause the system to allocate a lot of
memory causing a denial of service. However on further investigation of
ImageMagick Tom Lane found tha... | [
"root@crater.dragonflybsd.org"
] | root@crater.dragonflybsd.org |
b25ed4aa98b92f76d689d11d1b667d3d50cd92bf | 81a2571dece5d98e92adb9148703a35fb6d61c98 | /430/UCOS/Software2/uCOS-II/Ports/MSP430/IAR/Ex1-C-Spy/os_cfg.h | f4eaff8e26babaf5396b7cddd36f54b35f9a4c17 | [] | no_license | weimingtom/MCU | ce77228539e7db3c858b58c42c93db1188343175 | c9565039fee7c24d7f83859342b092373fdd78d6 | refs/heads/master | 2020-04-12T08:22:26.526533 | 2014-09-01T00:34:47 | 2014-09-01T00:34:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,268 | h | /*
*********************************************************************************************************
* uC/OS-II
* The Real-Time Kernel
*
* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
* ... | [
"zhaoyongke@yeah.net"
] | zhaoyongke@yeah.net |
e2d42e4761aaf0436458784fb12784d36fb2f8b8 | 7a48062abbc59fa7ba1072ed020146b2be95f5d6 | /d09/ex05/ft_button.c | 15077ccf62323bbb7886495644e389763321bd62 | [] | no_license | Dashtego/42januarypiscine | d68d3a4783e52847219ea1afb1112e6a4b036b3e | a55b5e3748c2c54b963a217716bd289043168de4 | refs/heads/master | 2021-01-09T05:34:57.968094 | 2017-02-03T04:59:55 | 2017-02-03T04:59:55 | 80,795,897 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,134 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_button.c :+: :+: :+: ... | [
"imelvill@e1z1r2p6.42.us.org"
] | imelvill@e1z1r2p6.42.us.org |
395fdd48c9ad3980be735a9f9b0c630da4e8c1f5 | f03a3f5e9e00857d6ebc0aa0c8f51f8f319de688 | /DataStructure/BinaryTree/BinaryTree.h | b83ca23bb740a51720de04a6631d67c7ccc9c9a2 | [] | no_license | endlessdev/TIL | c9b7942a7bec999b2f1826f2cb1a1b5c68f20196 | eafe308b7f2c545c80a5ea707f426e33d52cd1b2 | refs/heads/master | 2020-04-06T03:38:48.975881 | 2017-01-24T05:48:26 | 2017-01-24T05:48:26 | 63,153,884 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 905 | h | #ifndef __BINARY_TREE_H__
#define __BINARY_TREE_H__
typedef int BTData;
typedef struct _bTreeNode{
BTData data;
struct _bTreeNode * left;
struct _bTreeNode * right;
}BTreeNode;
// 이진트리 노드를 생성해서 그 주소값을 반환한다.
BTreeNode * MakeBTreeNode(void);
// 노드에 저장된 데이터를 반환한다.
BTData GetData(BTreeNode * bt);
// 노드에 데이터... | [
"ysw0094@gmail.com"
] | ysw0094@gmail.com |
f462bba8c3a0ec4397cd7d75c52ff8224a4a0a31 | d8a08a35aa0f5234201ca8e44107cb742dd33a69 | /c1_s2/Lab3/Exercise1.c | 4b50d7911668810e351f77f0def12d90ad799aab | [] | no_license | Troi51/Study | ba8af083e9111f9365a213371e9e0095946cc5e0 | 0be98472cf3cef21559e75e1d40d33806a2974a2 | refs/heads/master | 2023-04-28T19:22:43.918659 | 2021-05-08T09:31:44 | 2021-05-08T09:31:44 | 358,862,757 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,444 | c | //Лабораторная работа №3
//Студент ИВТб20з-1 Ряжкин Дмитрий Андреевич
//20.04.2021
#include <stdio.h>
#include <locale.h>
#include <math.h>
long int i_a, i_b, i_c, //Переменные для хранения коэффицентов, введённых пользователем
i_check = 0; //Переменная, предназначенная для определения типа уравнения
in... | [
"troi51@yandex.ru"
] | troi51@yandex.ru |
8e0d2f163975f79c1ca100e89f6e32f50b9dc2be | 52d1aeda3c62ab766e04bb70b71428c446f76d7a | /code practice/test_7/test_7/test1.c | db83eddf18cddb7717b2f84f80713724dda8c434 | [] | no_license | tinalny/cpp_project | b886ef4e4b153f3b974f6f497e91981707181579 | 534dfd652e21477abb19bc150b68628f4c41234e | refs/heads/master | 2022-09-18T10:03:47.732216 | 2020-06-06T14:04:41 | 2020-06-06T14:04:41 | 183,779,280 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 463 | c | #define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<stdlib.h>
int a = 1;
void test()
{
int a = 2;
a += 1;
}
int main1()
{
#if 0
int m, n;
for (m = 0, n = -1; n = 0; m++, n++)
{
n++;
}
#endif
#if 0
test();
printf("%d\n", a);
#endif
#if 0
int y = 10;
int x;
x = y++;
printf("x=%d,y=%d\n", x, y)... | [
"1157143244@qq.com"
] | 1157143244@qq.com |
5c433a07a7817d35a1133ad9b76e71add4045ea2 | 901c2b012091810c6cb63e6afb92c7f3b3150996 | /Classes/Native/UnityEngine_UnityEngine_RuntimeAnimatorController.h | ca6a4b80b30af2646672232cc0c40cab0930c08e | [] | no_license | 8BitRain/photoshphereSwift | 83f4fce894b91d07ba95060d4e3b194cfc74b5aa | 57ef01c804757d38bda5258f1d188db05ab1d563 | refs/heads/master | 2021-01-13T00:40:51.272582 | 2015-11-14T06:39:29 | 2015-11-14T06:39:29 | 46,164,639 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 291 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "UnityEngine_UnityEngine_Object.h"
// UnityEngine.RuntimeAnimatorController
struct RuntimeAnimatorController_t258 : public Object_t89
{
};
| [
"8BitRain@gmail.com"
] | 8BitRain@gmail.com |
82fba5448388401c13550e9294d38bbbeebca73d | a4aefe250debffaddb9e97cca1d030f7381e5e1b | /no-strict/ErrMultiplicativeExpression02.c | 6805c86eb49ab3215fbcf6aa4aef46dd1c315671 | [
"Apache-2.0"
] | permissive | silveira24/C-Parser | ee64653d5d8883284b0ac9c6dbc9e60a2f5475e9 | f3972a1e87963135a088b07b9e4d5ceb79aa6510 | refs/heads/master | 2020-12-21T21:47:13.601986 | 2020-09-07T20:57:24 | 2020-09-07T20:57:24 | 236,572,909 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 44 | c | int main() {
int a = 3 / ;
return 0;
}
| [
"gabrielsantossilveira@hotmail.com"
] | gabrielsantossilveira@hotmail.com |
f9ef3d4c885018d84b04ff91f188b8893f1f6f71 | d5fd91046c11d014cca2d0e7c8df123ce2be4096 | /Using TCP-IP-to-Internet-src/TCPIP_3books/TCPIP-Vol2/shell/worm/referee.c | 0cf66250856b59036fa23b98c48bcd54c4b31a5f | [] | no_license | TOMsworkspace/Linux-Network-Program-Samples | 84f8c7995e4a209c03ed900cdd81d9751b66183b | d89946ba3834e7851d8d3c393a0a098560b85554 | refs/heads/master | 2023-03-17T22:58:18.779885 | 2018-05-01T04:06:32 | 2018-05-01T04:06:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,385 | c | #include <conf.h>
#include <kernel.h>
#include <io.h>
#include <tty.h>
#include "game.h"
int scoreworm;
int numworm;
int scorerobot;
int numrobot;
#define WORM 1
#define ROBOT 0
#define SCOREFORMAT "%4d"
referee()
{
scoreworm=numworm=scorerobot=numrobot=0;
printstring("worm targets:... | [
"yanyuneternal@163.com"
] | yanyuneternal@163.com |
e2b2c9bc8d1154fd7745a36d01711507ba9e2e44 | d697f2b7fe38cb823dd1271d50d12e08f8ccf1c8 | /example-project/lib/TivaWare/driverlib/adc.h | 205d663086e34893e9a7fcb7c46d8a42c44c2901 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-proprietary-license",
"BSD-3-Clause"
] | permissive | ElectronVector/tiva-launchpad-tdd | 5a67a4129ce1138ca5a1cc465fabb2658ea24617 | 671e1bab2572151a5293b5060100e585fd9fdecc | refs/heads/master | 2021-07-16T10:13:26.213495 | 2021-02-03T16:02:21 | 2021-02-03T16:02:21 | 38,548,311 | 6 | 1 | MIT | 2021-02-03T16:02:21 | 2015-07-04T21:34:12 | C | UTF-8 | C | false | false | 17,416 | h | //*****************************************************************************
//
// adc.h - ADC headers for using the ADC driver functions.
//
// Copyright (c) 2005-2015 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Redistribution and use in source and binary forms, with... | [
"matt@chernosky.net"
] | matt@chernosky.net |
00243f36d52c2f965c7b29bbdc55513b5c6caf33 | f388c18c76e52e9ddf24797f219e29ef310b1508 | /mod1/sum.c | 5190decefcb82fefd980e1c37c7f3e326c184f03 | [] | no_license | kx500kid/cs2250S19 | 1d3deef620b9099bd6d914d6521aee51ca61788e | b079c4f3e2bda2b5fc22f97a463cc47ee1c77659 | refs/heads/master | 2020-04-17T04:53:58.101993 | 2019-02-12T16:00:16 | 2019-02-12T16:00:16 | 166,251,841 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 572 | c | //Define two integers to add together
#include<stdio.h>
int main()
{
// Task: Define two integers
// Display their valuses
// Display the sum of them
int first = 36;
int second = 74;
int sum = first + second;
Scanf("%d", &first);
printf("Please enter another integer valuse\n:);
// To capture user input... | [
"morgansorensen@mail.weber.edu"
] | morgansorensen@mail.weber.edu |
9a39cd4925f51fd948fb2ca344e830c74b775a71 | 4c381a169d42870f4789cc6e5e5231536a98ca11 | /prob04/src/main_palindrome.c | d1af20c17496c211f12f54e28825baf3e93ab9ee | [] | no_license | QuentindiMeo/Project-Euler | aa552c597853ee31b11d7afe40496e30822a343a | 2730ccc49b04cc624bfde5a64d8c0f37dd9b1c73 | refs/heads/master | 2022-09-23T14:18:04.077003 | 2022-09-09T19:54:26 | 2022-09-09T19:54:26 | 224,872,474 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 543 | c | /*
** PERSONAL PROJECT, 2019
** palindrome
** File description:
** main palindrome
*/
#include <stdlib.h>
#include <stdio.h>
#include "my.h"
int is_palindrome(char const *str);
int main(void)
{
uint res = 0;
char *temp = NULL;
for (uint i = 1; i < 1000; i++)
for (uint j = 1; j < 1000; j++) {
... | [
"QDM@localhost.localdomain"
] | QDM@localhost.localdomain |
9a6295025e5806534a92defde0ac1440f6a8ac09 | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/libvpx/mips-dspr2/vp9_rtcd.h | 47f2ca2985c9d5865575a2f61aada88a45f731ab | [] | no_license | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C | false | false | 48,015 | h | #ifndef VP9_RTCD_H_
#define VP9_RTCD_H_
#ifdef RTCD_C
#define RTCD_EXTERN
#else
#define RTCD_EXTERN extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
#include "vpx/vpx_integer.h"
#include "vp9/common/vp9_enums.h"
struct macroblockd;
struct macroblock;
struct vp9_variance_vtable;
#define DEC_MVCOSTS int *mvjco... | [
"allegrant@mail.ru"
] | allegrant@mail.ru |
a5493c63874af53e9379f7c6f8bd59c5e1d422e0 | 50c906757f4f1da97db9dc08aa7577e7d192f0ae | /cf/510A.c | 97fc046c570eee74aa9e8eded78d04d4e2e1493a | [] | no_license | dhruvkhattar/Algorithmic-Codes | 2f9d54521f552cf4f4c801a1524ab23f1c7904d4 | 0291832742a62865a8d74bb1a3401353fe1f70b2 | refs/heads/master | 2021-06-05T17:48:57.608905 | 2016-09-13T08:26:13 | 2016-09-13T08:26:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 331 | c | #include<stdio.h>
int main()
{
int m,n;
scanf("%d%d",&n,&m);
int i,j;
for( i=0 ; i<n ; i++ )
{
for( j=0 ; j<m && i%2==0 ; j++ )
printf("#");
if( i%4==3 )
printf("#");
for( j=0 ; j<m-1 && i%2==1 ; j++ )
printf(".");
if( i%4==1 )
printf("#");
printf("\n");
}
r... | [
"dhruv@khattarindia.com"
] | dhruv@khattarindia.com |
104b1d7bde319bc536d6a53ea758b3979302eb29 | 3b88d7eb533a5bd934ac0eaba5a2684741bd02b6 | /inc_h/AllDeal.h | b1d592f11b3a9e2527cc8474f9df389313c56273 | [] | no_license | xiangxud/PianHang_Yao_A3 | de46fd6160d83994e9e6c578e6a82e7676ed943d | cad94c048bfaaf9cce54f68c34179e124ca8eb63 | refs/heads/master | 2020-07-26T00:09:21.697952 | 2017-07-19T08:14:52 | 2017-07-19T08:14:52 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,994 | h | #ifndef __ALLDEAL_H__
#define __ALLDEAL_H__
#include "system.h"
#include "System_Init.h"
/****************** 频率变化幅值 ******************/
#define MOTOR_ONE_LIMIT11 100 //腰部电机 1 软起动频率变化幅值
#define MOTOR_ONE_LIMIT12 300 //腰部电机 1 软停止频率变化幅值
#define MOTOR_ONE_LIMIT21 40 //偏航电机 软起动频率变化幅值
#d... | [
"1341189542@qq.com"
] | 1341189542@qq.com |
e8f906173543c3bb17da8501fd5407cadd0b1dff | 3240fd556c9ac29106559f677c48b565a98401bc | /navy-apps/libs/libminiSDL/src/video.c | cdf8ca6d316e338c8ff45b684201031abb854554 | [] | no_license | Tilnel/ics2020 | e76a72fb68a4b32ad110b1f79d48fea12cb76259 | dcd3a6fa147722928e64c09f62810c59169b7cac | refs/heads/master | 2023-02-23T03:47:30.226182 | 2021-01-24T14:35:27 | 2021-01-24T14:35:27 | 332,528,849 | 1 | 0 | null | 2021-01-24T18:56:13 | 2021-01-24T18:49:17 | C | UTF-8 | C | false | false | 10,016 | c | #include <NDL.h>
#include <assert.h>
#include <sdl-video.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static void ConvertPixelsARGB_ABGR(void *dst, void *src, int len);
void SDL_BlitSurface(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst,
SDL_Rect *dstrect) {
assert(dst ... | [
"191240046@smail.nju.edu.cn"
] | 191240046@smail.nju.edu.cn |
77de099156cb6de5dc068d9902b8476684c0ea4a | 9e964b10535c63dc31ad8824b1f69d93f17b4609 | /wsr_cdeque.c | c00ec3f35c60ad73976963989fad7dbf11bc292e | [] | no_license | ChandanReddyG/wsr | 99de8bbcf5003b1f1144de0fc8ad0586ac48a2bc | a27aefafb9dc02dde64ba91349c5c744f0e5f5da | refs/heads/master | 2021-01-19T17:55:49.570050 | 2014-05-23T14:53:12 | 2014-05-23T14:53:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,147 | c | #include <stddef.h>
#include "stdatomic.h"
#include "papi-defs.h"
#include "wsr_cdeque.h"
#include "wsr_task.h"
#include "wsr_trace.h"
#define MAX_NUM_OF_THREADS 16
static int num_threads = 1;
static cdeque_p cdeques[MAX_NUM_OF_THREADS];
//#define NATIVE 1
/* Push element ELEM to the bottom of the deque CDEQUE. Inc... | [
"Boubacar.Diouf@inria.fr"
] | Boubacar.Diouf@inria.fr |
a7345fde1a159d405d8fbe471b0e154876bca7bf | 0200e8e5f91719cc5cfe810ea3c3fc06c7d9987e | /script_mp_rel/herbal_plants.c | 9d9f39ce6a7d71182ab7b69dbf20a5fa4fa4c2c3 | [] | no_license | JayKoZa/RDR2-Decompiled-Scripts | 9ded02ca0e1973f88a3a1e05a2003b78d86f1a0a | a111493215b9db0b11c8f477816280f412c8b2de | refs/heads/master | 2021-05-19T15:54:26.705087 | 2021-03-03T10:23:18 | 2021-03-03T10:23:18 | 252,830,801 | 13 | 5 | null | null | null | null | UTF-8 | C | false | false | 25,655 | c | #region Local Var
var uLocal_0 = 7;
var uLocal_1 = 0;
var uLocal_2 = 0;
var uLocal_3 = 0;
var uLocal_4 = 0;
var uLocal_5 = 0;
var uLocal_6 = 0;
var uLocal_7 = 0;
var uLocal_8 = -1;
var uLocal_9 = 0;
var uLocal_10 = 0;
var uLocal_11 = 0;
var uLocal_12 = 0;
struct<2> Local_13 = { 0, 0 } ;
var uLocal_15 = 0... | [
"jaykoza@jaykoza.de"
] | jaykoza@jaykoza.de |
b430a5d6c4a74a6c87ec0244c3ca2ade122e4eab | 4fe82a8372a26a10a2dd57a5dc8d75b2ef30bb3a | /dfs.h | fda6b9c58076f4250e7e4b715f06d9d1edfa84d8 | [] | no_license | a5221985/algorithms | 7f683467bc554617ea6254e777cd5b70b2b7ba60 | 99a71a588039bd9ef81b3cf4900085155cedf02c | refs/heads/master | 2022-06-18T15:40:24.001267 | 2022-05-29T00:57:28 | 2022-05-29T00:57:28 | 193,235,881 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 173 | h | #include "stack.h"
void dfs(Node *root);
void algorithm(Stack **S);
Node* generate_left_node(int data, Node **parent);
Node* generate_right_node(int data, Node **parent);
| [
"technical.rescuers@gmail.com"
] | technical.rescuers@gmail.com |
948dc72d2c8587294b4b8f0a557c8e623e699018 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/drivers/wdm/usb/driver/isousb/sys/isowmi.c | d41990c05f01aa051575e55397fc5de518d32c6d | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C | false | false | 16,355 | c | /*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
isowmi.c
Abstract:
Environment:
Kernel mode
Notes:
Copyright (c) 2000 Microsoft Corporation.
All Rights Reserved.
--*/
#include "isousb.h"
#include "isopnp.h"
#include "isopwr.h"
#include "isodev.h"
#include ... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
ea6085a1f32470e2f05a763b23937c3d7043bc85 | 2a31ece07bdac41961bc521125611082aea3bd0b | /loco_comm.c | f7fa339724dd13bf08127aaa5614e81bfec51225 | [] | no_license | cslotterback/Embedded_Train | 13be3461bc6ee659e95e848e052ae3e3c629ea3d | f043c0f1b4d2bced7b850429e14883a1719cca80 | refs/heads/master | 2018-12-28T00:33:59.122826 | 2013-07-19T00:34:16 | 2013-07-19T00:34:16 | 11,516,316 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,042 | c | #include "loco_comm.h"
#include <stdio.h>
#include <stdlib.h>
int8_t isValidOpCode(uint8_t opCode) {
switch (opCode) {
case OPC_LOCO_ADR:
case OPC_LOCO_SPD:
case OPC_SL_RD_DATA:
case OPC_MOVE_SLOTS:
case OPC_LOCO_SND:
case OPC_LOCO_DIRF:
case OPC_IDLE:
... | [
"cslotterback@gmail.com"
] | cslotterback@gmail.com |
a4516bc3d88e36892cba48bea75418d8ae831468 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/18/1121.c | ab77bb239d17514761645fec9b858e83447b6c2d | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 973 | c | int main()
{
int a[101][101]={0},n,i,j,k,p,sum;
cin>>n;
for(k=1;k<=n;k++)
{
for(i=1;i<=n;i++)//??
for(j=1;j<=n;j++)
cin>>a[i][j];
sum=0;
for(p=n;p>=1;p--)
{
for(i=0;i<=p;i++)//??0??0?????/????????????????
{
a[0][i]=99999;
a[i][0]=99999;
}
for(i=1;i<=p;i++)//?????????... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
48b7d178a6a163a9a51c2b1dbd9c281acbda8aac | af7977991477325ddc604b6d3e2ac3cb4aa29337 | /FlappyBirdGame3D2.0/Temp/il2cppOutput/il2cppOutput/System_System_Text_RegularExpressions_MatchEvaluato172888125.h | 040adfda1d9317e066866687cf9f749db90e2d09 | [] | no_license | jpf2141/FlappyBird3D | b824cf5fac6ca3c5739afc342b659af1f2836ab9 | fe4e9c421ec8dc26a7befd620f9deaf3c6361de5 | refs/heads/master | 2021-01-21T13:53:25.062470 | 2016-05-06T02:39:28 | 2016-05-06T02:39:28 | 55,712,365 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 584 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.String
struct String_t;
// System.Text.RegularExpressions.Match
struct Match_t939027474_0;
// System.IAsyncResult
struct IAsyncResult_t_1647744885_0;
// System.AsyncCallback... | [
"jpf2141@columbia.edu"
] | jpf2141@columbia.edu |
7d9525b1ae6fa59c7a9b294089bf3b05da6a0c67 | 5b2ecd32af8270bbd737e0d6ab92ed1ca2116df3 | /src/interface/ft_init_value_aff_data_plan_sd.c | 3959191cf5ce2850cb5d72395122619e0a69b923 | [] | no_license | prossi42/RT | f999df1dd9042070c841ff2e7b24256cd678e960 | aec6ff5994a1a1b2d45c728f35a874b82420d4ed | refs/heads/master | 2021-03-24T12:43:30.356132 | 2018-05-26T20:57:44 | 2018-05-26T20:57:44 | 120,277,057 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,598 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_init_value_aff_data_plan_sd.c :+: :+: :+: ... | [
"prossi@e1r11p11.42.fr"
] | prossi@e1r11p11.42.fr |
74749bafa17e80bc42fde9179f984ca27e308558 | 05b458a94b13328c4ab0bb474513e69c5f253ec0 | /analysis-sources/obs-analysis/_cppstats/obs-studio/plugins/win-capture/game-capture-file-init.c | a09bda11f64f2531495b55dbb9b8932d8c510ddc | [] | no_license | paulobernardoaf/dataset-files | c7b3a5f44f20a6809b6ac7c68b9098784d22ca52 | 6cc1726ee87e964dc05117673e50e3e364533015 | refs/heads/master | 2022-04-23T06:52:15.875641 | 2020-04-25T18:28:48 | 2020-04-25T18:28:48 | 253,626,694 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,765 | c | #include <windows.h>
#include <strsafe.h>
#include <shlobj.h>
#include <aclapi.h>
#include <sddl.h>
#include <obs-module.h>
#include <util/windows/win-version.h>
#include <util/platform.h>
#include <util/c99defs.h>
#include <util/base.h>
static bool has_elevation_internal()
{
SID_IDE... | [
"paulomax9002@gmail.com"
] | paulomax9002@gmail.com |
5c0c5e622c3533b7f2db841cf90fd0d3fccbbd6f | 0fbc383732624825681b62c4f1fba62f8d7bfa90 | /pr40.c | dbf42b9e2c791dea1590853a9a2ac742c2f1108b | [] | no_license | Divyanshushandilyakiet/C-Language | 6336977891fe1b62c87baebf9891a7b027c116bd | b53917839f72d1c402d445998f16af69c3642c66 | refs/heads/main | 2023-06-15T08:40:47.879784 | 2021-07-16T17:39:02 | 2021-07-16T17:39:02 | 301,373,069 | 1 | 1 | null | 2021-07-03T14:09:13 | 2020-10-05T10:37:20 | C | UTF-8 | C | false | false | 290 | c | // Ramesh's gross salary
#include<stdio.h>
int main(int argc, char const *argv[])
{
float a,b,c,d;
printf("Enter the basic salary of ramesh\n");
scanf("%f",&a);
b=(40*a)/100;
c=(20*a)/100;
d=a-(b+c);
printf("Ramesh's gross salary is %f ",d);
}
| [
"noreply@github.com"
] | Divyanshushandilyakiet.noreply@github.com |
e08e061c53fbc281430155f9cf6470c6771aed29 | 17ccd596bc03f52ab782857595d9d9ac2c5254ff | /test/c_compiler/scope_8/scope_8.c | 357846e8562ef8944f13291edc0272578feee8fa | [
"MIT"
] | permissive | martinferianc/C90Compiler-EIE2 | c67a418fb8579fceb3f320da5918f21fbb11b546 | 498cee1b2ebc43fb17342f46c1939bdddd20b2cf | refs/heads/master | 2021-03-27T14:53:47.120751 | 2019-07-29T14:00:11 | 2019-07-29T14:00:11 | 86,478,276 | 12 | 2 | null | null | null | null | UTF-8 | C | false | false | 200 | c | int i;
int main()
{
int p = 10;
i = 5;
if (i==5){
int i;
int p;
{
{
int i;
p = 20;
}
int i;
}
}
return i +p;
}
| [
"ferianc.martin@gmail.com"
] | ferianc.martin@gmail.com |
eae7aad795ec5d00feaa15916abdcb8e6c07adf6 | 194756c0c745ea4e004cee57f823ba227cf25cdd | /week6_undirect_graph/metro_station/adjgraph.c | 05e8abb356bca78c6faf4bedc7ff222da00c4c89 | [] | no_license | duyleomessi/datastructure_advance | 3de2333444e4c27346c99801387982fbac8fac32 | da16132b767a2cda13a79fd45834d3f8128f137d | refs/heads/master | 2021-09-04T02:20:10.271356 | 2018-01-14T15:31:12 | 2018-01-14T15:31:12 | 110,231,108 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,460 | c | #include "adjgraph.h"
Graph createGraph()
{
return make_jrb();
}
int insertEdge(Graph g, Jval v1, Jval v2,
int (*cmp)(Jval, Jval))
{
Graph found;
Jval j_adj_list;
Jval j = new_jval_v(NULL);
found = jrb_find_gen(g, v1, cmp);
if(found == NULL){
/* if not found
create a new adjacent list which v2 is ad... | [
"duyleitbka95@gmail.com"
] | duyleitbka95@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.