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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3c29213013004ce7db05feeb4f55ee440c50f522 | c8a2cb5e1af24dc5323bda70e547cd481b89bb36 | /mud/usr/System/sys/channeld.c | 803e73b5e8a5707e4c79cb3c333095c4e463f38b | [] | no_license | hambone20/mudlib | 2f41e9a534b89cabc57d60e2ca8dcd03061d813b | 99a3b365f74560809f43f1b327e025378cf9c4d7 | refs/heads/master | 2021-01-23T08:38:37.108629 | 2014-03-26T17:26:14 | 2014-03-26T17:26:14 | 9,843,829 | 4 | 1 | null | 2014-11-06T19:44:18 | 2013-05-03T20:18:27 | C | UTF-8 | C | false | false | 5,077 | c | /**
* channeld
* this daemon handles all channel functionality, it may talk with logd
* to make more useful reporting of errors and events
*/
#include <kernel/user.h>
#include <type.h>
#define CHANS ([ "wiz" : ({}), "myan" : ({}) ])
mapping backlogs, channels; /**< a mapping of the backlogs of channels, and tuned ... | [
"hambone20@gmail.com"
] | hambone20@gmail.com |
4928eb5fb0e5ed4a594e1152f19b72d3a973a40f | 5055743d91d15044bcebe6c00b67186dbebe9742 | /Advance_Concepts/Semaphores/main.c | fd33fbf879dec81b35bcde9f58beaa15d2bc5b64 | [] | no_license | pratik-practice-work/Code_Practice | 8d6ceda3f51b2e0242a74f99574b8ff3b3f61afa | dbe81860d5ae4ac1575a35e0d2aa78e905b0ddea | refs/heads/master | 2022-03-11T00:00:24.617949 | 2019-08-30T10:34:53 | 2019-08-30T10:34:53 | 207,804,919 | 1 | 0 | null | 2019-09-11T12:17:41 | 2019-09-11T12:17:41 | null | UTF-8 | C | false | false | 1,875 | c | /** **************************************************************************************************
* Once semaphore is initiliaze it can not be or shoulden't be accessed directly, only via two atomic
* operations : 1) wait 2)signal
*
* To solve critical section problem
* To decide order of the execution among ... | [
"37364964+pratikp2@users.noreply.github.com"
] | 37364964+pratikp2@users.noreply.github.com |
ad25b11853387fbdc8705d682357438d41b09b0d | b2a0bc03d73b670c657ab03768eb41756bb0c0a4 | /Silicon/Intel/WhitleySiliconPkg/Pch/SouthClusterLbg/Include/Register/PchRegsEva.h | 77ec6284a542a32b8d1dbcdbe1ecbb8ba14dc2a3 | [
"BSD-2-Clause-Patent",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown",
"BSD-2-Clause",
"FreeBSD-DOC",
"Zlib",
"BSD-3-Clause",
"Python-2.0",
"DOC",
"MIT"
] | permissive | zhujun74/edk2-platforms | 69566361c00a67c03a30e600c3e78f7dfa822284 | 9131d63e08b6845d28778a73c719ae3ef08e42f2 | refs/heads/master | 2023-08-14T15:17:04.432766 | 2023-07-13T05:29:38 | 2023-07-17T05:31:23 | 142,731,135 | 0 | 0 | BSD-2-Clause | 2018-07-29T04:38:42 | 2018-07-29T04:38:42 | null | UTF-8 | C | false | false | 5,722 | h | /** @file
Register names for PCH Eva devices.
Conventions:
Prefixes:
Definitions beginning with "R_" are registers
Definitions beginning with "B_" are bits within registers
Definitions beginning with "V_" are meaningful values of bits within the registers
Definitions beginning with "S_" are registe... | [
"nathaniel.l.desimone@intel.com"
] | nathaniel.l.desimone@intel.com |
f9a94e09f5135d129ff96f54cbd9ca646fec5bf6 | 322e4c7b0608f5fa26522c62b45a891cc732a3c9 | /seb.c | 38c2c357ca98cce47dd26887cce7aaa505b3220e | [] | no_license | denniskip46/function | 68ce5305416bbb5b8830d567edd636bbd0757494 | 6e7d48967d66730b1e97022dff4ee69d0ca8af37 | refs/heads/main | 2023-06-14T15:34:40.815308 | 2021-07-09T10:10:13 | 2021-07-09T10:10:13 | 384,397,889 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 287 | c | //program of function
#include<stdio.h>
int main()
{
int area,l;
printf("enter l:");
scanf("%d",&l);
area=3.142*l*l;
printf("area of a circle%d",area);
return 0;
}
int circle(int l)
{
int area_of_a_circle;
area_of_a_circle=3.142*l*l;
return area_of_a_circle;
}
| [
"noreply@github.com"
] | denniskip46.noreply@github.com |
3cff737c967c1580b660d93c2b79f5cf31653d81 | 2aee47c385f8808857a89b721dad94e51b192f0e | /deck_of_cards.c | 408eb79b1a263dec66913538a4a4072ad3156651 | [] | no_license | shivamshekhar/windows.h-Examples- | f3077c74a14f38b50912d37d2619dd6986998ac8 | 5b787025ffd7ed03441f9da258bd3b586ff4e7f7 | refs/heads/master | 2021-01-10T03:47:22.446970 | 2016-03-12T08:38:39 | 2016-03-12T08:38:39 | 53,721,582 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 7,008 | c | //macros and header files,
#include<stdio.h>
#include<windows.h>
#define TEN 12
#define JOKER 2079
#define ACE 65
#define KING 75
#define QUEEN 81
#define JACK 74
#define HEART 3
#define SPADE 6
#define DIAMOND 4
#define CLUB 5
#define _NUM(a) (a+48)
int main()
{
int allcards[14]={65,50,51,52,53,54,55,56,57,12,74,8... | [
"shivamshekhar299@gmail.com"
] | shivamshekhar299@gmail.com |
5dcb8ca49b14ca6018035ca4d8c212482a8b9f2c | 25fae58fad1a4b2e3a8036ba26b08ae2da95ed55 | /1089insertormerge.c | 07c9a3a080bdf98cff3843aa6573b85082156f8c | [] | no_license | wxyhhh/pat-advanced | d43ce226b3c253abbf8172d019b7f84f4a925123 | 20692b08280272b6a1a33d89bc594f12ce7b1dbd | refs/heads/master | 2020-03-24T21:21:59.565086 | 2018-09-04T11:33:48 | 2018-09-04T11:33:48 | 143,028,073 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,281 | c | #include <stdlib.h>
#include <stdio.h>
int N;
int comp(const void* a, const void* b)
{
return *(int*)a - *(int*)b;
}
int judge_merge(int *n, int len)
{
for(int i=0; i<N; i+=len)
{
for(int j=i+1; j<i+len&&j<N; j++)
{
if(n[j] < n[j-1])
{
return 0;
... | [
"weixy@zju.edu.cn"
] | weixy@zju.edu.cn |
ff147380ee63a04d59c852344388ab05c005e1a0 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/353b4b91-db5e-489a-a15d-b6a7f5a0457a.c | 65e923288c5099308bbda6acb1833a495d41fd0f | [] | 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 | 517 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l+j;
l = i-j;
i = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[38];
int c[45];
a = 0;
while (a > -1) {
/* STA... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
72e92aee2e506350d8bb935fe7399f2248f39fff | 3a1b672a899341d34ec78c33af36a4dab5cf2e0b | /Charging.h | ec5f23a757bd4d56b66c54e8da4656d2f67537ae | [] | no_license | ajay-moxie/solar-charger | b42872c3c722f36c664967817129bf7f23c4887e | ae9b951ef8acff6689a7e7036ce6c39fc2749057 | refs/heads/master | 2016-09-05T17:00:28.400461 | 2014-04-19T07:38:21 | 2014-04-19T07:38:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,347 | h |
#include <htc.h>
#include <stdint.h>
//charger PWM period
#define CHARGER_PWM_PERIOD 250
//10% Duty cycle
#define CHARGER_DUTY_CYC_10 40
#define CHARGER_DUTY_CYC_10_U ((CHARGER_DUTY_CYC_10 & 0xFC) >> 2)
#define CHARGER_DUTY_CYC_10_L ((CHARGER_DUTY_CYC_10 & 0x03) << 6)
//6% Duty cycle
#define CHARGER_DUTY_CYC_05 20
... | [
"ajay@moxiedevices.com"
] | ajay@moxiedevices.com |
cfbf591858bb0862e2f4fe752beec957eaaea02b | cd42b1cb0c7f29bed8a631163105e7c37f3123fe | /os_concepts_abraham_silberschatz/chapter_3/05_exec/exec_example.c | ccd597dbaf282957bd93179d22a3dd932f02e6e6 | [] | no_license | athultr1997/OS | 36bb58818854d569111c0544ced5dc4ba1697ebb | 61d15547cc5b48c07528dfbbf48a2d8a8b00c09c | refs/heads/master | 2021-08-15T23:00:04.047720 | 2020-09-08T19:09:34 | 2020-09-08T19:09:34 | 218,811,920 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 566 | c | #include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
int main()
{
pid_t pid = fork();
if(pid<0) // If the fork() resulted in an error
{
printf("Error occured. Process not created.\n");
}
else if(pid==0) // Child process
{
execlp("/bin/ls","ls",NULL);
printf("Error occured with execlp().\n"); //co... | [
"athultr15@gmail.com"
] | athultr15@gmail.com |
c3dc3f44d8b2078a0455f612c4d8dc7b969dd673 | acae012d5dd3f38445bdd519e09489c8e7ab9440 | /mpp/component/isp/user/firmware/arch/hi3516ev200/algorithms/isp_edgemark.c | 64ee5805a1cbc689736a76133c01099fa8e0a644 | [] | no_license | chengxuyuanXie/linuxc_demo | e9a21f0be4bdc07f6b09b7391b7b9aa55a4b43dc | 13ffe80a0ffb5384c7448abb160718cfc0f2e042 | refs/heads/master | 2023-04-22T20:12:14.872377 | 2021-04-23T08:56:05 | 2021-04-23T08:56:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 988 | c | /******************************************************************************
Copyright (C), 2016, Hisilicon Tech. Co., Ltd.
******************************************************************************
File Name : isp_edgemark.c
Version : Initial Draft
Author : Hisilicon multimedia softw... | [
"pangpengqiang@163.com"
] | pangpengqiang@163.com |
86e0d34fc6c4ccb53da90935e4bc81659e3469e7 | 97c846c53b02f786c1dbd0338718aeaec0bdd182 | /2015-2016_Nothing-But-Net/RobotC/Split/SmartMotorLib.c | c9af61ebfd11c28e80aa51521817b0c4d196746c | [] | no_license | SBHSRobotics/750E | e174cf9bed6b2fbb5cbfd32c56a1a6bc533f115d | a4f8c90b233b526bac8d249d18d5b029d4a2604e | refs/heads/master | 2021-01-20T18:20:06.636482 | 2018-02-09T22:57:06 | 2018-02-09T22:57:06 | 63,379,855 | 0 | 6 | null | 2017-10-15T20:20:16 | 2016-07-15T00:55:09 | C | UTF-8 | C | false | false | 72,303 | c |
/*-----------------------------------------------------------------------------*/
/* */
/* Copyright (c) James Pearman */
/* 2012 ... | [
"mikelmm99@gmail.com"
] | mikelmm99@gmail.com |
5635680ae6502636ee334fa7aa14c69e5546abf1 | 7ab07e2b524dd7ffc78bee29f3aca377d4262b25 | /DoReMiPlayer/Common.h | 31ff58ced8eb334e66da83c9437812a8d9dd2629 | [] | no_license | XuDepeng/MusicPlayer | 3026e7f5010301cebcc311ba38089caab260710a | 440a349379f7617e37dcf0708ee1ab3467a9ab44 | refs/heads/master | 2021-01-17T13:01:48.699951 | 2018-02-11T08:06:14 | 2018-02-11T08:06:14 | 57,354,956 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 234 | h | #pragma once
#include <QString>
struct MusicInfo{
QString title;
QString artist;
QString album;
QString duration;
};
struct WebMusicInfo{
QString title;
QString artist;
QString album;
QString duration;
QString songLink;
};
| [
"depp593744989@gmail.com"
] | depp593744989@gmail.com |
1db020700b3cfceda996c5c41ec77f669d94ab94 | d43e3159d3720b72fcf27ba3301e3e34b4c4fbe8 | /src/traffic.c | 831057456c10397649987bc2c68afeb8cc73434a | [] | no_license | mfvalin/dot-profile-setup | 0641e1015adc571c3cc7a47299d08c6414464657 | a7e6af3a3711aa960033a720feabdd2ca7b3f54a | refs/heads/master | 2021-10-16T21:58:13.760236 | 2019-02-12T23:39:52 | 2019-02-12T23:39:52 | 120,832,302 | 0 | 1 | null | 2019-02-12T23:39:53 | 2018-02-08T23:48:15 | C | UTF-8 | C | false | false | 11,807 | c |
/*****************************************************************************
* programme servant a transformer un fichier texte *
* de majuscule a minuscule. *
* on indique le traitement a faire aux chaine de type citation *
* ... | [
"mfvalin@gmail.com"
] | mfvalin@gmail.com |
ab45f532b3b11c492ba8a18279e5e3efbbf16663 | 863b0dafd46052e6316526c9ad726a6ff64faa56 | /Dynamic Array Stack/dynamicArray.c | 337aa0e716f1a6c2d14ccdda05da3481d267c3c7 | [] | no_license | Holly-Buteau/C-projects | eb04f0937609f9c74351c715324e9f87c923515c | e3d03b48137e15539ce8095919d1c3367c4d31ee | refs/heads/master | 2020-12-25T13:45:00.450518 | 2016-06-15T23:24:36 | 2016-06-15T23:24:36 | 55,166,395 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,973 | c | /* dynamicArray.c: Dynamic Array implementation. */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "dynArray.h"
struct DynArr
{
TYPE *data; /* pointer to the data array */
int size; /* Number of elements in the array */
int capacity; /* capacity ofthe array */
};
/* ************************... | [
"buteauh@oregonstate.edu"
] | buteauh@oregonstate.edu |
03bf1b457d55344894493699b8663943082788b7 | 8875cabf8afcb1c88f251616e57a470bc6d29b9d | /src/plugins/directoryvalue/directoryvalue.c | 87448e6b08b594ffc4a463ce31da2fa32764b5f9 | [
"BSD-3-Clause"
] | permissive | omnidan/libelektra | b7c1f1a7e63ba5615f97ccf2574efc710c4cb64a | 9951fff3bcb5de8ac988de09450ab82bf3a846b3 | refs/heads/master | 2023-08-25T20:22:44.663429 | 2018-05-26T06:29:01 | 2018-05-26T06:29:01 | 41,959,424 | 1 | 0 | null | 2015-09-05T12:06:39 | 2015-09-05T12:06:39 | null | UTF-8 | C | false | false | 20,065 | c | /**
* @file
*
* @brief Source for directoryvalue plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
// -- Imports ------------------------------------------------------------------------------------------------------------------------------
#include "directoryvalue.h"
#inclu... | [
"sanssecours@me.com"
] | sanssecours@me.com |
550819056a40031d4042b795295c51b2ec959952 | 4b3aa0064ae77d26e010d991461a0c29121e589f | /Coursor_change/resource.h | 2918b2921f2c367c839296fed521bc1766a5b3fc | [] | no_license | mrwhatisthis/Windows_API | 382bbcb651c604bed5abaf0dc8908865458b34c8 | 5fae34e778445afd4613ad2417623466108f9a82 | refs/heads/master | 2023-04-02T08:52:36.201162 | 2021-03-31T23:01:51 | 2021-03-31T23:01:51 | 353,511,891 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,615 | h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by sysProgLab1.rc
//
#define IDC_POINTER 104
#define IDC_CURSOR1 113
#define IDC_CURSOR2 114
#define IDD_DIALOG1 115
#define IDR_MENU1 ... | [
"demian.stetsyk@gmail.com"
] | demian.stetsyk@gmail.com |
a97dd008638e67b0e8063c435c6a300217d7beb3 | fcd6647e9e8861bf05aa678faba4b913074edf3e | /mbed-os/targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32GG/device/efm32gg_pcnt.h | 625a6c507a544ac70aa29eaedc2d64d03adcbb98 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ashok-rao/BLEClient_mbedDevConn_Watson | a23386def82d0da5fc8bbbe3fc79cbeb93a37e92 | f162ec8a99ab3b21cee28aaed65da60cf5dd6618 | refs/heads/master | 2020-06-23T07:50:16.852047 | 2017-07-14T09:10:05 | 2017-07-14T09:10:05 | 74,658,976 | 1 | 3 | NOASSERTION | 2020-03-06T23:26:39 | 2016-11-24T09:40:20 | C | UTF-8 | C | false | false | 40,070 | h | /**************************************************************************//**
* @file efm32gg_pcnt.h
* @brief EFM32GG_PCNT register and bit field definitions
* @version 5.0.0
******************************************************************************
* @section License
* <b>Copyright 2016 Silicon Laboratorie... | [
"Ashok.Rao@arm.com"
] | Ashok.Rao@arm.com |
864eae85ed4494b691693bb21217ae2b49c786eb | cf2f09afaf061f8e7f1a0df0d650b7ce525cf194 | /Grab_The_Eggs/Its Final/iGraphics/iGraphics.h | 5ec87e76855bbb005f6a9c199768595bfedcce2f | [] | no_license | anik1994/Grab_The_Eggs | 0ea03f629ea268de8b2dfa104822ffa220f8b06b | e592f5c8034f44bcb71ef3d52b794f2716886f0d | refs/heads/master | 2020-03-22T22:24:59.191181 | 2018-07-12T18:47:50 | 2018-07-12T18:47:50 | 140,750,355 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,717 | h | /*
author: S. M. Shahriar Nirjon
last modified: March 12, 2008
last modified: Saifur Rahman
*/
# include <stdio.h>
# include <stdlib.h>
#pragma comment(lib, "glut32.lib")
#pragma comment(lib, "glaux.lib")
#include "glut.h"
#include <time.h>
#include <math.h>
#include <windows.h>
#include <gl\glaux.h>
#include <stri... | [
"anik1994@gmail.com"
] | anik1994@gmail.com |
8c1450a3b0c3f8e9c445fb662ab00607de95bec4 | 46367579a54a09dd220dd9a678b1452f06897f11 | /tags/DLS_20130630/src/H5Gent.c | 32eaadf13b0323eaa089c49b90fe9bf10af804f3 | [
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4"
] | permissive | TPLink32/hdf5 | 33ff24c9b6133f0f51cb6cc2b722fba7bb1777dd | 0d6987c15284bd9f34c7e44452a152833d42a738 | refs/heads/master | 2021-05-31T01:15:39.463663 | 2016-04-14T23:02:09 | 2016-04-14T23:02:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,126 | c | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... | [
"acheng@dab4d1a6-ed17-0410-a064-d1ae371a2980"
] | acheng@dab4d1a6-ed17-0410-a064-d1ae371a2980 |
fcc30a4eb020958d1fdb1c64904567601b830e5f | b76383c64bb4ff0b0bd039ee75f54160c6f8a9b1 | /libft/ft_strchr.c | 45b4026a11793ea9961b35672372d79da2dba6a7 | [] | no_license | mandisimakwakwa/ft_printf | 72d2224c1da2dd76f23d87907d77093ca6a9c805 | 5040fb6ca9b3f23ea59938842451733c2b6b566c | refs/heads/master | 2021-01-19T07:33:42.738145 | 2018-01-29T13:02:13 | 2018-01-29T13:02:13 | 87,553,701 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,339 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: ... | [
"mandisi.makwakwa@gmail.com"
] | mandisi.makwakwa@gmail.com |
568a354c4cd9027eac2c6c1ea4e2492575adb473 | aa3a6d917fb11bccc11e49e8f571d2f2b3d89182 | /gem.h | a24b09693a2e91b0b411212ed1431ed412c20e26 | [] | no_license | ivan-kits/fakedrm | 9e1ce1f416f1ef89b765577ff29ff195b2221dda | 4b3f8d2dd7e058c9a0792a6cbc828548592ee065 | refs/heads/master | 2023-04-03T05:34:03.485451 | 2014-10-11T15:33:40 | 2014-10-11T15:33:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,605 | h | /*
* Userspace DRM emulation library - GEM support
*
* Copyright 2014 Tomasz Figa <tomasz.figa@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, includi... | [
"tomasz.figa@gmail.com"
] | tomasz.figa@gmail.com |
2b1662b179345d5d705fb33b4c2a8ae06a471cb3 | 21c09799d006ed6bede4123d57d6d54d977c0b63 | /fits_2018_09/PFNo3Dijet2017bbCSVv22b883Scan/fit_mjj_Full_PFNo3Dijet2017bbCSVv22b883.C | cd858cefd7e7b508f769a305939e308574958bc2 | [] | no_license | corvettettt/DijetRootTreeAnalyzer | 68cb12e6b280957e1eb22c9842b0b9b30ae2c779 | e65624ffc105798209436fc80fb82e2c252c6344 | refs/heads/master | 2021-05-06T09:57:12.816787 | 2019-04-18T15:32:38 | 2019-04-18T15:32:38 | 114,043,763 | 1 | 0 | null | 2017-12-12T22:02:46 | 2017-12-12T22:02:46 | null | UTF-8 | C | false | false | 42,844 | c | void fit_mjj_Full_PFNo3Dijet2017bbCSVv22b883()
{
//=========Macro generated from canvas: c/c
//========= (Thu Sep 20 01:42:45 2018) by ROOT version6.02/05
TCanvas *c = new TCanvas("c", "c",0,0,600,700);
gStyle->SetOptStat(0);
gStyle->SetOptTitle(0);
c->SetHighLightColor(2);
c->Range(0,0,1,1);
c->SetF... | [
"zhixing.wang@ttu.edu"
] | zhixing.wang@ttu.edu |
845459a57e11329d1b1d6c31b9f14a1ef844ad7a | a4408fe966970b1f32f0cffc40cef1ffc0c36a72 | /Bookshelf/C Programming: A Modern Approach/Section 22/exercise9.c | f8d17b8fc75d432fbb7b7c94942f16b2ee43e4b0 | [] | no_license | phrimm136/Study | 9383382ce1eacffa737389426ba4d5132476bca5 | 08de1c05c0bdb9ba7a28c9b2e187059bb749fac6 | refs/heads/master | 2023-03-29T23:40:23.923992 | 2021-04-04T10:24:12 | 2021-04-04T10:24:12 | 145,818,017 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 190 | c | #include <stdio.h>
#include <conio.h>
int main(void)
{
char ch[5];
ch[0] = getch();
ch[1] = getchar();
ch[2] = getc(stdin);
ch[3] = fgetc(stdin);
printf("%s\n", ch);
return 0;
} | [
"39765074+hankail05@users.noreply.github.com"
] | 39765074+hankail05@users.noreply.github.com |
26bad7b500cd1d7ad7370e7f4178fd78dbafb6df | e1858abcea1592f2175d426204df6c69db30b3eb | /Motor/PWM.h | 3311dd69c6cd37ff763ea09bcef915ecf6e1e567 | [] | no_license | Giri2801/Main-Project | f76a5099dcb0e7d49efafe5b9e05d60cd2fd3a52 | 434a3de2250910a678e4df2ced8ff09e98aff94c | refs/heads/master | 2023-06-09T08:15:35.988681 | 2020-09-14T17:08:49 | 2020-09-14T17:08:49 | 294,144,963 | 0 | 0 | null | 2021-07-04T04:44:49 | 2020-09-09T14:56:32 | C++ | UTF-8 | C | false | false | 759 | h | #include <time.h>
#include "pwm_driver.h"
#include"../defines.h"
#define Mode int
#define FORWARD 0
#define RIGHT 1
#define LEFT 2
#define SPEED 0.5312 // write some constant
#define ANGULAR_VELOCITY 0.9 // write some constant
//supporting functions
void initializeMotor();
void rotate(Angle ang... | [
"cs18b032@smail.iitm.ac.in"
] | cs18b032@smail.iitm.ac.in |
0b368c0535e5a29dbc97a78006890c365ab1275f | 12c374968e6dc7237d58b1e68bb60cd4068c20c1 | /Lab5/thermo3_skel.c | 3ad4247a6ceeff8dc082d8eba4a9749afd1b3615 | [] | no_license | duncanli21/ECE473 | 641eb32bf633149334f42dadbc92dfad0bca9324 | a2efad159384dfd754388c3a9389d664c6a3eb59 | refs/heads/master | 2023-01-14T04:51:30.618358 | 2020-11-23T23:38:18 | 2020-11-23T23:38:18 | 299,151,057 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,929 | c | // thermo3_skel.c
// R. Traylor
// 11.15.2011 (revised 11.18.2013)
//Demonstrates basic functionality of the LM73 temperature sensor
//Uses the mega128 board and interrupt driven TWI.
//Display is the raw binary output from the LM73.
//PD0 is SCL, PD1 is SDA.
#include <avr/io.h>
#include <avr/interrupt.h>
#include <... | [
"duncanli@oregonstate.edu"
] | duncanli@oregonstate.edu |
43a1a7bf7461e85c0624be03218d7fe3ca9103ff | cdb281fe5f4d172e8ca899420a7e1cfb05e76398 | /mediatek/custom/s6000_prc_3gdata/kernel/imgsensor/hi542_raw/hi542raw_CameraCustomized.h | 3fb69f146d73859977678d2d298b72930144dd02 | [] | no_license | lenovo-a3-dev/android_kernel_lenovo_mt8389 | feced2299e2415bd6b2140ff6414c1ed3cff37f8 | 320c9e380542564efdf88554cbde4847c0c0ab53 | refs/heads/master | 2021-01-17T18:43:23.740824 | 2014-11-22T22:12:21 | 2014-11-24T20:42:52 | 27,341,515 | 4 | 4 | null | null | null | null | UTF-8 | C | false | false | 85 | h | ../../../../mt8389_tablet_s3v2/kernel/imgsensor/hi542_raw/hi542raw_CameraCustomized.h | [
"kupyxa4444@gmail.com"
] | kupyxa4444@gmail.com |
4d4764e67061ac38eef9cb5774025c072dc8fe71 | aeb8302deb7f2240ef150d833515f26e82f4d692 | /Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_Dictionary_2_ShimEnumera_6MethodDeclarations.h | e4ee1f93b52e5b604821fe6e04f30a3bf5b28d88 | [] | no_license | AlvianPrasetya/TwistedMaze | 4f8ad5dbf10590d90bc4bda4f88607d6bc562bb8 | ddf046f1d9acb4ba8335efcd5acde787e66a6434 | refs/heads/master | 2021-01-13T00:50:20.752597 | 2015-12-15T09:12:32 | 2015-12-15T09:12:32 | 47,547,689 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,020 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.Collections.Generic.Dictionary`2/ShimEnumerator<System.Int32,System.Int32>
struct ShimEnumerator_t2261;
// System.Object
struct Object_t;
// System.Collections.Generic.Dictionary`2<System.Int32,Syst... | [
"alvian.better@gmail.com"
] | alvian.better@gmail.com |
849fc6fc077540f376ccf53326ff77f951c4ab4e | 5c1f55e4b1c84142a9f5ccdbc45605706893ed8c | /opal/mca/pmix/pmix4x/pmix/src/util/pif.h | 4646fd0c895778d9a3ccc05eae9eaa2df3b7bca7 | [
"BSD-3-Clause-Open-MPI"
] | permissive | koscHeo/ompi | 47a1c72000a05372a8a5d221d5dfc4388607ef0a | c028ed58e710d82d78114b77b358bb890d206209 | refs/heads/master | 2020-03-30T01:36:31.852146 | 2018-09-27T08:29:45 | 2018-09-27T08:29:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,139 | h | /*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Resea... | [
"rhc@open-mpi.org"
] | rhc@open-mpi.org |
743aba05c515217bac5b3560452d0495d2fd050f | ea9ecf19b659354a9eb3509926401ca9af0d96c8 | /032/pandigitial-products.c | 2687706ead73eaa059ccd324d58705daad54bffd | [
"CC0-1.0"
] | permissive | timmontague/euler-solutions | 5afa8e8f411b2b968d5acaaf83b12c16f0f871ff | 406c261bb7fbaa7a2a4cdc25b7ed90e4d7f1ae4a | refs/heads/master | 2021-01-21T04:33:09.724451 | 2015-06-27T00:32:21 | 2015-06-27T00:32:21 | 5,251,182 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,983 | c | #include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <error.h>
#define N 9
/* Returns 1 if a*b == c and c hasn't been seen before */
int check(int a, int b, int c) {
static int *seen = NULL;
static int seenlen = 0;
static int maxseenlen = 0;
int h, l;
if (a*b != c) {
return 0;
... | [
"tim@timmontague.com"
] | tim@timmontague.com |
3c2566dec7be7e44ac2682260787d343b8f3415c | 4868a9332a1ab81e87cfe0b2a20dd03cfada3979 | /console_input.h | 6a6c13813c1e62e113cadbe82052813d16c68d2e | [] | no_license | Excavelty/GyroMaze | d1a0b8c3df9b02b4cd87d236e7ec4ae831e5bcff | 556bc69bc5c0f9eae05a6e795f1c1517adee6a52 | refs/heads/master | 2023-02-11T20:53:59.727259 | 2021-01-14T23:12:34 | 2021-01-14T23:12:34 | 327,057,196 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,052 | h | #ifndef CONSOLE_INPUT_H
#define CONSOLE_INPUT_H
#include <stdio.h>
#include "player.h"
char getInput()
{
char inputLetter;
printf("Prosze podac ruch [W-S-A-D], x - wyjscie: \n");
scanf("%c", &inputLetter);
return inputLetter;
}
void consoleMove(char inputLetter, Player* player)
{
... | [
"noreply@github.com"
] | Excavelty.noreply@github.com |
252fc6337fbb9dd1189b2b172388c736a1c3b7d7 | f6db4571d8946319742bc52cb70faf25346c91aa | /407_Week3/getpid.c | fd77d25f4378dc5951f4a43d9bd2ddf1a12d64ab | [] | no_license | ayoolaao/csc407-system-II | a13bfd42b3d9a195e14341a20da0c9b92f836bc4 | b88f896962983c8dd3db417aefd26643a430f7fd | refs/heads/master | 2021-04-30T01:29:11.023787 | 2015-01-20T05:43:14 | 2015-01-20T05:43:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 115 | c | #include <sys/types.h>
#include <unistd.h>
int main()
{
pid_t getpid(void);
pid_t getppid(void);
return(0);
}
| [
"old.far.hot@gmail.com"
] | old.far.hot@gmail.com |
66f4cc31128e4eb241a85833a4b1e7216642840e | 391913e1bdfe6788a44b3bc3c10a156197b7a165 | /src/intel_device.c | f1a6887d60ec0ed6da05961757a64cd72bee657c | [
"HPND-sell-variant",
"MIT"
] | permissive | freedesktop-unofficial-mirror/xorg__driver__xf86-video-intel | bdd91a8da912b07164fb834ba9d37a89133bdebc | 83b8528773a0b1e6655fa87c9645a0062cee1359 | refs/heads/master | 2020-08-08T22:28:08.792683 | 2015-04-21T14:28:54 | 2015-04-21T14:29:50 | 34,369,696 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,047 | c | /***************************************************************************
Copyright 2013 Intel Corporation. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without re... | [
"chris@chris-wilson.co.uk"
] | chris@chris-wilson.co.uk |
65dcf81f20501792fe90f1585c6b217474adc3ab | bef5bd3b91af9f3a2340b697d8d752557f39d8d0 | /src/libs/app_libs/solar/v1.2/float/include/PID_GRANDO_F.h | 40367d8842e544a0febd13ee736802aa127a80c8 | [
"MIT"
] | permissive | Furkanprlk/DSP_F28335_Examples | c024561fac4481baca58bf2d5fe0b3e9a8b49507 | 3b480c15e3eb0e1d5898474f283beaec6d986961 | refs/heads/main | 2023-07-01T08:44:49.793346 | 2021-08-09T20:59:01 | 2021-08-09T20:59:01 | 356,860,168 | 8 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,685 | h | #ifndef PID_GRANDO_F_H_
#define PID_GRANDO_F_H_
//*********** Structure Definitions *******//
typedef struct {
float32 Ref; // Input: reference set-point
float32 Fbk; // Input: feedback
float32 Out; // Output: controller output
float32 c1; // Internal: derivative filter coefficient 1
float... | [
"furkanprlk0@gmail.com"
] | furkanprlk0@gmail.com |
e1021ae1ccf993ee418c0646f07b6379d50054bf | 88ccc0d602a71f236aa1c4d0571dd55692a97168 | /inc/cmplx.h | 5eeeb62ff8bff275b7d3d417b00cb6908f8eea8d | [] | no_license | AntonioBukovec/project-hw02 | d9e3003046b2b0459223271901ba7274b97bc419 | fef5869f4f80f24df491624a62e089b1dbb7e10a | refs/heads/master | 2021-07-22T23:10:10.628223 | 2017-10-30T21:40:28 | 2017-10-30T21:40:28 | 108,906,062 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 301 | h | #include<fftw3.h>
void cmplx_div(fftw_complex a, fftw_complex b, fftw complex c);
void cmplx_mul(fftw_complex a, fftw_complex b, fftw complex c);
double cmplx_mag(fftw_complex a);
double cmplx_phs(fftw_complex a);
double cmplx_real(double mag, double phs);
double cmplx_imag(double mag, double phs);
| [
"antonio.bukovec@fer.hr"
] | antonio.bukovec@fer.hr |
14bea6c80661ce220bf92edd94db8bcd9e31f918 | 488378d66dfb12d3292886b160243aa24e27c420 | /linux-3.16/sound/soc/samsung/rx1950_uda1380.c | 37688ebbb2b4b6be954150d1e17b721ed9ddf6f3 | [
"Unlicense",
"GPL-1.0-or-later",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | jj1232727/system_call | 3ec72bdecad15a43638cc5eb91ba1ae229d651bb | 145315cdf532c45b6aa753d98260d2b1c0b63abc | refs/heads/master | 2020-08-11T13:56:16.335620 | 2019-10-12T11:12:53 | 2019-10-12T11:12:53 | 214,575,269 | 0 | 0 | Unlicense | 2019-10-12T04:06:22 | 2019-10-12T04:06:22 | null | UTF-8 | C | false | false | 7,159 | c | /*
* rx1950.c -- ALSA Soc Audio Layer
*
* Copyright (c) 2010 Vasily Khoruzhick <anarsoul@gmail.com>
*
* Based on smdk2440.c and magician.c
*
* Authors: Graeme Gregory graeme.gregory@wolfsonmicro.com
* Philipp Zabel <philipp.zabel@gmail.com>
* Denis Grigoriev <dgreenday@gmail.com>
* ... | [
"jj1232727"
] | jj1232727 |
e0564d17cc110fcd492fdc75dc7efa6f2f0997d6 | 099125525f25327f4e50c492dd27b425d95428a5 | /sys/arch/sh/include/stdarg.h | 9b51419cb5167e259d3c7c881ce5a4aeebdb6d73 | [] | 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 | 2,410 | h | /* $OpenBSD: stdarg.h,v 1.3 2011/03/02 18:31:58 matthew Exp $ */
/* $NetBSD: stdarg.h,v 1.9 2006/05/21 22:39:04 uwe Exp $ */
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are... | [
"brad@Brads-MacBook-Pro-2.local"
] | brad@Brads-MacBook-Pro-2.local |
812488ec9bec082e9a602cc19824405494bb4dbc | f17c3cc193dd9dadb44474a5ee696326516fdd5a | /HW3/Starter.c | b1590f7efacc5cf82e4c886c70757a56755f1b8c | [] | no_license | AAhusk/CS-370-Operating-Systems | b56818188ef143d416c59038942526fc064434d6 | 5154bfcc22dffe57d8b18c7d038f9d6c277615a4 | refs/heads/master | 2021-02-04T06:30:41.480079 | 2020-02-27T23:00:17 | 2020-02-27T23:00:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,867 | c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/shm.h>
#define READ_END 0
#define WRITE_END 1
#define BUFFER_SIZE 60000
// declarations of each function
char* getOutputFilename(const char... | [
"noreply@github.com"
] | AAhusk.noreply@github.com |
32d240b322436dccfda576a2575c5a69d4bb02a9 | 87a372c14af7b389c05b7ab47107c6de6427c8df | /ft_strjoin.c | 9d32a913052774d76549afc53798cdcab62108bf | [] | no_license | moemarusan/42_libft | 18fc5be63f1301f6519d8829e80e73431aa87441 | 44c1e29038741082d55185f8676289ed583db743 | refs/heads/master | 2022-11-21T09:41:56.723024 | 2020-07-18T12:23:14 | 2020-07-18T12:23:14 | 278,630,283 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,175 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: ... | [
"moemaaaaaaaru@gmail.com"
] | moemaaaaaaaru@gmail.com |
1c42791d2ccf56396469440460cefc6762378823 | 41bc2f97027c81fc86925613805e648d6ef8bb1a | /mrkrecorder/src/main/cpp/jx_ffmpeg_cmd_run.h | 5d41460ccbeecac97e221c6eaf7be23600aac1fe | [] | no_license | 1152574267/MrkPlayer | fc95ec726e9bce4d19e5f904801a21c4bd9904c3 | b81b9f19fdcd8ad5c8cafc51f41313e81bcf8851 | refs/heads/master | 2020-03-16T02:15:24.275483 | 2018-07-10T06:50:50 | 2018-07-10T06:50:50 | 132,460,724 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 707 | h | #ifndef JIANXIFFMPEG_FFMPEG_RUN_H
#define JIANXIFFMPEG_FFMPEG_RUN_H
#include <jni.h>
JNIEXPORT jint JNICALL
Java_com_mrk_mrkrecorder_jniinterface_FFmpegBridge_jxCMDRun(JNIEnv *env, jclass type,
jobjectArray commands);
void log_callback(void *ptr, int level,... | [
"1152574267@qq.com"
] | 1152574267@qq.com |
ceeb58d5546d4057f53b272190166122b3f3c3e8 | d4240a19b3a97e8c4a39a7925e8046ead6642d19 | /2016/Enceladus/Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Comparison_1_gen3179135137MethodDeclarations.h | 106e7e975ee2844bb5cdabc509b905f1927ffdd1 | [] | no_license | mgoadric/csci370 | 05561a24a8a6c3ace4d9ab673b20c03fc40686e9 | 9ffd5d0e373c8a415cd23799fc29a6f6d83c08af | refs/heads/master | 2023-03-17T18:51:45.095212 | 2023-03-13T19:45:59 | 2023-03-13T19:45:59 | 81,270,581 | 2 | 3 | null | null | null | null | UTF-8 | C | false | false | 1,728 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Comparison_1_gen3951188146MethodDeclarations.h"
// System.Void System.Comparis... | [
"goadrich@hendrix.edu"
] | goadrich@hendrix.edu |
6ecdc7193aedceba341cc486e6d9dc0c373fa32c | 191689368311d54140e3dda6889345ef53f49863 | /FirstOpenGL/src/4_1.c | 5c9c110de63f065da0275edc502551c1d039d9e2 | [] | no_license | DEVAstater02/Bresenham-s-Algorithms | c15b389416a6eada51ba8c272cbd6a5e561bfb05 | 1da058fb60e341c048e499b212d7328c25386cc3 | refs/heads/main | 2023-06-14T05:13:58.060516 | 2021-07-05T08:26:29 | 2021-07-05T08:26:29 | 383,068,322 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,317 | c | #include <stdio.h>
#include <glut.h>
#define MAX_COORDINATE 250
int X1, X2, Y1, Y2;
void myInit();
void plotPixel(int x, int y);
void printLine(int X1, int Y1, int X2, int Y2);
void plotDisplay();
void vector(int X1, int Y1);
void arrowHead1(int X2, int Y2, int X1, int Y1);
void arrowHead2(int X2, int Y2, int X1, int... | [
"f20190012@hyderabad.bits-pilani.ac.in"
] | f20190012@hyderabad.bits-pilani.ac.in |
4496fdfbbc6f02ae47de1aad02277ef1eb8a99d1 | 913c22492e0a04f3ecb128642b2a90a2f2d8ce5b | /structs_and_types.h | a1f301af3d1dbd0479a30a811730c374f76b90f2 | [] | no_license | CentofantiEze/TP_final | e8569d3b4d2c7d3c12b045f569c8a477ee7ccceb | 6045239e41843b33f4ad8c5f235432370e6ae002 | refs/heads/master | 2020-04-07T13:15:11.334024 | 2018-12-10T15:45:29 | 2018-12-10T15:45:29 | 158,399,469 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,974 | h | typedef enum {FALSE, TRUE} bool_t;
typedef enum {P_NMEA = 1, P_UBX = 2, P_AUTO = 3} protocol_t;
typedef enum {ST_OK, ST_NULL_PTR, ST_INVALID_ARGUMENT, ST_NO_MEM, ST_ERR_OPEN_IN_FILE, ST_ERR_OPEN_OUT_FILE, ST_ERR_OPEN_LOG_FILE, ST_NO_PROTOCOL, ST_ERROR_EOF, ST_CORRUPT_FILE, ST_LIST_FULL, ST_LIST_EMPTY, ST_IGNORE_STATEME... | [
"ezecentofanti@gmail.com"
] | ezecentofanti@gmail.com |
b089b52e87d6a2e6fe3f1875a51c985aea91fb6b | 5c8b5d7fe333004b2b40ae2c80ca95bb91d15018 | /Software/AMEv3/oled.h | 2f40d480afc54e4e737da8b652b9c1de1f6df852 | [] | no_license | Icenowy/ArithMax-emulator | eb4ab274336ec5161e5e41d97de5955631da0e4b | c038dd8d0af1b317d15f99d357f486b78e9dcee3 | refs/heads/master | 2021-01-19T06:53:05.157948 | 2014-06-16T04:59:42 | 2014-06-16T04:59:42 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,404 | h | #ifndef __OLED_H__
#define __OLED_H__
#include "main.h"
//SSD1306 OLED 驱动IC驱动代码
//驱动方式:8080并口/4线串口
//版本:V1.1
//正点原子@ALIENTEK
//2010-6-3
//OLED模式设置
//0:4线串行模式
//1:并行8080模式
#define OLED_MODE 0
//-----------------OLED端口定义----------------
#define OLED_CS_High() GPIOB->BSRRL = GPIO_Pin_... | [
"nbzwt@live.cn"
] | nbzwt@live.cn |
5abf07526ce0b0f3a0521bd3b0c20a5facd4e202 | 7e74c0f5c46eb0a03a1bf1602427e5730d4ab65f | /leds/test_led.c | 5911278826a96a4c49416c886734c766ec4e0bb9 | [] | no_license | hbzhong/linux-char-driver | 70423697595d4bb6b32209dca757e8065701a99b | 179fb7e0d93e1415841d32cb2887469ad7ab4cbb | refs/heads/master | 2021-01-22T06:45:22.076268 | 2015-04-27T14:37:46 | 2015-04-27T14:37:46 | 34,651,492 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 781 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ioctl.h>
int main(int argc, char **argv)
{
int i;
int led_no;
int fd;
if (argc != 2 || sscanf(argv[1], "%d", &led_no) != 1 ||
led_no < 0 || led_no > 1) {
fprintf(stderr, "Usage: test_led 0|1\n");
exit(1);
}
fd = open("/dev/led_fo... | [
"loopzhong@126.com"
] | loopzhong@126.com |
199608bedd2509e224c4c2091089b70a7a4d1204 | 8a5ccab6d238df41f94f951e619f6d3184b7f8c3 | /include/voltlib/volt.h | 49a2d054ce97537cfaad4f8bd8ce325c6afa0bba | [] | no_license | antoine62/Universal-Updater | 9ed148c229fae6c36be60e1c2c0cde9b23b2ee3a | 22a85195d6aedbfac8a29d30f60eea1f2c149f94 | refs/heads/master | 2020-05-13T21:37:05.698006 | 2019-04-16T04:01:24 | 2019-04-16T04:01:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,525 | h |
#ifndef VOLT_H
#define VOLT_H
#include "lodepng.h"
#ifdef __cplusplus
extern "C" {
#endif
#include <3ds.h>
#include <citro3d.h>
#include <citro2d.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include "vshader_shbin.h"
#define TOP_WIDTH 4... | [
"noreply@github.com"
] | antoine62.noreply@github.com |
dd1fb43b3e75ab5ef6de2871eb8d599f33144577 | 75d740315b02ac8f01bca2f0af408d9ee5ec1bab | /Src/usart.c | 3ca71fc066a658985d5103ba13ef61afde312ac3 | [] | no_license | kn2cssl/SSLMotorCode_VIII | 99d1d462e4ddbd20ed84c9821b3844eae144ed22 | 9464508c95f0ac46ee14c9049e07d27354780cc6 | refs/heads/master | 2021-08-31T07:58:10.545358 | 2017-12-20T18:03:50 | 2017-12-20T18:03:50 | 114,916,600 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,693 | c | /**
******************************************************************************
* File Name : USART.c
* Description : This file provides code for the configuration
* of the USART instances.
******************************************************************************
... | [
"mmzparchin@gmail.com"
] | mmzparchin@gmail.com |
7e993c27a75b96e77e7c448d97735cfccc46262a | ec558b8f1b38fb5e6d95a52946a310c0ffb67460 | /Project/User/ADE7758.h | f29bd8f7423f9e566c96c369f46dfe957867bb5b | [] | no_license | tuyentm101/STM32F103C8_ADE7758 | 5e45040ce4fe3a74459a9c47541dc6755fe5a641 | 947d91301eff84964f6381961113baf75c06a92a | refs/heads/master | 2022-01-10T18:05:52.703926 | 2019-06-27T14:56:52 | 2019-06-27T14:56:52 | 163,089,775 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,647 | h | #ifndef _ADE7758_H_
#define _ADE7758_H_
#include "user_stm32f1xx_spi.h"
#include "user_stm32f1xx_exti.h"
/*------------ADE7758 register-----------------------*/
#define RESERVED 0x00
#define AWATTHR 0x01
#define BWATTHR 0x02
#define CWATTHR 0x03
#define AVARHR 0x04
#define BVARHR ... | [
"manhtuyenhaihaqn@gmail.com"
] | manhtuyenhaihaqn@gmail.com |
98d78a640cd61136616c267af53920719968a19f | b1d500a451cd9852089bf3d97e829df069daa9c8 | /Images/MC/Bz/1700ppm/attic/Unblinded/attic/MomBinnedAna/S0_ModuloFit_500_600_vertCorr_eQ_eQ_2.C | 571bb024595476a80a6733be069b5724cdb06c59 | [] | no_license | sam-grant/EDM | 486ea029bf766c968a3c7b41198ffcf9bc3c9b8a | 525e41de5f675c39014488c79144f47562910736 | refs/heads/master | 2022-10-30T22:35:42.979799 | 2022-10-19T18:44:54 | 2022-10-19T18:44:54 | 296,421,806 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 477,320 | c | void S0_ModuloFit_500_600_vertCorr_eQ_eQ_2()
{
//=========Macro generated from canvas: c/c
//========= (Mon May 3 23:42:38 2021) by ROOT version 6.22/08
TCanvas *c = new TCanvas("c", "c",0,0,800,600);
gStyle->SetOptFit(1);
c->SetHighLightColor(2);
c->Range(-0.5964689,-2.739286,5.36822,1.74597);
c->SetF... | [
"samuel.grant94@gmail.com"
] | samuel.grant94@gmail.com |
2ec2e8a20a0b58616a005f5a9730b16fdc32f5fc | 3d0de0f2549d9025540fcec88624c72c079b406f | /BSW/src/bsw/gen/PduR/src/PduR_GetConfigurationId.c | 62e248240558c61dfd945b13bb7d26ad85ceae88 | [] | no_license | ongbut999/Jenkins_Test | ee19936e1577bd93d2755d21299ed3fbec553db6 | abb74480c4ce938dd1c7463627c4074071580af4 | refs/heads/master | 2023-06-23T21:26:57.794427 | 2021-07-22T08:05:20 | 2021-07-22T08:05:20 | 388,372,287 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,226 | c |
/* PDU Router Configuratio ID */
#include "PduR_Prv.h"
/* ------------------------------------------------------------------------ */
/* Begin section for code */
#define PDUR_START_SEC_CODE
#include "PduR_MemMap.h"
FUNC( uint16, PDUR_CODE ) PduR_GetConfigurationId( void )
{
uint16 return_val;
#if defined(PDU... | [
"fixed-term.Truong.HuynhQuang@vn.bosch.com"
] | fixed-term.Truong.HuynhQuang@vn.bosch.com |
ddc0c5f2c034bdd85c64b9a4d34ce4c41d5dbac0 | b1d500a451cd9852089bf3d97e829df069daa9c8 | /Images/Data/RadialFieldScan_2/raw/cutsTesting/1000MeV_6000MeV_20000ns/QuadFitRes.C | 55d1306db81c1f15ec81304827f7197c5b86dfcf | [] | no_license | sam-grant/EDM | 486ea029bf766c968a3c7b41198ffcf9bc3c9b8a | 525e41de5f675c39014488c79144f47562910736 | refs/heads/master | 2022-10-30T22:35:42.979799 | 2022-10-19T18:44:54 | 2022-10-19T18:44:54 | 296,421,806 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 11,487 | c | void QuadFitRes()
{
//=========Macro generated from canvas: c/c
//========= (Thu Apr 22 09:52:07 2021) by ROOT version 6.22/08
TCanvas *c = new TCanvas("c", "c",0,0,800,600);
c->SetHighLightColor(2);
c->Range(0.04581371,-0.0625,0.08035061,0.0625);
c->SetFillColor(0);
c->SetBorderMode(0);
c->SetBorder... | [
"samuel.grant94@gmail.com"
] | samuel.grant94@gmail.com |
a37469b390ce3da4ae592ff47dc6c6a50463dd48 | 7e4a97a55b6db694d0da4cc3a23189d9b7fe66ac | /largestnumber.c | 1c88cc6c1f346f5bf0d5dc92b6737d11b2f79eb7 | [] | no_license | subhashini910/crackers | 8c141269d679d2bc23762d335330c68388a58507 | 086e1264bb1b7d680e868b23c72baf8d2b5f3af9 | refs/heads/master | 2021-06-22T09:27:34.869747 | 2017-08-12T11:31:36 | 2017-08-12T11:31:36 | 98,157,972 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 313 | c | #include<stdio.h>
void main()
{
int num1,num2,num3;
printf("enter three numbers num1\t num2\t num3\t");
scanf("%d%d%d",&num1,&num2,&num3);
if(num1>num2)
{
printf("%d",num1);
}
else if(num1>num3)
{
printf(""%d",&num1);
}
else
{
printf("%d",num2);
}
}
| [
"noreply@github.com"
] | subhashini910.noreply@github.com |
3799535f6367acffc756da436d1821e7031fc00a | 6fc65e9330e9672b1fadffdd200f32ad81168555 | /CS291/Extra Assignments/PM Extra Assignmets/10.c | d75502ffcccc4d7a53ac60d73745a0963428da99 | [] | no_license | joydeep1701/GCETTS | 5864e2e068ae49efc0711e9c65856c127d5fae02 | 4ec084ae0faa1560b9e3f0ccaef665c2df9f76fb | refs/heads/master | 2021-01-20T15:19:09.351628 | 2017-11-25T00:33:36 | 2017-11-25T00:33:36 | 90,751,667 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 252 | c | /* Write a program to calculate the sum of first 10 numbers */
#include <stdio.h>
int main(void){
int n = 10;
printf("Summation-> %d\n",(n/2)*(n+1));
int i = 0;
int total = 0;
for(;i <= n;i++)
total += i;
printf("%d",total);
}
| [
"joydeep1701@gmail.com"
] | joydeep1701@gmail.com |
9d00fc5d30dc1472485ba8cd2c8cd92d32f726b8 | ea1189a9b76066142c9d43e9efa7e198ffbf4b33 | /2week/problem3.c | 99f604e904acceba65859ed0ed55e02b656eed70 | [] | no_license | JinjooSeo/cs50 | 7e0a4a9bd84ef6f033f4f76e9c6f247998fe118a | 6e451caa40ac42d5939ae87e919f973a7c0d6c0e | refs/heads/main | 2023-03-22T22:37:27.867162 | 2021-02-24T11:58:18 | 2021-02-24T11:58:18 | 332,621,411 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,503 | c | #include <stdio.h>
#include <string.h>
#include <stdbool.h> //need to use the boolean
bool print_menu(char* day_input);
int main(){
char *day; //define input
bool flag = true; //initialize the flag which will be used in wrong case
while (flag == true){ //ask the question until correct case comes out
printf("요일... | [
"jin.joo.seo@cern.cj"
] | jin.joo.seo@cern.cj |
5b008260a0af66053c0308d86860819c87def6d1 | ddd2fea89ad2a0fff3ab03196bd587a1a507b484 | /include/pharovm/parameters/parameterVector.h | e66d37a40e279f551a3f9ea1f0d6525b11d86739 | [
"MIT"
] | permissive | pharo-project/pharo-vm | b66806f84c389f1115be007414a8ed1f2581b2cb | b67609b953ba847c1c2f1e9c857fd22ed48ce566 | refs/heads/pharo-10 | 2023-09-04T02:37:09.190132 | 2023-08-16T16:51:13 | 2023-08-16T16:51:13 | 11,979,155 | 110 | 45 | NOASSERTION | 2019-04-30T13:41:12 | 2013-08-08T15:03:53 | C | UTF-8 | C | false | false | 735 | h | #ifndef PHAROVM_PARAMETER_VECTOR_H
#define PHAROVM_PARAMETER_VECTOR_H
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "errorCode.h"
#include <stdbool.h> // For bool
#include <stdint.h>
/**
* Parameter vector.
* I am used to hold an array of arguments.
*/
typedef struct VMParameterVector_
{
uint32_t... | [
"roniesalg@gmail.com"
] | roniesalg@gmail.com |
7fc74902f0507b718029d85bbc712c5e578bf7c2 | 28d0f8c01599f8f6c711bdde0b59f9c2cd221203 | /sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/amdgpu_processpptables.c | 9825fb3ef1771b78b8e1c33328e7fed7299a2305 | [] | 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 | 56,867 | c | /* $NetBSD: amdgpu_processpptables.c,v 1.2 2021/12/18 23:45:26 riastradh Exp $ */
/*
* Copyright 2015 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 with... | [
"riastradh@NetBSD.org"
] | riastradh@NetBSD.org |
6d6feb4e03821daa55b821f8ae9adaa7dbf02e40 | a516fe677a42ad444c8b07d1174318aef564d9f8 | /src/qt/guiconstants.h | 2657fda68a3ae1997db22c888150eecc483efaf9 | [
"MIT"
] | permissive | Whiff-dev/WhiffV2.0 | 251a7d7328fd3ab0978e15a86623bc741df2e49a | e44fffbe9f448e2bd2362cc74057bc541594f58b | refs/heads/master | 2020-03-30T02:28:37.889867 | 2018-09-27T18:44:45 | 2018-09-27T18:44:45 | 150,632,734 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,037 | h | // Copyright (c) 2011-2016 The Bitcoin Core developers
// Copyright (c) 2017 The Whiff Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WHIFF_QT_GUICONSTANTS_H
#define WHIFF_QT_GUICONSTANTS_H
/* Milliseco... | [
"whiffnetwork@gmail.com"
] | whiffnetwork@gmail.com |
a6fb82176b3d242f57fd5c89f82c68cb6dff2444 | 00f816b664a5fc50933c81f53aba07bd99c563ac | /SAM_IoT_Certs_Generator/SAM_IOT_WINC_PROV.X/cryptoauthlib/lib/atca_execution.h | a341b8f9f798db3a38b53b7d8b07dfa70bcaa991 | [] | no_license | daisukeiot/sam-iot-provision | 9ba51495fe09b63866222cb4dbcce209d99a9146 | abd3857e6e3e688702efde6e9431df897a85c901 | refs/heads/main | 2023-04-20T21:27:12.175098 | 2021-05-08T04:02:18 | 2021-05-08T04:02:18 | 358,800,332 | 0 | 0 | null | 2021-04-17T06:14:09 | 2021-04-17T06:14:09 | null | UTF-8 | C | false | false | 2,260 | h | /**
* \file
* \brief Defines an execution handler that executes a given command on a
* device and returns the results.
*
* The basic flow is to wake the device, send the command, wait/poll for
* completion, and finally receives the response from the device and does
* basic checks before returning to calle... | [
"randywu763@gmail.com"
] | randywu763@gmail.com |
2624401022ffb38b76dca685541fb03a688a1668 | 2541d7f54f55e401b9bfcf513f1a0b7f1de9cf7d | /SimpleProject/SimpleProject/Hello.c | 7c559c2563967a4088521a068f415c3f6ed7e915 | [] | no_license | Nonspecialist1/C-language | 08ab2ddabe498003eb15e7053f78783b1d25eea8 | 6d6824f9c3032e2658f2dde856c524b0d189c058 | refs/heads/main | 2023-07-14T02:23:31.890315 | 2021-08-31T12:22:05 | 2021-08-31T12:22:05 | 397,633,025 | 0 | 0 | null | null | null | null | UHC | C | false | false | 161 | c | #include <stdio.h>
int main(void)
{
printf("심세현 \n");
printf("010-6899-6608 \n");
printf("울산 남구 삼산로93번길 40 \n");
return 0;
} | [
"noreply@github.com"
] | Nonspecialist1.noreply@github.com |
89a4cef7ed606095739cdfac6b0b7a357e5339d2 | aa1529f689a962f5af337cb4476e0b8908396e2a | /sys/arch/amd64/stand/efi64/machdep.c | 9d6ba9cbfc560337dc49fd37bc8c7bca538332e0 | [] | no_license | netzbasis/openbsd-src | 4b85ec60a3de43a57f4816ae04b363710c4b1c20 | d934f830de7af7ac65c21e2af85a2e04cf7d2e7f | refs/heads/master | 2021-05-22T07:59:33.483036 | 2021-01-09T22:58:59 | 2021-01-09T22:58:59 | 22,029,913 | 4 | 2 | null | 2021-01-09T17:17:55 | 2014-07-20T09:19:31 | null | UTF-8 | C | false | false | 2,802 | c | /* $OpenBSD: machdep.c,v 1.1 2019/05/11 02:36:10 mlarkin Exp $ */
/*
* Copyright (c) 2004 Tom Cosgrove
* Copyright (c) 1997-1999 Michael Shalayeff
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | [
"programmer@netzbasis.de"
] | programmer@netzbasis.de |
10b03ad5bf9d38cebf9db96d278c5a2927f0b9e3 | e25c8b65c0115053b14f8ecffaea94a964eefa1f | /ds/u/t/tako.tmp/chiyo_waist.c | b3d15fd54de69960561c5b1416501c65b2f98a39 | [] | no_license | zwshen/mudos-game-ds | c985b4b64c586bdc7347bd95d97ab12e78a2f20f | 07ea84ebdff5ee49cb482a520bdf1aaeda886cd0 | refs/heads/master | 2022-03-01T14:55:10.537294 | 2022-02-15T15:41:26 | 2022-02-15T15:41:26 | 244,925,365 | 4 | 1 | null | 2022-02-15T15:41:27 | 2020-03-04T14:44:49 | C | BIG5 | C | false | false | 638 | c | #include <armor.h>
#include <ansi.h>
inherit WAIST;
void create()
{
set_name(CYN"毛皮繫帶"NOR ,({ "maper waist","waist" }) );
set("long","一條用千萬絲山豬毛所製成的,柔軟且不刺,韌性絕佳。\n");
if ( clonep() )
set_default_object(__FILE__);
else {
set_weight(1000);
set("material", "ski... | [
"zwshen0603@gmail.com"
] | zwshen0603@gmail.com |
396109c6c1c15d69c64ede77735b7ae4352dd84e | 6b952cdc72c0503be0ee498b3332189b9f74db36 | /world/d/xkisland/shatan2.c | 63df5d4084bb29b8d8f44386c71cb9a1848a3382 | [] | no_license | wwwguess/4321 | 6d58e58396465ed6403b06b091e846227880a050 | 2322c6f5f34c594040a3bc352d9d1c63d77f2070 | refs/heads/master | 2021-01-17T10:52:06.325973 | 2017-04-28T02:43:35 | 2017-04-28T02:43:35 | 84,018,934 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 4,070 | c | //xk island.shatan2.c
//dan
inherit ROOM;
void check_trigger();
void on_board();
void arrive();
void close_passage();
int do_yell(string);
void reset();
void create()
{
set("short", "沙滩");
set("long", @LONG
面前是 一望无际的大海。岸边停靠着几艘海船(boat).
北面有一个小屋.
LONG
);
set("exits", ([
"north"... | [
"fanjiang008@gmail.com"
] | fanjiang008@gmail.com |
a308fee230df8ff74f4794c10b9cacdb4a54a5b8 | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/linux-master/drivers/gpio/gpio-wcove.c.bak.c | c01f2bdc03a03f41c4296a2a8afc9650e64c1a65 | [] | 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 | 13,274 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
/*
* Intel Whiskey Cove PMIC GPIO Driver
*
* This driver is written based on gpio-crystalcove.c
*
* Copyright (C) 2016 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
86257082161fd9283f2b23fdd2fd75d9a279b097 | c425afb8bb6b182168fd4c3a46c9b334f4740e60 | /u/redl/teleport/yuanjiang/npc/xiao.c | 485d252e3397bb3fc8f1a7d5cb6c074d9f3e3cc3 | [] | 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 | 8,903 | c | // This program is a part of NT MudLIB
// redl 2015/10
// /u/redl/teleport/yuanjiang/npc/xiao.c
#include <ansi.h>
inherit BOSS;
#define SKLV 400000
#define APPL 6000
#define BONUS_EXP 5000000
void create()
{
set_name(CYN "晓月禅师" NOR, ({ "xiaoyue chanshi", "chanshi", "xiaoyue" }) );
set("title", HIG "蜀... | [
"i@oiuv.cn"
] | i@oiuv.cn |
f9314463fc92cfbc228fc38ed2a6f297f9903223 | b62e7086980cb97554b01dbfad64a040f9f80165 | /NtupleMacros/ChargeMisIdentification/browseStacks.C | f8a3c5a442cedc1de769b588fadd4f3efd139a7c | [] | no_license | tastest/CMS2 | f819962e172c712abd82a8b213c4cb2286bcdcfe | e31e02d6037fbef206e216413b4def558ccefb39 | refs/heads/master | 2021-01-10T20:22:52.181267 | 2013-07-12T15:16:31 | 2013-07-12T15:16:31 | 10,772,930 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,491 | c | #include "TH1.h"
#include "TH2.h"
#include "THStack.h"
#include "TRegexp.h"
#include "TROOT.h"
#include "TCanvas.h"
#include "TObjArray.h"
#include "TLegend.h"
#include "TPaveText.h"
#include "TText.h"
#include "TStyle.h"
#include <iostream>
#include "getMyHistosNames.h"
#include "histtools.h"
// Make the stacks and ... | [
"gutsche"
] | gutsche |
3dbe5535f6a59159386e9093ccd44d0ed88d1335 | 60ea3637fe65bd27a14d36d9626e1033b0144dd4 | /analysis/src/irVariableRange.h | 5dab05d71f5855b2dcac616476239e613e2209fa | [] | no_license | plestrin/bacs | e30938d9b0a016dff841b48fe68aca8d36f1e272 | 73b32d09fe0b488e7eec67ae25898449c33b7dbf | refs/heads/master | 2020-12-30T16:39:59.281360 | 2018-04-04T17:20:17 | 2018-04-04T17:20:17 | 90,999,093 | 6 | 1 | null | null | null | null | UTF-8 | C | false | false | 747 | h | #ifndef IRVARIABLERANGE_H
#define IRVARIABLERANGE_H
#include <stdint.h>
#include "variableRange.h"
#include "ir.h"
static inline struct variableRange* ir_operation_get_range(struct irOperation* operation){
if (operation->type != IR_OPERATION_TYPE_INST){
return NULL;
}
else{
return &(operation->operation_type.... | [
"pierre.lestringant@gmail.com"
] | pierre.lestringant@gmail.com |
9787cc685e2f465f216553a196956d101ba0fe7d | 70a5dbc111dc1ddd38791dc3235cda97fa7974e4 | /array_struct.c | 5baf5e2a998aae6046d76a26a4d2bd2abb2d2962 | [] | no_license | pipibodock/Meus_exercicios_em_C | e6e5fee34cb6628aa4dff4c9824d69f156fa1b94 | 099b8abe75180276a26bb684bedfec622458d869 | refs/heads/master | 2020-04-12T23:47:47.343285 | 2019-01-26T13:07:32 | 2019-01-26T13:07:32 | 162,830,277 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 475 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct pessoa{
int idade;
};
int main(){
/*A declaração de uma struct pode ser feita em forma de array
* ou em uma matriz..
* Para facilitar, podemos colocar uma struct dentro de um for
* e trabalhar de diferentes maneiras.*/
struc... | [
"fellipe.mirandamatos@gmail.com"
] | fellipe.mirandamatos@gmail.com |
88c4caecc6a3dc914e6726d6b19f8f82bb01a8f0 | ce05d3a95ee667e6d310f23a0b8505f1841ec4c6 | /teaching-stuff/c/offset_of/without_offset_of.c | 31a52ea76cdc969f477a5abc0449934e6e9dc9bd | [
"BSD-3-Clause"
] | permissive | fluca1978/fluca1978-coding-bits | 0bff4e59c2775c087ff6cd2c89867a2427df3458 | e0ec97e7a48aaee13fa094be39030dfbe42d9202 | refs/heads/master | 2023-05-14T20:14:15.856105 | 2023-04-17T11:12:54 | 2023-04-17T11:12:54 | 4,429,598 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,478 | c | /**
* A simple program to demonstrate how to extract embedded structures using
* pointer math.
*
* Compile the program with:
* gcc -lm -O0 without_offset_of.c
* and run.
*/
#include <stdio.h>
#include <stddef.h>
#include <math.h>
/**
* Define a structure that represents an header
*/
struct header {
/*... | [
"fluca1978@gmail.com"
] | fluca1978@gmail.com |
16b069af9cacab9f1c0bd5c785b98b0ec98c8328 | beb80efdf28961f478d05b45c37133873ef54d36 | /src/main.c | 7415ad61342879c77f2d05bd582c97d546069cea | [
"MIT"
] | permissive | MartinezTorres/sdcc_msx_interlacedScrollMSX1 | bc0f54e01e777383b25ee20b9564646c563debb4 | 69b5463c67c822e6a272acbfdadb6bee81cdbdf7 | refs/heads/master | 2020-12-04T02:10:06.553869 | 2020-01-03T22:38:19 | 2020-01-03T22:38:19 | 231,566,229 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,694 | c | #include <common.h>
////////////////////////////////////////////////////////////////////////
// AUDIO
/*static void audioUpdate(void) {
uint8_t oldSegmentPageB = mapper_load_module(psg, PAGE_B);
TMS99X8_setRegister(7,BWhite);
PSG_init();
TMS99X8_setRegister(7,BLightRed);
ayr_spin();
... | [
"manuel.martinez@kit.edu"
] | manuel.martinez@kit.edu |
35cbc8762bd24454a2d31b4a5a342a980423c711 | 9fc1eb30f15800d61ffd9b6d1aed5e2dfdc099cf | /src/app/wave_app/J2735/RoadSideAlert.h | a0d894aa077ec9ed1bdfe51b08913f7c0ac62417 | [] | no_license | cheungseol/metawave | b6e41ee7ef96cfe9330eaf6651a347330bb66cea | 552c5a14f570bca3db9092bd9f3e5437444dbc34 | refs/heads/master | 2020-12-03T04:08:43.684339 | 2015-03-05T01:39:01 | 2015-03-05T01:39:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,430 | h | /*
* Generated by asn1c-0.9.26 (http://lionet.info/asn1c)
* From ASN.1 module "DSRC"
* found in "DSRC_R36_Source.ASN"
* `asn1c -fcompound-names`
*/
#ifndef _RoadSideAlert_H_
#define _RoadSideAlert_H_
#include <asn_application.h>
/* Including external dependencies */
#include "DSRCmsgID.h"
#include "MsgCount.... | [
"root@virtual-machine.(none)"
] | root@virtual-machine.(none) |
1a4f5a59cf447bfcece3da4bca131427a14c22ee | 88c0e520e2389e676fea559f944109e1ee7e157b | /include/windows.web.syndication_697d58cc.h | fdd9758e0c1750e266d8504bc94b39d55e9fe3ee | [] | no_license | jchoi2022/NtFuzz-HeaderData | fb4ecbd5399f4fac6a4982a0fb516dd7f9368118 | 6adc3d339e6cac072cde6cfef07eccafbc6b204c | refs/heads/main | 2023-08-03T02:26:10.666986 | 2021-09-17T13:35:26 | 2021-09-17T13:35:26 | 407,547,359 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 243,596 | h | #pragma warning( disable: 4049 )
#include <rpc.h>
#include <rpcndr.h>
#error this stub requires an updated version of <rpcndr.h>
#include <windows.h>
#include <ole2.h>
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#include "inspectable.h"
#include "As... | [
"jschoi.2022@gmail.com"
] | jschoi.2022@gmail.com |
5d6804edc87ce78cb2da85594572db2232d85079 | 19eb97436a3be9642517ea9c4095fe337fd58a00 | /private/windows/shell/accesory/calc/sciset.c | 83b802dd0d1a63a3121fd814a86198e2739a81d7 | [] | no_license | oturan-boga/Windows2000 | 7d258fd0f42a225c2be72f2b762d799bd488de58 | 8b449d6659840b6ba19465100d21ca07a0e07236 | refs/heads/main | 2023-04-09T23:13:21.992398 | 2021-04-22T11:46:21 | 2021-04-22T11:46:21 | 360,495,781 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,918 | c | /**************************************************************************/
/*** SCICALC Scientific Calculator for Windows 3.00.12 ***/
/*** By Kraig Brockschmidt, Microsoft Co-op, Contractor, 1988-1989 ***/
/*** (c)1989 Microsoft Corporation. All Rights Reserved. ***/
/*** ... | [
"mehmetyilmaz3371@gmail.com"
] | mehmetyilmaz3371@gmail.com |
2eaab40ce2cdf9ca01ac7dd83b0ba4e276ea7b92 | cb57c0c08271922286c819182bb34d536112c802 | /xsrc/external/mit/xf86-video-tseng/dist/src/tseng_accel.c | 38815d2b9b0cc0effb664504fec72fb5ccbba310 | [
"HPND-sell-variant",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-mit-old-style",
"MIT"
] | permissive | krytarowski/netbsd | 4b42b050e506bf5fca784acd35af6fe987824ce3 | ffed895a5f372df15637ce576bbab6235195bf22 | refs/heads/master | 2020-06-02T06:25:47.099329 | 2015-03-16T18:15:02 | 2015-03-16T18:15:02 | 30,895,197 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 46,986 | c |
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/*
* if NO_OPTIMIZE is set, some optimizations are disabled.
*
* What it basically tries to do is minimize the amounts of writes to
* accelerator registers, since these are the ones that slow down small
* operations a lot.
*/
/* #define NO_OPTIMIZE */
/*
* if ET... | [
"n54@gmx.com"
] | n54@gmx.com |
3877fdb805aca4ade11f233fe76ca42f0bce9428 | 3c1452ee9963fedd2abd6bf5c9b8be76c9a712b2 | /pic/pic18/pic18lf6628_tdd.h | 76bd63b9db959a0defa6187ba2671555b7958c52 | [
"MIT"
] | permissive | tiborsimon/embedded-tdd-headers | 7fd3a571bb7a381e72e68487bae56ffe921f5ed9 | 2528392a463cd724df2dab6712108a27cf092f7c | refs/heads/master | 2021-01-20T20:15:52.778853 | 2016-07-27T07:41:46 | 2016-07-27T07:41:46 | 64,257,934 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 57,239 | h | /* Generated on 2016-07-26
===============================================================================
P I C T D D R E A D Y R E G I S T E R D E F I N I T I O N
===============================================================================
Created by Tibor Simon - tiborsimon.io
Generator script: ht... | [
"tibor.simon@nokia.com"
] | tibor.simon@nokia.com |
a5493faff007391beb23cb6e0266889496f0f695 | 917d735ee453cf0657e7c5a4675b0d065206cd1f | /src/exec_cgi.c | 39733e5c5abdc54b0c2c2eb6f8d79302d5a4ec05 | [] | no_license | KeyaJohn/kayeHttp | 9285c6024030b3475135843be8f7ce719a964d61 | 5794de7511c081074117b6779f677fc1bc075782 | refs/heads/master | 2021-05-10T08:49:35.412107 | 2018-02-06T16:18:00 | 2018-02-06T16:18:00 | 118,904,618 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,058 | c |
#include "server.h"
#include"log.h"
extern zlog_category_t * main_log;
void exec_cgi(int sockfd,char method[],char url[],char parm[],int len)
{
int pipe1[2],pipe2[2];
char block[SIZE] ;
memset(block,'\0',SIZE);
char path[SIZE] = "./httpdoc/";
puts(path);
if( pipe( pipe1 ... | [
"1572831416@qq.com"
] | 1572831416@qq.com |
58c4372b61b71bffebeb3201f2c3aa1a66522c1d | 8ac826292e2167073ce8725e7ae30385d0bd7eea | /SYSTEM/usart/usart.c | 45232a70662261db923cfe9ca657a9a850ebfa7a | [] | no_license | ChenYaoBinGitHub/ucosiii_example | 87cf139741d9548cfc013349d8bae8219e422971 | 112e74367ed07bd9a1cae69f21145b6f12dc6134 | refs/heads/master | 2020-05-02T02:11:21.650801 | 2019-04-15T06:59:06 | 2019-04-15T06:59:06 | 177,699,072 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 4,681 | c | #include "sys.h"
#include "usart.h"
//////////////////////////////////////////////////////////////////////////////////
//如果使用os,则包括下面的头文件即可.
#if SYSTEM_SUPPORT_OS
#include "includes.h" //os 使用
#endif
//////////////////////////////////////////////////////////////////
//加入以下代码,支持printf函数,而不需要选择use MicroLIB ... | [
"273983590@qq.com"
] | 273983590@qq.com |
890e4dfab3c5ebdf9ea35b4162792f61c9006236 | 3c4c254ed44b543f4dbcf8dbb487aae55186f4b9 | /libraries/yubihsm/yhauth/main.c | 81d5cb188ecc0491ec9e788e6915d50019996a6f | [
"MIT",
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | OASISBloc/oasischain | 0c049a35076b91187e168fb6aa71a41de5411f56 | 7864c466188816253ba0edd78bafc39810e3feb1 | refs/heads/master | 2020-08-07T23:57:14.992581 | 2019-12-27T06:29:59 | 2019-12-27T06:29:59 | 213,630,681 | 0 | 2 | MIT | 2019-12-27T06:30:00 | 2019-10-08T12:02:24 | C++ | UTF-8 | C | false | false | 9,009 | c | /*
* Copyright 2015-2018 Yubico AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | [
"developer@oasisbloc.com"
] | developer@oasisbloc.com |
9ddb5cb3fe29a0878d81659f6cf8c315b769c531 | bde250a5bd97435abf0ffa505ba3da1f129720d8 | /ds/src/sam/client/samclip.h | 1057eacb67b0ca0795c7e9524dd935294d698727 | [] | no_license | KernelPanic-OpenSource/Win2K3_NT_ds | f45afd1a1243e42a8ccb489048f4a73946dad99f | 0d97393773ee5ecdc29aae15023492e383f7ee7f | refs/heads/master | 2023-04-04T00:34:51.876505 | 2021-04-14T04:49:28 | 2021-04-14T04:49:28 | 357,774,650 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,594 | h | /*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
samclip.h
Abstract:
This file contains definitions needed by SAM client stubs.
Author:
Jim Kelly (JimK) 4-July-1991
Environment:
User Mode - Win32
Revision History:
--*/
#ifndef _NTSAMP_CLIENT_
#define _NTSAMP_CLIENT_
/////... | [
"polarisdp@gmail.com"
] | polarisdp@gmail.com |
f243a73a29c9729609d999020cc56df2a2da3142 | d2b42730171e695684668f9d8c59051840fd3440 | /serial/stencil_precompute.c | 424245501802d6322f5ded89d8fdb0d4cf2eda26 | [] | no_license | boi4/stencil | 9912d9192167b1a63a987067612c70638d101962 | d7e13d757b8b8e5a238d8cec561794a98a7201ef | refs/heads/master | 2022-03-21T16:50:30.625185 | 2019-12-12T14:04:23 | 2019-12-12T14:04:23 | 218,052,295 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,377 | c | #include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/mman.h>
#include "stencil.h"
extern void output_image(const char* file_name, const int nx, const int ny,
const int width, const int height, float* image);
// debug ... | [
"jan.fecht@tum.de"
] | jan.fecht@tum.de |
21eda54c69e6ee732ad8217ef9e6fcf0199d532b | f4e17640afef6d1b4d4a85f583a90e37f705dbd5 | /B2G/gecko/content/xtf/src/nsXTFWeakTearoff.h | 342927ead8e9728dc0c5cc3ac4a82146382b3603 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | wilebeast/FireFox-OS | d370362916f0c5a5408fa08285dbf4779f8b5eb3 | 43067f28711d78c429a1d6d58c77130f6899135f | refs/heads/master | 2016-09-05T22:06:54.838558 | 2013-09-03T13:49:21 | 2013-09-03T13:49:21 | 12,572,236 | 4 | 3 | null | null | null | null | UTF-8 | C | false | false | 518 | h | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef __NS_XTFWEAKTEAROFF_H__
#d... | [
"info@hadrons.me"
] | info@hadrons.me |
bc548a1cc3a4ee37e313fe854c22a668753c1ea2 | 933376e865252843443fd558b58df44910020bb4 | /modules/idn/unicode_template.c | 2178a19b56ddc88297ba870737674bf98ef68205 | [
"JPNIC",
"W3C",
"LicenseRef-scancode-philippe-de-muyter",
"LicenseRef-scancode-cern-attribution-1995"
] | permissive | shiv50084/libwww | 65daf8f61f4fce944f214dd4359b022396c5ce6d | 718143a1b74539d8851ffc6408341c4a5246e30b | refs/heads/master | 2021-05-29T05:25:52.883179 | 2015-04-27T02:16:03 | 2015-04-27T02:16:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,966 | c | /* $Id: unicode_template.c,v 1.1 2005-01-04 16:54:03 duerst Exp $ */
/*
* Copyright (c) 2000,2001 Japan Network Information Center.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set forth bellow.
*
* LICENSE TERMS AND CONDITIONS
*
* The following License Terms and... | [
"stavros.vagionitis@gmail.com"
] | stavros.vagionitis@gmail.com |
3b2755b5640a9e1e8e3c731658bc90f98fa9de2b | a94401309e3c96fa0540a867f74fcba956eccf6d | /ccp(pwm mode)/ccp(pwm mode).X/main.c | 246e4b9381ca734e872cfac18bc771ec4225ee80 | [] | no_license | EssamMohamedAbo-ElMkarem/EmbeddedSystemsPIC16f877a | cc04a816e2ae8a2ea8214fca725ed10e18d28738 | df5d00e6705ba02482793bef7aa01d29a4be43af | refs/heads/main | 2022-12-25T12:06:32.290871 | 2020-10-07T07:52:33 | 2020-10-07T07:52:33 | 301,962,654 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,166 | c | /*
* File: main.c
* Author: essam
*
* Created on August 10, 2020, 9:08 AM
*/
#include <xc.h>
#include "config.h"
#include <stdint.h>
#define _XTAL_FREQ 4000000
//-----[ Prototypes ]----
void PWM1_Init();
void PWM1_Set_Duty(uint16_t);
void ADC_Init();
uint16_t ADC_Read(uint8_t);
//==============... | [
"noreply@github.com"
] | EssamMohamedAbo-ElMkarem.noreply@github.com |
57a904e8c75c49357eea4e277a27e60b264323ff | 10d699e889e1bfcd775a9a1267bec3e9e1944dfc | /firmware/HybridEncoder.cydsn/Generated_Source/PSoC4/CapSense_CSHL.h | 74dfb4ce608575005e4ec1db856c301c15565efc | [] | no_license | JamesNewton/HybridDiskEncoder | 49adc444d7a25978dcb1d79ac3443001239d4f92 | 6fc47649e3411f9941605c82fe5232267a1f0699 | refs/heads/master | 2023-03-09T20:26:57.390333 | 2023-02-28T06:36:00 | 2023-02-28T06:36:00 | 158,117,893 | 21 | 4 | null | 2018-12-13T21:42:39 | 2018-11-18T19:14:02 | C | UTF-8 | C | false | false | 16,628 | h | /*******************************************************************************
* File Name: CapSense_CSHL.h
* Version 2.60
*
* Description:
* This file provides constants and parameter values for the High Level APIs
* for CapSense CSD component.
*
* Note:
*
**********************************************************... | [
"JamesN4@efplus4.local"
] | JamesN4@efplus4.local |
450b09e0ec41d5c19f91d5264d705c9f790c5d1d | 6dbab404a8b292de66bef28649c44446404d0a0d | /Trabajos Practicos/Trabajo Practico N1/client_cliente.c | 832c75b7f0fdba5972f571ed302c6c77f23f122a | [
"MIT"
] | permissive | stephanieizquierdo/FIUBA-TallerDeProgramacionI | bd330bd08fe0d28b759043430f326615604c579e | 830c241cb7ed317775dd4eef3e1e15257eefea9a | refs/heads/master | 2023-07-12T12:36:56.360222 | 2021-08-21T18:18:31 | 2021-08-21T18:18:31 | 388,183,435 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,700 | c | #include "client_cliente.h"
#include "common_socket.h"
#include "client_lector.h"
#include "common_encriptador.h"
#define ERROR -1
#define EXITO 0
int cliente_inicializar(cliente_t* self,
lector_t* un_lector,
char* metodo,
char* key){
if(!self || !un_... | [
"sizquierdo@fi.uba.ar"
] | sizquierdo@fi.uba.ar |
0831e6b4d804ce6d798b7138fa12f6be7980627e | 8e257e4766d8384a3d04abb34f30a2e14c06b711 | /Arrays/more than avg.c | 9f5ea008743ec9938bcddd050cb0b53f33450b74 | [] | no_license | Lucifergene/C-Programs | 59cd5c33d19bb9f8b36ba2204bd6817d99866c41 | cca1c23e3f3f961dd7df5ff58c27fa36aa573662 | refs/heads/master | 2021-06-29T06:05:46.296954 | 2019-05-05T18:03:32 | 2019-05-05T18:03:32 | 185,065,697 | 0 | 1 | null | 2020-10-17T05:44:12 | 2019-05-05T18:07:52 | C | UTF-8 | C | false | false | 443 | c | //DISPLAY ELEMENTS MORE THAN AVERAGE
#include<stdio.h>
int main()
{
int a[10]={1,2,3,4,5,6};
int i,sum=0,avg;
printf("ENTER ELEMENTS OF ARRAY\n");
for(i=0;i<5;i++)
{
printf("%2d",a[i]);
}
printf("\n");
for(i=0;i<5;i++)
{
sum+=a[i];
}
avg=sum/5;
for(i=0... | [
"kundu.abheek1999@gmail.com"
] | kundu.abheek1999@gmail.com |
dbb9ee8043ae8df0915b66be77a130192b86f717 | 3cce0f61d05fb93f01115607299f31e7f328d405 | /libft/string/ft_strchr.c | 3ff2d4557b0ab2abfe6a3f44d069368aff2ee451 | [] | no_license | tmatis/minitalk | e0f63f5ae0ec4bd589d8505f69e8e9342efbbe03 | 6887060d6ddf63d44bd4b4b5a0a0a54b0fa239f9 | refs/heads/master | 2023-05-04T01:44:58.803192 | 2021-05-27T21:31:11 | 2021-05-27T21:31:11 | 371,143,788 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,057 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: ... | [
"tmatis@student.42.fr"
] | tmatis@student.42.fr |
5bda3514af1a3ee80591d5b00469e15ed2f6a0e3 | 79141e6a7fdebd0c07167d12ef57ad96d02dda5c | /serverdate.c | 6e0d3908501311643be9c465ecc35b85d30c1d3f | [] | no_license | aidaniza/Date-and-Time | 188878d7372f2bc8e5e9c3f31616e7fc99850fef | 37474c95c3149e3dbc3cf57698927740418f7916 | refs/heads/master | 2020-04-09T22:35:28.352699 | 2018-12-06T06:59:58 | 2018-12-06T06:59:58 | 160,632,633 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,670 | c | #include <stdio.h> // standard input and output library
#include <stdlib.h> // this includes functions regarding memory allocation
#include <string.h> // contains string functions
#include <errno.h> //It defines macros for reporting and retrieving error conditions through error codes
#include <time.h> //contains variou... | [
"noreply@github.com"
] | aidaniza.noreply@github.com |
5be1ef3f65753e740473ff0f166928ab43ddfda9 | bf1c09ea01d159b718c7863cd0ee2bb31913280d | /6.6IO/Testfd2.c | d99c2bb313f3b36113b0e961d4c7ca40565fd7a7 | [] | no_license | wq1229362515/Linux | 044cefd38855a24e01407d008df9d1a998de5e7f | 1352075e2ffdfff2186a27f6d98f82e7363e0b53 | refs/heads/master | 2020-05-23T23:42:22.174731 | 2019-10-17T14:51:04 | 2019-10-17T14:51:04 | 187,000,264 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,963 | c | #include<stdio.h>
#include<fcntl.h>
#include<string.h>
#include<error.h>
int main () {
/*
char buf[1024];
//从标准输入里面读数据
ssize_t s = read(0,buf,sizeof(buf));
printf("%d\n",s);
if(s > 0){
buf[s] = 0;
write(1,buf,strlen(buf));
write(2,buf,strlen(buf));
}
*/
//in... | [
"1229362515@qq.com"
] | 1229362515@qq.com |
315cc74e783baec62180e92ab956fb05021c6661 | fe73b0024a20ca04830e40ad761388aff41e739a | /third_party/poco/openssl/build/include/openssl/dh.h | ae309e7b3161e4cfaf6077cb374d8bb5870c11c5 | [
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"OpenSSL",
"BSL-1.0",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | toggl-open-source/toggldesktop | c5075d194edfe0c936a851e6a7753c0b63a537c6 | 013038304ee8e9154db4a45fb642716956cf153b | refs/heads/master | 2023-08-30T14:58:53.807850 | 2023-06-22T11:38:35 | 2023-06-22T11:38:35 | 16,703,726 | 712 | 124 | BSD-3-Clause | 2022-08-31T10:06:31 | 2014-02-10T17:50:41 | C++ | UTF-8 | C | false | false | 14,075 | h | /*
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/lice... | [
"vinhnghiatran@gmail.com"
] | vinhnghiatran@gmail.com |
07f08851e83c02732bf0520c184b853b3753fc99 | 940d7b93fb27e8eead9b6e52bc5c7444666744dd | /perl/src/beos/beosish.h | 7aab15f4022651bbc0d36db0307e8dae5e54885e | [
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-1.0-or-later",
"LicenseRef-scancode-generic-exception",
"LicenseRef-scancode-proprietary-license",
"Artistic-2.0",
"LicenseRef-scancode-unknown-license-reference",
"Artistic-1.0-Perl",
"Apache-2.0"
] | permissive | pilotx45/sl4a | d446531d310cc17d93f24aab7271a0813e8f628d | 150e3e46b5103a9b9a391034ef3fbc5bd5160d0f | refs/heads/master | 2022-03-24T19:48:30.340479 | 2022-03-08T16:23:58 | 2022-03-08T16:23:58 | 277,016,574 | 1 | 0 | Apache-2.0 | 2022-03-08T16:23:59 | 2020-07-04T01:25:36 | null | UTF-8 | C | false | false | 736 | h | #ifndef PERL_BEOS_BEOSISH_H
#define PERL_BEOS_BEOSISH_H
#include "../unixish.h"
#undef waitpid
#define waitpid beos_waitpid
pid_t beos_waitpid(pid_t process_id, int *status_location, int options);
/* This seems to be protoless. */
char *gcvt(double value, int num_digits, char *buffer);
/* flock support, if availa... | [
"damonkohler@gmail.com"
] | damonkohler@gmail.com |
40149d5120d893033babc4a9c5efdf5ab759626c | c8e6dfe5d2d4511f6ba1413b278932a2ab10a9c1 | /lib/am335x_sdk/ti/csl/src/ip/emif/V1/priv/csl_emif.c | 888c2d92810ae0beb5d0893dd8a992636b538d1b | [
"BSD-3-Clause",
"MIT"
] | permissive | brandonbraun653/Apollo | 61d4a81871ac10b2a2c74c238be817daeee40bb6 | a1ece2cc3f1d3dae48fdf8fe94f0bbb59d405fce | refs/heads/main | 2023-04-08T19:13:45.705310 | 2021-04-17T22:02:02 | 2021-04-17T22:02:02 | 319,139,363 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 103,249 | c | /**
* @file csl_emif.c
*
* @brief
* C implementation file for the EMIF module CSL-FL.
*
* Contains the different control command and status query functions definitions
*
* \par
* ============================================================================
* @n (C) Copyright 2015-2018, Texas Instrument... | [
"brandonbraun653@gmail.com"
] | brandonbraun653@gmail.com |
7b428602ff9db514e57c1d2dd71fe412787d74cb | 68b03e61d380ceaf006fbd984d33707a59330d77 | /third_party/include/tensorflow/external/local_config_cuda/cuda/cuda/include/thrust/system/detail/sequential/get_value.h | f165299a88277c031b48ded0148fe66c9dfe9a8a | [] | no_license | ishine/TensorflowModelDecoder | 833a5b81f6e0e1171cc8841b00d73788a5fb163c | df25fa455aa2a58217002f78e772ebe99ed45952 | refs/heads/master | 2020-08-02T16:58:57.094418 | 2017-11-22T06:57:10 | 2017-11-22T06:57:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 71 | h | /usr/local/cuda-8.0/include/thrust/system/detail/sequential/get_value.h | [
"hhguo1995@gmail.com"
] | hhguo1995@gmail.com |
03c27fce402b663caccabe5c42aa3eb400079f2b | e3d2ece0ffa9b62036473ddf33e9b80625035add | /Lab4/lex.yy.c | a8237d74e4bba0de12efc38e69e8d389fe82d886 | [] | no_license | alexandraneamtu/LFTC-Lab | 9395c8c2612c3eaaee0f76a8283b65edb861fcc6 | a6b8bfc817e8d0ff24686cd397469e5ff0e381e8 | refs/heads/master | 2021-08-22T22:36:04.801448 | 2017-12-01T13:33:50 | 2017-12-01T13:33:50 | 112,743,330 | 3 | 2 | null | null | null | null | UTF-8 | C | false | false | 54,039 | c |
#line 3 "lex.yy.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 6
#define YY_FLEX_SUBMINOR_VERSION 0
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific ... | [
"alexandraneamtu97@gmail.com"
] | alexandraneamtu97@gmail.com |
b6158db41f5135404e3f083026597b88b97e7f3e | d068baa7924a9415c225aadfaac82de8c58f8417 | /tools/perl-5.10.0.5-32bit/lib/CORE/sys/socket.h | 934c915642586a66d524bc4020071181355d69b8 | [
"MIT"
] | permissive | xiongxu/windowsNGSapp | 87584468851720f8ab5d22465eed0e6ac0004c93 | 1f5dcc4e345d0fd940c4f2d8edcd260af4f08af3 | refs/heads/master | 2020-07-04T11:53:15.768872 | 2016-09-04T01:22:58 | 2016-09-04T01:22:58 | 67,298,584 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 6,146 | h | /* sys/socket.h */
/* djl */
/* Provide UNIX compatibility */
#ifndef _INC_SYS_SOCKET
#define _INC_SYS_SOCKET
#ifdef __cplusplus
extern "C" {
#endif
#define WIN32_LEAN_AND_MEAN
#ifdef __GNUC__
# define Win32_Winsock
#endif
#include <windows.h>
/* Too late to include winsock2.h if winsock.h h... | [
"xuxiong19880610@163.com"
] | xuxiong19880610@163.com |
62cf737970622cda6261c063bdc5430e1f753c24 | c661e802e9300bdff5e2d6a3bf6417b11f2fba42 | /tools/usr/local/arm/3.3.2/arm-linux/sys-include/asm-arm/arch-at91rm9200dk/irqs.h | a068006f59ea64dcb4efce549311c47daaf0b0af | [] | no_license | chin0/embedded_os_develop | fefe2817a0f01e20c02078d033fd5064657aa95c | db5ba27fbf549f846540463cd91bba12db5d6491 | refs/heads/master | 2021-01-23T00:14:39.523242 | 2017-04-24T16:00:32 | 2017-04-24T16:00:32 | 85,705,742 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 920 | h | /*
* linux/include/asm-arm/arch-at91rm9200dk/irqs.h
*
* Copyright (C) 2002 ATMEL Rousset
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at you... | [
"pypi1103@gmail.com"
] | pypi1103@gmail.com |
20785a0a6e10e7d413da1c313e6b9d3fad64f65b | 04a3bd408c93057cbe789ef50fd3e66d8a959f09 | /Lab 2/case2.c | 0eb80e8835bc67df6c53c89838ee5c146db8eb04 | [] | no_license | thisiskhan/sem2-labs | a2ec9c740d45442a84d515a2ca45ce2f8f0f55e6 | 49549fbc6b2feb5fbbc76f4cc5e1365432059cf9 | refs/heads/main | 2023-05-06T12:40:46.385767 | 2021-05-23T08:04:08 | 2021-05-23T08:04:08 | 369,994,473 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 364 | c | #include <stdio.h>
int main()
{
int i, N, x, total, missing_num, sum = 0, A[] = {1, 2, 3, 4, 5, 6, 7, 8, 10};
N = sizeof(A) / sizeof(A[0]);
x = N + 1;
total = x * (x + 1) / 2;
for (int i = 0; i < N; i++)
{
sum = sum + A[i];
}
missing_num = total - sum;
printf("The missing num... | [
"rk6265766@gmail.com"
] | rk6265766@gmail.com |
ca92df7102039f5cdc0fdec8e239ae842dd69b0e | 07d46bcacb703c3386336ccaf0c984a2f246a7a7 | /fixdecifs.c | 1404732ef80a9305399067ace925359172b52846 | [] | no_license | 21tesla/dumpifs | fc7f4b0998256f2cf230050d30b3bff9be30de46 | e350baa17f4040aa5239eb3f49e51e2771e23586 | refs/heads/master | 2022-12-14T23:38:10.181655 | 2020-09-16T20:33:20 | 2020-09-16T20:33:20 | 296,138,456 | 1 | 0 | null | 2020-09-16T20:15:55 | 2020-09-16T20:15:51 | null | UTF-8 | C | false | false | 4,588 | c | #include <stdio.h>
#include <stdlib.h>
//#ifdef QNX
#include <stdarg.h>
//#endif
#include "sys/image.h"
#include "sys/startup.h"
#define ENDIAN_RET32(x) ((((x) >> 24) & 0xff) | \
(((x) >> 8) & 0xff00) | \
(((x) & 0xff00) << 8) | \
(((x) & 0xff) << 24))
#define ENDIAN_RET16(x) ((((x) >> 8) & 0... | [
"askac@github.com"
] | askac@github.com |
52e66140f1e7045edfe701dc28751fa7a099ad82 | b36159ae68f7f8d55d773501310744d99f17f130 | /libft/ft_strmap.c | c062f0feb37dab6acbc8a45e356dc807069a287e | [] | no_license | krastykovyaz/fillit | e015596cc7dadb1d3cfc779e363549014a935454 | a2281a8f07fb58f86a5990db9ded6ef4d54d2d20 | refs/heads/master | 2020-08-30T09:57:24.767788 | 2019-10-29T18:31:10 | 2019-10-29T18:31:10 | 218,341,141 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,179 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmap.c :+: :+: :+: ... | [
"lnoisome@mi-g6.21-school.ru"
] | lnoisome@mi-g6.21-school.ru |
f03899a99f3a088b728ba379dee236ac420b6c6b | 597dbcd1b14f44864c74e1622bce8d4bda0832c5 | /include/keyboard.h | 9909c4b7419c4a8e6ffc6f487b38cef06785e097 | [] | no_license | CasdeGroot/Internet-radio | 6a9202ecd76c8198d57344be31a2592d3578afd4 | 0735386b4da59e78b7bc07d48c1bf47011a839cf | refs/heads/master | 2021-01-20T15:23:59.137455 | 2017-05-09T16:07:05 | 2017-05-09T16:07:05 | 90,765,399 | 0 | 0 | null | null | null | null | EUC-JP | C | false | false | 3,958 | h | /* ========================================================================
* [PROJECT] SIR
* [MODULE] Keyboard module
* [TITLE] keyboard module source file
* [FILE] keyboard.h
* [VSN] 1.0
* [CREATED] 28 july 2003
* [LASTCHNGD] 18 august 2003
* [COPYRIGHT] Copyright (C) STREAMIT BV... | [
"casdegroot@live.nl"
] | casdegroot@live.nl |
1a3d5365993f54330e688829ab89a66b96bed070 | d9d5b248896c39c72e0939328c5ece1e6858102f | /EXAMES PPP/EXAME 2009-2010 (ESPECIAL)/main.c | 9c8b33a982e30d1547f3db8ffa940a9ed18e5fab | [] | no_license | pgoncalvesgit/ResolucaoDeExamesPPP | f29e81fbcc6b2349ce2811c72d05d74fa690fb52 | fcbfa46fd7d4f034cb2f4ca6695a5993d69a7646 | refs/heads/master | 2020-06-04T15:33:24.754211 | 2019-06-15T14:09:32 | 2019-06-15T14:09:32 | 192,083,957 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,898 | c | #include <stdio.h>
#include <stdlib.h>
typedef struct List * lista;
typedef struct List{
int num;
lista next;
}Lista;
lista cria_lista(){
lista header, nova;
int i=0;
header = (lista)malloc(sizeof(Lista));
header->next=NULL;
header->num=0;
for (;i<10;i++){
nova =... | [
"noreply@github.com"
] | pgoncalvesgit.noreply@github.com |
f027a37658d86ad2a676a30aad7360f4d735cb93 | a908ba2a5786c2b7ed34025734e7b8291854b735 | /静态顺序表/顺序表/seqlsit.c | 4d664264c0f18f3b57ba0f774800267126e8e32d | [] | no_license | hnnzt/hnn | aca89b4c6c94da4672ad2d68173efb6062b81409 | 5339ee488d5a6266e0db36ea5382ec6bbe3e033c | refs/heads/master | 2020-03-27T03:11:14.390880 | 2018-09-01T02:53:14 | 2018-09-01T02:53:14 | 145,844,661 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 5,064 | c | #include "seqlist.h"
void InitSeqlist(pseqlist pseq)//初始化顺序表
{
assert(pseq);
pseq->size = 0;
}
void PrintSeqlist(pseqlist pseq)//打印顺序表
{
assert(pseq);
size_t i = 0;
if ((pseq->size) == 0)
{
printf("已经为空");
return;
}
else
{
for (i = 0; i < pseq->size; i++)
{
printf("%d->", pseq->arr[pseq->size]);
... | [
"hnn6362@163.com"
] | hnn6362@163.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.