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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d5302181197f05ef8e78fbf0c633ea3ee9475fac | 030bf91677ecee4b3164da33326b8c36434217e1 | /CountPrimes.c | 82b2e5c5f6f557666b52c92fcbdf9603a860b9c0 | [] | no_license | LilyEvansHogwarts/LeetCode | 947b46bb7eb9e700cf527c6dcf3d1e0495611561 | afc4c0709b42c2ffcd26506f928c81731ba57462 | refs/heads/master | 2021-01-01T17:50:51.767551 | 2018-03-27T07:47:01 | 2018-03-27T07:47:01 | 98,172,411 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 611 | c | #include<vector>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
void show(vector<bool>& l) {
for(int i = 0;i < l.size();i++)
cout << "(" << i << "," << l[i] << ")" << endl;
}
int countPrimes(int n) {
vector<bool> primes(n, true);
primes[0] = primes[1] = false;
int t = sq... | [
"825196119@qq.com"
] | 825196119@qq.com |
3432b21a8c99d000e86296852e96117b41ce1239 | 90eea95d013a6d611d28250e9a1c4b89c82301fc | /bitmask.h | 29bf34c9c450b9e0b25203aa7150881a8afb5b03 | [
"WTFPL"
] | permissive | mateusedival/M2G-File-System | ba1b404b1c277c9a651a1608e4d503f124c5815d | 82ce84b13893b92a5b17f72409673ca2c502445c | refs/heads/master | 2020-09-21T03:10:09.451574 | 2019-11-05T05:43:30 | 2019-11-05T05:43:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 647 | h | #ifndef M2G_BITMASK
#define M2G_BITMASK
bool return_bit_at(unsigned char *bitmap, int bit_pos){
int byte_pos = bit_pos / 8;
int in_byte_pos = bit_pos % 8;
unsigned char masks[8] = {128, 64, 32, 16, 8, 4, 2, 1};
return (bitmap[byte_pos] & masks[in_byte_pos]);
}
bool toggle_bit_at(unsigned char *bitm... | [
"nunes.matheus.ismael@gmail.com"
] | nunes.matheus.ismael@gmail.com |
18bd468e486a997828dd8c4ecfdfc53f03f9bba6 | 4419b02e5bb4f6dc408f6a67a252bd6723e601cd | /filter.c | fe5039fd9ccb78c8e72ce21c522ea23ea44ef5ea | [] | no_license | DavidPorizek/urbsniffer | 0f5e645132113528d2dfd5725d3143ef937ef0d1 | fd6b603ead36414afe1cc2b4268bacff8d9433b0 | refs/heads/master | 2020-03-27T15:28:55.261935 | 2018-08-31T12:41:37 | 2018-08-31T12:41:37 | 146,720,958 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,624 | c | /*++
Copyright (c) Microsoft Corporation. All rights reserved.
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Module Name:
filter.c
... | [
"noreply@github.com"
] | DavidPorizek.noreply@github.com |
41fc4c862c7f4a0401ea3050bab3263ea7551002 | eacdedc2115cae75e85c6b1e5ccd366509b53ea4 | /Reprint.c | 0e100d27f792e78425e3034750d8479e27ea4d58 | [] | no_license | vasu8480/C.c | 494e5908722354b3210645db1f3dd73abdcb6cfe | f25b43f82cd4660177eb62a294924f5fc7fcece6 | refs/heads/master | 2022-07-26T21:52:57.892318 | 2020-05-20T16:52:44 | 2020-05-20T16:52:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 284 | c | #include <stdio.h>
int main()
{
int i, n, a[20];
printf("number ");
scanf("%d", &n);
printf("entr array :\n" );
for(i=0;i<n;i++)
{
printf("ente nun %d:", i+1);
scanf("%d", &a[i]);
}
for(i=0;i<n;i++)
printf("\n ele %d:%d", i+1,a[i]);
} | [
"noreply@github.com"
] | vasu8480.noreply@github.com |
c822c763d858048ea16b786cb98d07f41b4e19e7 | bc949cbcded25afc8511d07c8d86509d5746b2a8 | /dataset/4404.c | b2f063f29e46586c7fb8ad5bcf9117db81ce2026 | [] | no_license | hqjenny/CSmith_random_pgm | 52aa1face59749a9d0656fc4088f6f921aac2dab | 0ebf41b85201cbe791a13304cdb45e22504f0ce7 | refs/heads/master | 2023-08-17T23:28:24.519500 | 2021-09-15T19:55:23 | 2021-09-15T19:55:23 | 406,904,982 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,943 | c | /*
* This is a RANDOMLY GENERATED PROGRAM.
*
* Generator: csmith 2.2.0
* Git version: dcef523
* Options: --no-structs --no-pointers --no-math64 --max-funcs 4 --no-unions --output 4404.c
* Seed: 3303356243
*/
#include "csmith.h"
static long __undefined;
/* --- Struct/Union Declarations --- */
/* --- GL... | [
"hqjenny@hotmail.com"
] | hqjenny@hotmail.com |
209d7cbdc0c364c0af7f91c1f8868304c3bd3271 | 32c9d253640c5cde394f0df723513ad88b620e7e | /cpuid.c | 92730fadf4f9f599164da15392f631ef68542d14 | [] | no_license | Andiry/cpuid | e450eba666336f893aed01cb46a984e92078d11f | 3538fe4cc47542681f499f75463d9137be4539b9 | refs/heads/master | 2020-06-06T13:01:56.024881 | 2015-08-20T00:12:09 | 2015-08-20T00:12:09 | 41,065,973 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 359 | c | #include <stdio.h>
int main()
{
int a, b, c;
for (a = 0; a < 8; a++)
{
__asm__("cpuid"
:"=a"(b), "=b"(c) // EAX into b (output)
:"a"(a), "c"(0) // a into EAX (input)
:"%edx"); // clobbered registers
printf("The code %i gives 0x%x, ... | [
"jix024@cs.ucsd.edu"
] | jix024@cs.ucsd.edu |
1dec33e3ca3efcf6ece4e38c4f574cb9ad44934f | 1596b3e365d5169e6b0590a4904fb5f3a71ca2fc | /VideoServer/libs/spandsp/src/msvc/gettimeofday.c | 83704180a9ff7a9b4c6857cabbce1e43d374520d | [
"GPL-1.0-or-later",
"LGPL-2.1-only",
"GPL-2.0-only",
"LicenseRef-scancode-free-unknown",
"FSFUL",
"MIT"
] | permissive | zengfanmao/mpds | 7be4bc35be28b37b475ee0250236cb7450327ba6 | c2bba464eaddc9ec70604a8614d84c5334461e8e | refs/heads/master | 2022-12-11T08:29:52.181440 | 2020-01-16T08:49:09 | 2020-01-16T08:49:09 | 234,209,365 | 0 | 0 | MIT | 2022-12-08T02:39:45 | 2020-01-16T01:36:39 | C | UTF-8 | C | false | false | 1,190 | c | #ifdef _MSC_VER
#pragma warning(disable:4100)
#endif
#include "windows.h"
const unsigned long long int DELTA_EPOCH_IN_MICROSECS = 11644473600000000;
void gettimeofday(struct timeval *tv, void *tz)
{
FILETIME ft;
unsigned long long int highResolutionTime;
TIME_ZONE_INFORMATION tz_winapi;
int result_tz... | [
"zengfan007@126.com"
] | zengfan007@126.com |
65e7271a528746d0a1981a1612e189315080506f | 8bf61ba252217d4c34b73d52846ac0270eaaaeb4 | /Practise/process.c | ab234e5cf3bebfae51363f1f3c939980eb0aa1ea | [] | no_license | xuetianw/Leetcode-in-c | a2a645e95b3d36d64a4d67a6948db6543a969ead | 19655fa8c9e3e97c039d96a5466c756367024945 | refs/heads/master | 2022-04-11T11:22:00.492082 | 2020-03-11T21:02:28 | 2020-03-11T21:02:28 | 244,604,555 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 760 | c | //
// Created by fred on 2020-03-08.
//
//typedef struct {
// int next; /* pos of the next head node whether free or not */
// int prev; /* pos of the prev head node whether free or not */
// int position; /* pos of the head node */
//
// int first; /* pos to the firstnode*/
// int current; /* po... | [
"xuetianw@sfu.ca"
] | xuetianw@sfu.ca |
3e93cc1104be7f49b541dd046d3a1606442dca9f | 9b4d5596565a7892cbe32705bae8d1a88c7874cd | /index.c | 90a019cb538dcf689b767023a32449c766e62788 | [] | no_license | yinlonghui/CASmap | fe604eaa266ac00d2fd79ff00b0a2116477d4f80 | 2308e58735ec0b5907d3f96d79f4fc3ca0382c58 | refs/heads/master | 2016-09-06T00:55:55.484843 | 2015-01-28T02:46:09 | 2015-01-28T02:46:09 | 25,908,224 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,070 | c | /*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <zlib.h>
#include "bntseq.h"
#include "utils.h"
#include "bwt.h"
#include "time.h"
/*
* First , test read seq
*/
int is_bwt(ubyte_t *T, int n);
int64_t bwa_seq_len(const char *fn_pac)
{
FILE *fp;
int64_t pac_len;
uby... | [
"fpga@fpga.(none)"
] | fpga@fpga.(none) |
b8ed8648ae9fe9dbc4d01c5182229215cbe7dc6e | 0a309b00972322cc6dbf28e82e95915bf8eb9577 | /MBoot/sboot/include/config/mstar/titania/bd/mst003d/10asv/10294.h | 8f61694a0cca3bd7d135e346be8c92d4ab5decae | [] | no_license | Benjamin-Dobell/kogan-tv-gpl | 5a22d84217a1d5ada231f43f3368f22a99b1b9a1 | 40d86850e1c53a9e687736006816b83e53ac96eb | refs/heads/master | 2021-01-17T07:56:42.783716 | 2016-09-07T23:59:46 | 2016-09-07T23:59:46 | 16,887,634 | 22 | 9 | null | 2016-09-07T23:59:46 | 2014-02-16T15:41:34 | C | UTF-8 | C | false | false | 51 | h | #undef CONFIG_MSTAR_TITANIA_BD_MST003D_10ASV_10294
| [
"aidan.steele@glassechidna.com.au"
] | aidan.steele@glassechidna.com.au |
0ff3bb252ae634b9cdbcdb1bb14e4875d546c613 | 9ad77757d995d13a6f47e223bfd69d89712cc241 | /ft_strlen.c | f003c3dd95845d15a4f5acbde6121de2930c6cc4 | [] | no_license | mohamedamine456/libft | bae4dd9b38975a1387917eb00381add2e424a9ae | ab714172b78376ad55b0acc430807db0a16e5b55 | refs/heads/master | 2020-09-11T08:42:38.379707 | 2019-11-15T21:55:31 | 2019-11-15T21:55:31 | 222,009,304 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,004 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: ... | [
"mlachheb@e1r4p5.1337.ma"
] | mlachheb@e1r4p5.1337.ma |
dcf6ec0cd09946cb31eb8956b1a4ef53f2ae886c | 6dd9f8d011b63af54125c51f1611b12de67b74fe | /printf/src/ft_printf_c.c | cb7e51e2d8932ba1962f1b16e0b80650da6fe5e9 | [] | no_license | gyesayan/42schoolfiles | d8dcb552b996af7456678ce367f6c8f0da92a01b | 5dfc91c3649a909b88679e106dcb7bccf7b0efaf | refs/heads/main | 2023-06-16T03:12:02.933179 | 2021-07-06T17:51:54 | 2021-07-06T17:51:54 | 316,702,123 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,358 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_c.c :+: :+: :+: ... | [
"noreply@github.com"
] | gyesayan.noreply@github.com |
98ecb96f39625ea8b95832826cb1d9067c48e97a | fddfe989c907842ac84d58bfd6ea2438d080ea09 | /hw5/src/part5.c | a1e4d41517a1ffc8169d260e8bb7a117fcfef3b8 | [] | no_license | dnlkhuu77/System-FundamentalsII | 5101a559270961c6980abdae5e574b0c5d309db8 | 8c71608f74c6f3e67a38d4fa7958f3fe8340b58f | refs/heads/master | 2021-06-11T16:41:53.855883 | 2017-01-01T21:31:37 | 2017-01-01T21:31:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,344 | c | #include "lott.h"
#include "lott2.h"
#include <sys/socket.h>
#include <sys/poll.h>
static void* map(void*);
static void* reduce(void*);
static char* name(char*, int, int);
static int nfiles(char*);
int map_flag, limit, nthreads2;
int getRunning = 1;
int* rec;
int part5(size_t nthreads) {
File_stats* head = NULL;... | [
"noreply@github.com"
] | dnlkhuu77.noreply@github.com |
3ba9cad65aa435e04736389e96033f166b6d2f85 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/g++.dg/opt/pr79085.C | 1d75d6a730094f105e8ec1aef213df7714184b90 | [
"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 | 387 | c | // PR c++/79085
// { dg-do compile }
// { dg-options "-Os" }
// { dg-additional-options "-mstrict-align" { target { aarch64*-*-* powerpc*-*-linux* powerpc*-*-elf* } } }
void *operator new (__SIZE_TYPE__, void *p) { return p; }
struct S
{
S ();
S (const S &);
~S (void);
int i;
};
S foo ();
static char buf [s... | [
"rink@rink.nu"
] | rink@rink.nu |
c7171731f9837e2f6535de8d31548ee9d1c2893f | 95a0548cb71da269c0394f44af431bc3ee4aed27 | /imu6050/Inc/main.h | fdfe25f9b8bbee4b58cb8ec6bab25da6c78185a0 | [] | no_license | Kirandawadi/STM32F4_Projects | 0d451e904f4e4d53f605d4279f2fc0c736da2261 | be7437f3d38a25dce1f57bc23c7e08fc81030cf6 | refs/heads/master | 2020-04-18T08:01:51.345733 | 2019-01-24T08:59:00 | 2019-01-24T08:59:00 | 167,381,539 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,308 | h | /**
******************************************************************************
* File Name : main.hpp
* Description : This file contains the common defines of the application
******************************************************************************
** This notice applies to any and al... | [
"kirandawadi11@gmail.com"
] | kirandawadi11@gmail.com |
6c85cf70d305ccfe1328ee9636a589f33d19b713 | 1747aa8f52de39e920ede47b6ebd9fa234393feb | /source/check_map.c | 33d968cb5d9760b592da2d0f46b2049a3e385ed5 | [] | no_license | AUGERClement/PSU_my_sokoban_2017 | ee5685ba457a9c0ca828fe1fbe7d534c7869b051 | ee1a403038bab1ec4c42bfc5601d0766123049bd | refs/heads/master | 2020-09-08T19:34:33.296298 | 2017-12-15T09:42:43 | 2017-12-15T09:42:43 | 221,226,129 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,026 | c | /*
** EPITECH PROJECT, 2017
** check_map.c
** File description:
** check if buffer has a valid map
*/
#include "sokoban.h"
#include "my.h"
int check_map(char *str)
{
int i = 0;
int valid = 0;
int player = 0;
int boxes = 0;
int storages = 0;
while (str[i] != '\0') {
player = check_case_p(str[i], player);
bo... | [
"clement.auger@localhost.localdomain"
] | clement.auger@localhost.localdomain |
5d94916dfd5d04b980f16bf317d4032a5365a275 | 67278302c9ae238973875b9c9211613f8e65abd9 | /StartC/Sources/Skype/APFunctionMamaPapa.c | a77c58ab8b81cba238d5f9d2da531313fc3d1bb2 | [] | no_license | alpoliakov/TestFirst | 051f0aaf68bb09ca4674b51877c4d476c0e0a869 | b20df59abc65da0fa23bf0afa457f375ecdaf312 | refs/heads/master | 2021-01-19T08:32:32.921162 | 2017-04-22T12:32:26 | 2017-04-22T12:32:26 | 87,643,212 | 0 | 0 | null | 2017-04-08T15:29:46 | 2017-04-08T15:19:46 | null | UTF-8 | C | false | false | 1,855 | c | //
// APFunctionMamaPapa.c
// StartC
//
// Created by Aleksandr Poliakov on 12.04.17.
// Copyright © 2017 Aleksandr Poliakov. All rights reserved.
//
#import "APFunctionMamaPapa.h"
// The first variant
static const int APIntegerOne = 3;
static const int APIntegerTwo = 5;
static int APCountMama = 0;
static int AP... | [
"alpoliakov73@gmail.com"
] | alpoliakov73@gmail.com |
d5386096d4d4acdd8a96b09af5b5028c6d0787a7 | 5e4fefd905669a305bdc1e4564cb9901b0eec452 | /MCC9_Validation_Codes/October/October22/analysis/ext1.C | 71b3929656e87535fa8b2202dd3c88b0808a2324 | [] | no_license | ssfehlberg/uboone_codes | f52efd3b774cae9c3432dfbbcb66b76777594b2d | 9dbfbd4b6c4c8776f8c353ffd9ded3ba3095a624 | refs/heads/master | 2020-04-03T11:41:10.820757 | 2018-10-29T15:06:22 | 2018-10-29T15:06:22 | 155,228,764 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,317 | c | #define ext1_cxx
#include "ext1.h"
#include <TH2.h>
#include <TStyle.h>
#include <TCanvas.h>
void ext1::Loop()
{
TFile *tfile = new TFile("ext_tag1_histos.root","RECREATE");
int flashInBeamSpill = -1;
int _gainCalib = 198;
int _pe_cut =50;
double _beamSpillStarts=3.65;
double _beamSpillEnds=5.25;
int nEv... | [
"sfehlber@uboonegpvm01.fnal.gov"
] | sfehlber@uboonegpvm01.fnal.gov |
0550f110c9cf3d9ef275d9db3ee61e5c620b7027 | ffecc2ea4e3ce06669596a26b9da78e69565d113 | /Include/dioum.h | c29295b6cbee5dd6ecd25cd7d8f7516ece864a1a | [] | no_license | Pseudo-Kernel/dio | 1bba7cc93ca24b9ca237fe38461270da9a98b211 | 2aab9af6660bbbc3335bb53e7c6854f28ee0591e | refs/heads/master | 2023-05-20T02:31:05.650635 | 2019-05-30T12:59:58 | 2019-05-30T12:59:58 | 375,441,792 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,761 | h |
#pragma once
typedef struct _DIOUM_DRIVER_CONTEXT DIOUM_DRIVER_CONTEXT;
typedef struct _DIOUM_PORT_RANGE {
USHORT StartAddress;
USHORT EndAddress;
} DIOUM_PORT_RANGE;
#ifdef __cplusplus
extern "C" {
#endif
DIOUM_DRIVER_CONTEXT *
APIENTRY
DioInitialize(
VOID);
BOOL
APIENTRY
DioShutdown(
IN DIOUM_DRIVER_CONTE... | [
"sandbox.isolated@gmail.com"
] | sandbox.isolated@gmail.com |
e7144dde9f926933388a98d40f2fd5a08a492a3c | 4dd6b1890042bb3cf972afd9d66cc26fd7a3856f | /for array.c | 7208308282c2a378e9c5276462364775c02dcb94 | [] | no_license | Vanshika-RJIT/c-plus-plus-progamming-language- | 485606060b38e7dd460ed9f90930d0d418fad299 | fefa46b78ceae1bd83e08013018ccd6313bef7f0 | refs/heads/master | 2020-11-23T22:29:30.976722 | 2020-10-15T12:53:42 | 2020-10-15T12:53:42 | 227,846,853 | 0 | 1 | null | 2020-10-15T12:53:43 | 2019-12-13T13:31:54 | HTML | UTF-8 | C | false | false | 389 | c | #include<stdio.h>
int main()
{
int x[25];
int i,j,sum=0;
printf("The number to be searched:");
scanf("%d",&j);
for(i==0;i<25;i++)
{printf("x[%d]",i);
scanf("%d",&x[i]);
}
for(i==0;i<25;i++)
{printf("x[%d]=%d",i,x[i]);
if(x[i]==j)
sum=sum+1;
}
pri... | [
"noreply@github.com"
] | Vanshika-RJIT.noreply@github.com |
1e0587d63f74f840895d0190d9494d1964da46fa | e6cd51943f682a006da8b1245e6585e453334687 | /Classes/Native/mscorlib_System_Comparison_1_gen1915528428MethodDeclarations.h | e28f6d707d62492caf3e5a6ffe1104a471fc4ce3 | [] | no_license | JasonRy/Seer_0.9.1 | a7495d385a6c5bcec6040ce061410d9eea4d09eb | f727a9442015b2dc03fc19d2fa68dc88ca8bfac0 | refs/heads/master | 2021-07-23T06:23:40.432032 | 2017-11-03T07:57:23 | 2017-11-03T08:53:35 | 109,366,091 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,735 | 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_gen2887177558MethodDeclarations.h"
// System.Void System.Comparis... | [
"renxiaoyi@me.com"
] | renxiaoyi@me.com |
4d0efa5445c77ffcc7ee11562a20111b2a6edb78 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/c714b944-0759-4f8b-aea2-0fa4c3e050c8.c | 3d4098c17cf71b8daa8adac3e0af5c15b6e563e1 | [] | 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 | 602 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=12;
int k;
int l;
j = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = l%j;
l = i-j;
j = k-k*i;
//variables
//random
/* START VULNERABILITY */
int a;
int b[49];
int c[53];
a = 0;
do {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
2a3936e11080f6c6a802569a51e9638c076ddc7f | 6596c1c9c9c3e837677aa161de67a3a850e9140e | /introclass-results/checkpoints/syllables/818f8cf4e2e713753d02db9ee70a099b71f2a5a6bdc904191cf9ba68cfa5f64328464dccdd9b02fe0822e14a403dc196fe88b9964969409e60c93a776186a86a/2/coverage.c | 0935e7ff46f8f8a22a52991ffcbe3f1416de2fc0 | [] | no_license | eduardodx/gecco2018-checkpoints | f42cfb4161b810235d5acedecfd689b5ecf6c883 | 34f501bd8c4470e594a0a5e8248ef91f13af4f69 | refs/heads/master | 2020-03-11T10:07:52.660538 | 2018-08-19T21:31:05 | 2018-08-19T21:31:05 | 129,933,410 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,874 | c | struct _IO_FILE;
struct _IO_FILE *_coverage_fout ;
typedef unsigned long size_t;
typedef unsigned char __u_char;
typedef unsigned short __u_short;
typedef unsigned int __u_int;
typedef unsigned long __u_long;
typedef signed char __int8_t;
typedef unsigned char __uint8_t;
typedef short __int16_t;
typedef unsigned short... | [
"eduardodx01@gmail.com"
] | eduardodx01@gmail.com |
1d7b4152ea1f4bdf961add891c66177fc0ac9e7f | dce0ea41185857cb73d6356617f976a7ef413798 | /src/memallocator.h | c138c096ddf3349cdab55cb1f77a03871c88b2ce | [] | no_license | leins275/memallocator | ac968993fc8ad7025a7a5530c915adb6b783a291 | 0ecf8895610addca88fc3765e52dff71f32b26dc | refs/heads/master | 2022-11-21T04:25:44.287079 | 2020-04-04T22:58:27 | 2020-04-04T22:58:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,223 | h | #ifndef __MEMALLOCATOR_H__E71A34CB
#define __MEMALLOCATOR_H__E71A34CB
#ifdef __cplusplus
extern "C" {
#endif
// Init memory system with memory block pMemory.
int meminit(void *pMemory, int size);
// You can implement memory leak checks here
void memdone();
// Allocate memory block of size 'size'.
// R... | [
"leins275@gmail.com"
] | leins275@gmail.com |
7ca9f9277ac55689749cb9e649f0a0f21c598935 | 744db5bf0700b1beb179ef743467ac5867e4e4b6 | /lib/cmds/user/test.c | b3b03af2556552b708e7e07ccd844439f55f2f33 | [] | no_license | net5you/propose_srv_linux | 12bd1cfdc4131ad917abda45f3bab2bfb14e660d | 77ee12622226541ee9351c5a443ffb28e2373f4d | refs/heads/master | 2021-04-12T04:47:56.437399 | 2014-01-12T10:49:37 | 2014-01-12T10:49:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 152 | c | int main(object user, string arg)
{
if (0 == user)
return 0;
LOGIN_D->tell_users(sprintf("%s: %s\n", user->get_name(), arg));
return 1;
} | [
"junho@jieyou.com"
] | junho@jieyou.com |
69f7733712e11507797cd03791326a34a60f5beb | 39af51abe4b3ab04018d1e01b7dccdb868f0e76f | /UPC Microcontroladores 2021-2/Proyectos MPLABX/20212_c_el53_1_sem13.X/maincode.c | 7b98bd9b5232790d3d9ac14a06ab486b7db33448 | [
"CC0-1.0"
] | permissive | tocache/Microchip-PIC18F4550 | 403feb6228423d86a9ed091ba67411628ac6e223 | 3573d38e1447d47b6d6a6934bbb80015bf014323 | refs/heads/master | 2022-12-08T15:05:14.857696 | 2022-11-29T16:16:49 | 2022-11-29T16:16:49 | 40,411,791 | 15 | 10 | null | null | null | null | UTF-8 | C | false | false | 495 | c | #include "cabecera.h"
#include <xc.h>
#define _XTAL_FREQ 48000000UL
void init_conf(void){
}
void EUSART_conf(void){
TRISCbits.RC6 = 0; //RC6 como salida (TX del EUSART)
SPBRGH = 0;
SPBRG = 77; //Baudrate = 9600
RCSTAbits.SPEN = 1; //Puerto serial encendido
T... | [
"noreply@github.com"
] | tocache.noreply@github.com |
d0232d538cd3fe963e926ec402bc8d3c818d10bd | 8bfb64f3c8ab81b6ef38e5a510e44f5db3e4deed | /NC/INCLUDE/TV.H | d00b9ebe4b73b43310ef3e4c8f4218d29f26b3d6 | [] | no_license | ngphloc/temp | b07d66d6b99117156a9e53b5bc7b155a78a304f1 | 0865c7cc19996c8495f5b0229ce07b6fe9d9635e | refs/heads/master | 2022-10-13T09:15:01.660649 | 2022-09-28T10:23:20 | 2022-09-28T10:23:20 | 138,309,054 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,914 | h | /* ------------------------------------------------------------------------*/
/* */
/* TV.H */
/* */
/* Cop... | [
"ngphloc@gmail.com"
] | ngphloc@gmail.com |
4672beff5b1750768886229c68404de1bead6081 | 232700d3698b260f3c6180521cf0880af818472c | /c/distance.c | 50161ed80dd9e4b8510321cd23120445f5b057a2 | [
"MIT"
] | permissive | woj-i/GPS-distance | c7f796221999723ea11afc30470ed243ab917c70 | 13613557570e7e7c8114fbf3049b8f650d6800a1 | refs/heads/master | 2020-08-28T20:45:41.035132 | 2019-10-27T06:50:18 | 2019-10-27T06:50:18 | 217,816,105 | 0 | 0 | null | 2019-10-27T06:49:04 | 2019-10-27T06:49:04 | null | UTF-8 | C | false | false | 2,705 | c | /*
Compile: gcc distance.c -o distance -lm
Run: ./distance
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define PI 3.14159265358979323846
/*
###===================================================================================================
### get distance in metres between 2 points:
### Vincent... | [
"jan@antala.sk"
] | jan@antala.sk |
c4c95bf052da2cbf20dd5d1cff99c9984122fee9 | 5f83c5d24da455ae4ac29aba0807aeaecac6e59f | /C_primer_plus/Chapter11/Exercises/exerciseT5_T6.c | 0a41d5232c409c2ca132aad62f4539634a2696a1 | [] | no_license | keviness/C-Language | 920a720f51488fc6e73b226bf5fe4b8dfadcafb3 | 353749741d333de509d131d7cfd5646e852e571a | refs/heads/master | 2021-07-15T02:48:27.465151 | 2021-02-14T15:55:31 | 2021-02-14T15:55:31 | 237,152,390 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,319 | c | #include <stdio.h>
#include <string.h>
#define SIZE 10
char *s_gets(char *ptr, int n);
char * search_char(char *str, char ch);
int main(void)
{
char ch;
char * find;
char input[SIZE];
puts("Enter you char:");
ch = getchar();
while (getchar() != '\n')
continue;
puts("Enter your lette... | [
"kevin1737@163.com"
] | kevin1737@163.com |
b93fbafa3ecb08d52e494803d964daa91f68c991 | c6b6ba05dca49e2177c74380597985e14ab6ebf7 | /c/stevens/error_func.c | e596ad1a92ef65b3a5fa32b24a41b1551ed9ac09 | [] | no_license | zhanleewo/circular_buffer | 9324aad9b60b19009976efab69e6a3396ef98e81 | 97ff8912c227d250ce2dca8865123352bb6b5fae | refs/heads/master | 2021-01-17T21:58:17.968137 | 2013-03-02T09:55:23 | 2013-03-02T09:55:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,668 | c | #include <errno.h>
#include <stdarg.h>
#include <syslog.h>
#include "ourheader.h"
static void err_doit(int, const char *, va_list);
char *pname = NULL;
/* Non fatal error related to a system call; print a message and return */
void err_ret(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, f... | [
"as00359@surrey.ac.uk"
] | as00359@surrey.ac.uk |
c27f20e5bfe9cfed7b4b9c1ca464481370b01df0 | 26c1bc840691c45c77f2fe194b54a4e534891ed9 | /Chip8.c | 9640e8a81e907a51070aaa4d99e7da4eeb420e83 | [] | no_license | konnorcollins/chip8-emulator | a8c07b53c03915d0d68058755e3c20cafdd681ba | afaa1ca5e331b18f59661bdeda1f8a44949b1699 | refs/heads/master | 2020-09-21T11:48:00.431176 | 2019-11-29T19:36:56 | 2019-11-29T19:36:56 | 224,779,910 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,540 | c | #include <stdint.h>
#include <stdlib.h>
#include "Chip8.h"
void Operation_8xy(Chip8State* state, uint8_t regx, uint8_t regy, uint8_t lownib);
void Operation_Ex(Chip8State* state, uint8_t regx, uint8_t lowbyte);
void Operation_Fx(Chip8State* state, uint8_t regx, uint8_t lowbyte);
void Operation_NotImplemented(Chip8Sta... | [
"konnor.s.collins@gmail.com"
] | konnor.s.collins@gmail.com |
e9e5a3076a7128f6b3939d736db2a1bd2c4621dc | f93aa4778528dccd36a3d867907999a85bc47553 | /arraysinc/main.c | 718678316ac1c90d06323491e062d2796f051abe | [] | no_license | sbrj/Estudos_em_C | 1ab01855fd30160b0c370abbd624a39eb76d9572 | daa516f3972b81c447b7c86ce6b9b0d75e931131 | refs/heads/main | 2023-06-05T18:00:58.225883 | 2021-06-21T20:57:32 | 2021-06-21T20:57:32 | 377,826,018 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 338 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
int nums[3][2] = {
{1,2},
{3,4},
{5,6}
};
int i, j;
for(i=0; i<3; i++){
for(j=0; j<2; j++){
printf("%d,", nums[i][j]);
}
printf("\n");
... | [
"mauriciomartino@hotmail.com"
] | mauriciomartino@hotmail.com |
dc67afa8f68ca2424f050bd285d74451e91bae04 | 48e60b5c519acb517bf3f542226a792c152bdb1a | /Vector_Low/Core/Src/i2c.c | 098b05a3180ff97d69165d33364105e3208ea127 | [] | no_license | huake2020/DesktopRobot | ba4a22a19fcadb9bb5149583bdb958b179d16d25 | b80f2683d6b0444e11489b8c735dafede05244f7 | refs/heads/master | 2022-12-17T06:39:00.840146 | 2020-09-20T14:59:03 | 2020-09-20T14:59:03 | 292,332,294 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,820 | c | /**
******************************************************************************
* File Name : I2C.c
* Description : This file provides code for the configuration
* of the I2C instances.
******************************************************************************
* @... | [
"834127901@qq.com"
] | 834127901@qq.com |
07ae9db76d3ce0be19b9fa687baf07ea794a2cb6 | f026cb616ef14bae15a1d251ca6dbe0f55016d9c | /linux/25276.c | ea76b2bd2ba9a31d95b179ff221a7b5359eba2e7 | [] | no_license | jajajasalu2/cocci-lkmp-c-files | 3eb7d451929dca5cb6beb56aabd69fe3f7fc176c | 5da943aabe1589e393a131121dbf8e7a84b3cf2a | refs/heads/master | 2020-12-02T17:30:14.411816 | 2020-01-29T08:36:30 | 2020-01-29T08:36:30 | 231,053,574 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 146 | c | cocci_test_suite() {
pthread_mutex_t cocci_id/* tools/lib/lockdep/tests/ABCABC.c 7 */;
void cocci_id/* tools/lib/lockdep/tests/ABCABC.c 5 */;
}
| [
"jaskaransingh7654321@gmail.com"
] | jaskaransingh7654321@gmail.com |
b547b98ac845bc4014709311d4c7d7de682031d3 | 4d22a4785ae9aecb34273a90ec593004085023c5 | /chap06/defs.h | 9839d9b90c1408239a399f5335651e2e2b0b20e3 | [] | no_license | tommybee-dev/shoot_m_up | f289afc2dae62cd8a3fc94e030e50424d06fb754 | bad512c81a056d4022fc19b0c48beae61e3ba341 | refs/heads/master | 2022-02-05T04:51:57.689227 | 2019-08-01T16:04:33 | 2019-08-01T16:04:33 | 198,245,592 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 881 | h | /*
Copyright (C) 2015-2018 Parallel Realities
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 your option) any later version.
This program is distributed in t... | [
"tommybee@naver.com"
] | tommybee@naver.com |
7833d714d7b54c52f2e0fcd9e1c3f162d1e33b0e | 1dfc6e9dd497251350e3ebcff6e802f871e8be14 | /wenjian03.c | 7eccb15641428d3cd772beaf29a0648a01e93116 | [] | no_license | yizhenxiao/zhoubao | 94c7f03f74e7898ff32359cce4c11ca3acefc898 | fc7eacada5e7de96abc3320636470192c2157b14 | refs/heads/master | 2020-03-14T07:18:16.556928 | 2018-07-10T13:01:54 | 2018-07-10T13:01:54 | 131,502,040 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 198 | c | #include<stdio.h>
int main()
{
int i;
for (i= 0; i < 5; i++) {
printf("%d\n", f(i));
}
return 0;
}
int f(int x)
{
if (x == 0) {
return 0;
}
else
{
return 2 * f(x - 1) + x * x;
}
} | [
"853664702@qq.com"
] | 853664702@qq.com |
4484f1c91de00405ce899afd38be57d01893601e | f95bd6e18eb6314f2b8fe6823983d500837fd9cc | /include/cipher.h | 3a116b6a2bc3cf1eb55aad77948a8d37d11506d6 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | drufino/minTLS | 01546bcd80591e5a177f2f5adf912e2a2727c1f2 | ee73ad8f518e30403a84a06994ad455850849b2a | refs/heads/master | 2021-01-22T00:59:40.628173 | 2015-05-17T18:37:37 | 2019-08-18T21:49:20 | 35,777,852 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,230 | h | /* Public interface to symmetric ciphers
*
* Copyright (c) 2013, David Rufino <david.rufino@gmail.com>. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef mintls_ciphers_h
#define mintls_ciphers_h
#include <stdlib.h>
#include <st... | [
"david.rufino@gmail.com"
] | david.rufino@gmail.com |
9f1916f4f88f26c673a83d9c2e46cbd0b2ce52a0 | 34de6a87d0dc0020ac876ea50e0ebe3b5195b799 | /Controller/SW/Core/Inc/CMDHandler.h | beb23f79625e470726986cb08b37faa5d72c01dd | [] | no_license | MXACE/MCB-Mobil | 9120525b35a4b615a8845879618df615f1e813b7 | 6b94af1c2a5c6405f72c2ec2e29f2ac9e60d8bf0 | refs/heads/master | 2023-08-21T18:19:05.251333 | 2021-09-23T16:15:37 | 2021-09-23T16:15:37 | 276,678,340 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 244 | h | #ifndef _CMDHANDLER_h_
#define _CMDHANDLER_h_
#include "main.h"
#include <string.h>
void CH_HANDLER(char set, char string[]);
void CH_BUFFER(char alpha[1]);
void LORA_HANDLER(char set, char string[]);
void LORA_BUFFER(char alpha[1]);
#endif
| [
"monerfone@gmail.com"
] | monerfone@gmail.com |
2331e1e66e283864fd48900acfde3f32a848f404 | 99bdb3251fecee538e0630f15f6574054dfc1468 | /bsp/stm32/libraries/STM32L5xx_HAL/CMSIS/Device/ST/STM32L5xx/Source/Templates/system_stm32l5xx_s.c | f740942b38e1f06bd9937e4051f8df66960ed084 | [
"Zlib",
"LicenseRef-scancode-proprietary-license",
"MIT",
"BSD-3-Clause",
"X11",
"BSD-4-Clause-UC",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | RT-Thread/rt-thread | 03a7c52c2aeb1b06a544143b0e803d72f47d1ece | 3602f891211904a27dcbd51e5ba72fefce7326b2 | refs/heads/master | 2023-09-01T04:10:20.295801 | 2023-08-31T16:20:55 | 2023-08-31T16:20:55 | 7,408,108 | 9,599 | 5,805 | Apache-2.0 | 2023-09-14T13:37:26 | 2013-01-02T14:49:21 | C | UTF-8 | C | false | false | 15,399 | c | /**
******************************************************************************
* @file system_stm32l5xx_s.c
* @author MCD Application Team
* @brief CMSIS Cortex-M33 Device Peripheral Access Layer System Source File
* to be used in secure application when the system implements
* t... | [
"liukangcc@outlook.com"
] | liukangcc@outlook.com |
bc4aecdb98d6bc5c3296c97c90f3e838c0793828 | 382eb97bb79478130f83d50877148188ec7ff51a | /libraries/shared/src/BackgroundMode.h | 661fe0f849ef7a2dc89b5eaef2f5ff21ef22dc56 | [
"Apache-2.0"
] | permissive | rabedik/hifi | d6cb72e9426d69714b06a3f842b2a4919f52ed18 | 08986dcb17ece932f567ab27cf1f0b1fdecf41e1 | refs/heads/master | 2021-01-16T20:55:40.135499 | 2015-08-28T23:36:00 | 2015-08-28T23:36:00 | 41,653,396 | 1 | 0 | null | 2015-08-31T03:17:57 | 2015-08-31T03:17:56 | null | UTF-8 | C | false | false | 453 | h | //
// BackgroundMode.h
// libraries/physcis/src
//
// Copyright 2015 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_BackgroundMode_h
#define hifi_BackgroundMode_h
enum BackgroundM... | [
"bradh@konamoxt.com"
] | bradh@konamoxt.com |
dff3c4f26c0f871a0e0d1b28c9c99aacfd147bd9 | bc949cbcded25afc8511d07c8d86509d5746b2a8 | /dataset/1772.c | f6e0de152952d8bfb9f16f3c24031300fc640274 | [] | no_license | hqjenny/CSmith_random_pgm | 52aa1face59749a9d0656fc4088f6f921aac2dab | 0ebf41b85201cbe791a13304cdb45e22504f0ce7 | refs/heads/master | 2023-08-17T23:28:24.519500 | 2021-09-15T19:55:23 | 2021-09-15T19:55:23 | 406,904,982 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,951 | c | /*
* This is a RANDOMLY GENERATED PROGRAM.
*
* Generator: csmith 2.2.0
* Git version: dcef523
* Options: --no-structs --no-pointers --no-math64 --max-funcs 4 --no-unions --output 1772.c
* Seed: 2508139715
*/
#include "csmith.h"
static long __undefined;
/* --- Struct/Union Declarations --- */
/* --- GL... | [
"hqjenny@hotmail.com"
] | hqjenny@hotmail.com |
6a0905ba1069cbcccda040119334327f4733dfeb | 5d875395252937f9ad6a53d4480874c296f4293b | /MPI_Kahn_C/test/FEM_MPI_REF.c | 84c9518dc1c9574909448311e856770605c061d0 | [] | no_license | arousseau01/Projet_OS | 2817a00c0acb73e7880f4a1f9a9f57673a76c68b | d6ce916955263c9eccfccc44894bfc325cf65dc7 | refs/heads/main | 2023-04-21T11:52:10.409528 | 2021-05-17T20:43:44 | 2021-05-17T20:43:44 | 349,146,019 | 0 | 0 | null | 2021-05-11T17:11:53 | 2021-03-18T16:35:51 | OCaml | UTF-8 | C | false | false | 9,050 | c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <assert.h>
#include <netcdf.h>
#include <string.h>
#include <sys/time.h> // bench-marking
//#include <mpi_subset.h>
#include <mpi.h>
/* FEM_MPI_REF.c
Script de résolution de l'équation de d'Alembert pour des ondes sismiques en milieu non d... | [
"sylvain.brisson@ens.fr"
] | sylvain.brisson@ens.fr |
cfaaeb051db7f4eee6f983dafe15d0b25cace85f | 6b1f5f428538532a0f1eecfc9003343166f39a28 | /can4vscp_frdmk64f/Sources/VSCP/vscp_firmware.c | 53339c8dd7596c58b03edbdf0e59cd325f2ba521 | [] | no_license | gallowaa/can4vscp_frdm_bm | 07c9380343a4c3b9e9e2dad5e2b5b39e6e6130c6 | 91cbc3d3767c89b4c8a5a0cd9c8a24639703df7e | refs/heads/master | 2016-09-16T10:47:55.198682 | 2015-09-06T01:50:52 | 2015-09-06T01:50:52 | 38,439,701 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 39,838 | c | ///////////////////////////////////////////////////////////////////////////////
// File: vscp_firmware.c
//
/* ******************************************************************************
* VSCP (Very Simple Control Protocol)
* http://www.vscp.org
*
* The MIT License (MIT)
*
* Copyright (c) 2000-2015 Ake He... | [
"gallowaa@mail.uoguelph.ca"
] | gallowaa@mail.uoguelph.ca |
0212f475430e21ed755ff577fe701d86ad81ff37 | d8c3fce8d4588fed8f93443dcf406aaf3c9aecf5 | /LHP14/keymaps/default/keymap.c | 6781ae8b39194931a036870ddea745610ed68f71 | [] | no_license | bedauxx/LHP14-firmware | 8f7855cbc19853b770bf0744beea198dade5a82e | b540e5375445aaf3dc1b53d0c0c35ffd7c9d6e7a | refs/heads/main | 2023-05-21T10:43:33.682408 | 2021-06-08T09:06:28 | 2021-06-08T09:06:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,794 | c | #include QMK_KEYBOARD_H
#include "joystick.h"
#include "analog.h"
#define SAM 0
#define SCH 1
#define DRG 2
#define DRK 3
#define WAR 4
#define DNC 5
#define WHM 6
#define RDM 7
#define NIN 8
#define RGB 9
void render_logo(void) {
oled_set_cursor(0, 0);
oled_write_P(lhp_logo, false);
}
enum custom_key... | [
"84890228+NeoTrinity-FF14@users.noreply.github.com"
] | 84890228+NeoTrinity-FF14@users.noreply.github.com |
9d13e62ed42d235b1497902859686cfc9a642674 | 3d8032cf92e858ca49b1a6a9a3284a2d9894dee5 | /libft/src/ft_lstnew.c | 9f148947a99ab0e3fa53519818f32bd1dd9048ff | [] | no_license | theof/wolf3d | d68369c59c5af5fbe0a720dc13ce6aba9ffcefc1 | 063cd178826e6113a480ae2e342907ed9d7f1998 | refs/heads/master | 2021-05-30T04:25:15.178246 | 2015-10-10T10:37:18 | 2015-10-10T10:37:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,183 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: ... | [
"tvallee@e2r3p4.42.fr"
] | tvallee@e2r3p4.42.fr |
178cf4ff07f306b703cddc12758efb7f0d3271b1 | 4c5608f20fa2580774d734d94198dd10648e4339 | /src/plugins/nat/nat_affinity.c | 28c25aecda5f7a26cd7b86bd59b8adfc6d671ac0 | [
"Apache-2.0"
] | permissive | mojtaba-eshghie/VPP-In-Situ-IOAM | 3d1c3d01752a7934d2f060326674280e0bd93413 | efebd91195eb1b0d98a4a1f5efd962ae79c77be6 | refs/heads/master | 2022-12-10T13:37:04.644952 | 2020-05-29T11:42:36 | 2020-05-29T11:42:36 | 194,249,816 | 2 | 0 | Apache-2.0 | 2022-12-08T05:17:31 | 2019-06-28T09:50:05 | C | UTF-8 | C | false | false | 7,578 | c | /*
* Copyright (c) 2018 Cisco and/or its affiliates.
* 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 applicabl... | [
"mojtaba.eshghi@ut.ac.ir"
] | mojtaba.eshghi@ut.ac.ir |
07bbf17777b795766bf70d25ffc88ec522f8eeaa | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/930fa5aa-0317-4b47-b41a-f2d1fadb2d2c.c | 2f7d11431a926cf7a915d07e89fbb1033f9624ef | [] | 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 | 530 | 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;
i = i%j;
l = i/j;
k = i-k*i;
//variables
//random
/* START VULNERABILITY */
int a;
char b[71];
char c[66];
a = 0;
while (a < strlen(b)) {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
1d2c250d8196399c2351c12e4f96125b8c555742 | 807a6d15692480b9420e041972a589131447b923 | /app/src/main/cpp/x11/xi/xiallowev.h | 9c6f69ee4e35dccabf30ea211585b560f10d1ccd | [] | no_license | 1vanyk1/Awimul | b946a864d65b726e7195c6ada064b02892b1ad62 | 841098923e50468599f7221c9af2d21ae21f7b36 | refs/heads/master | 2023-07-17T16:44:47.525340 | 2021-08-26T17:23:50 | 2021-08-26T17:23:50 | 317,278,357 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 265 | h | #ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#ifndef XIALLOWEV_H
#define XIALLOWEV_H 1
#include "../headers/xdefs.h"
int ProcXIAllowEvents(ClientPtr client);
int SProcXIAllowEvents(ClientPtr client);
#endif /* XIALLOWEV_H */
| [
"57059188+1vanyk1@users.noreply.github.com"
] | 57059188+1vanyk1@users.noreply.github.com |
e4346c4d28208df193e719959b644ccdd044073a | aaedc946d47982fab06f8f7d9b7eb6008fcc7d67 | /libft/ft_putstr_fd.c | 54ed6fa47ede55f6375a6baae5f7024f3a885dc8 | [] | no_license | PsyCowpathe/push_swap | 4f92f6d03cb46bdf75f26063075f15b84609848d | 9a9909a472aff433e688c023147002b0cc46333d | refs/heads/master | 2023-08-23T00:51:50.554328 | 2021-10-19T17:25:21 | 2021-10-19T17:25:21 | 404,533,709 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,032 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: ... | [
"agirona@z4r4p7.42lyon.fr"
] | agirona@z4r4p7.42lyon.fr |
797e51ba31571ccfce4abc24b3bbbd844e97df79 | 4207610c48cbb9021f4420791a9c9d07550b72d9 | /Source/Misc/libusb/include/libusb_windows.h | c4d10077c96e4a80d4ca9323c4bd7efab4e90f64 | [
"GPL-2.0-only",
"BSD-3-Clause"
] | permissive | RomanKubiak/ctrlr | d98a910eb46f6cf4324da3fc3ae664cc7dd5aec9 | 8aa00d82127acda42ad9ac9b7b479461e9436aa4 | refs/heads/master | 2023-02-13T00:21:04.546585 | 2022-06-24T10:53:16 | 2022-06-24T10:53:16 | 14,671,067 | 435 | 82 | BSD-3-Clause | 2022-05-31T18:18:23 | 2013-11-24T22:53:11 | C++ | UTF-8 | C | false | false | 1,340 | h | /* config.h. Manual config for MSVC. */
#ifndef _MSC_VER
#warning "msvc/config.h shouldn't be included for your development environment."
//#error "Please make sure the msvc/ directory is removed from your build path."
#endif
/* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/... | [
"kubiak.roman@gmail.com"
] | kubiak.roman@gmail.com |
4cd60b21d3807e7820f3e1be6fa8369bf9731ec3 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/7462924d-5f76-4c73-a491-3da4bab2ab05.c | 32dfa9b74944f1e837d38d4959633904719a209b | [] | 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 | 568 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=11;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = l/j;
l = l%j;
l = l%j;
j = k-k*i;
//variables
/* START VULNERABILITY */
int a;
long b[67];
long c[30];
a = 0;
do {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
2d801d05e28c3de9d15b8689e835d8f8cefd753d | a9952782b73cb1b0f4e423cf3f29870faeb986d1 | /structures.c | 8bdff64e02153e02dceb2d2424bbfbe00926b10d | [] | no_license | ECE-2122-C-TP/tp5-louischauvet | ed0899d239de5e9754762feb89d81def34cda13f | dba7935519ec4990eb9c090dbef16890c19b4c6c | refs/heads/main | 2023-08-19T08:33:45.759542 | 2021-10-11T18:43:29 | 2021-10-11T18:43:29 | 416,046,617 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,806 | c | //
// Created by Louis on 11/10/2021.
//
#include <stdio.h>
#include"structures.h"
#define N 100
/*EXO 1*/
nombreRationnel saisirNbRationnel() { /*permet de saisir un nombre rationnel*/
nombreRationnel NbRt;
printf("saisissez une valeur pour le numerateur\n");
scanf("%d", &NbRt.num);
... | [
"noreply@github.com"
] | ECE-2122-C-TP.noreply@github.com |
7293b0c9485d293b4dbc5804158dc89b7673d3f1 | 9966cf9d1c7410530d85acaf6d680f00de12cbad | /stack/upper/src/bt/btcore/upper_stack_global.c | 03f002974fdd6d5c9290fe194531e53c74ec2aa5 | [] | no_license | venkatarajasekhar/BumbleBee1 | c120f02ec25565ecec8c77675ee18d61f8ce2045 | e2fec74d207bed3ff74045eafc89c0b59a79a9f7 | refs/heads/master | 2020-06-18T07:43:32.253687 | 2016-01-13T05:39:43 | 2016-01-13T05:39:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,057 | c | #include <upper_stack_global.h>
#include <message.h>
#include <hci.h>
#include <gattdef.h>
//blueapi_util.c
//btsmutil.c
char gHexBuffer[32 + 1] = {0};
//cutlbt.c
char gStrBdAddressBuf[20] = {0};
//gattutil.c
char gGattDeviceName[GATT_DEVICE_NAME_LENGTH] = {0};
char gGattAppearance[2] = {0};
char gGattPerPrefConn... | [
"BT_SCO@Jane-PC.realsil.com.cn"
] | BT_SCO@Jane-PC.realsil.com.cn |
86436b70d9f813e2b5fdfab2c1b7e0bbf4fb9abe | c1a8e75227512a30db772c92973c7b179d4eaa67 | /Test/Classes/Native/UnityEngine_UnityEngine_Events_UnityAction.h | 7a885de9df6e4bb910aab7ae0f86947e11aa23a5 | [] | no_license | joshtwynham/dissertation | 266f5463d970e15bf5b0842c881ff65c9c85389c | b860fc4ae2b6152d0aea15b36036904b4a88bd15 | refs/heads/master | 2021-01-10T09:20:17.128871 | 2016-04-17T16:07:36 | 2016-04-17T16:07:36 | 49,824,777 | 0 | 0 | null | 2016-02-02T11:36:07 | 2016-01-17T16:14:25 | C++ | UTF-8 | C | false | false | 453 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.IAsyncResult
struct IAsyncResult_t180;
// System.AsyncCallback
struct AsyncCallback_t181;
// System.Object
struct Object_t;
#include "mscorlib_System_MulticastDelegate.h"
#... | [
"psyjt1@nottingham.ac.uk"
] | psyjt1@nottingham.ac.uk |
b3ea96d6cfb0b399e1dbf184afa6da52c7e5c5c7 | 19d500483f9ea96dc42297f9ac6b9338a6692abc | /done/libft/ft_strdup.c | 17dbc40c489a1d51b49414d32f44e0ea6091eaea | [] | no_license | boney-/Projects_42 | 081812e69ec9bbd52eb78a0390697fea2a82187b | e664a0da9e0ad57dd86ed14363229add63ce5bb1 | refs/heads/master | 2021-05-30T05:10:54.156848 | 2016-01-28T15:44:22 | 2016-01-28T15:44:22 | 50,355,102 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,146 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: ... | [
"jbonnet@student.42.fr"
] | jbonnet@student.42.fr |
62b423dd214189e43e008bc419ce635d6c650f74 | 23ebf70903214304062e6fb04a525af3abcf9054 | /AEDS I/provas/p4/AmostraDados.c | 09257ea4bf8d8dc8eab2db69530318789f5d8335 | [] | no_license | andrerb1992/UFOP | b6fc3b108845832a0b11c4c36c38ed86d04a176a | 9547e5742725ba9c8ac53cc43a51bf5c2e1cb472 | refs/heads/master | 2022-08-19T08:01:18.629122 | 2020-05-22T08:20:59 | 2020-05-22T08:20:59 | 266,019,586 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,614 | c | #include "AmostraDados.h"
#include <assert.h>
#include <stdio.h>
#include <math.h>
#include <malloc.h>
int AmostraDados_leitura(AmostraDados* amostra) {
assert(amostra);
scanf("%d", &(amostra->tamanho));
if (amostra->tamanho <= 0) {
return ERRO_LEITURA;
}
amostra->dados = (int*)malloc(amos... | [
"andrerb_1992@hotmail.com"
] | andrerb_1992@hotmail.com |
ee2370b57cb1ba4c1c792415bd60ba9e93d800e6 | 8295713f41e924bb8babf6b1bbedf9e9da962e8e | /src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i16s_xpulpv2.c | 510fa8cfe2bd5665216971a23a41c09bdc9fe8ac | [
"Apache-2.0"
] | permissive | pulp-platform/pulp-dsp | 2109b1ce91f92b54600d1e5c083c80885e751859 | cc5594b9998b4f243be02c3a7e853db9c936302b | refs/heads/master | 2023-03-15T18:43:02.575140 | 2023-03-01T16:16:00 | 2023-03-01T16:16:00 | 229,281,908 | 30 | 30 | Apache-2.0 | 2023-03-01T16:16:02 | 2019-12-20T14:42:51 | C | UTF-8 | C | false | false | 3,452 | c | /* =====================================================================
* Project: PULP DSP Library
* Title: plp_mat_add_stride_i16s_xpulpv2.c
* Description: 16-bit integer strided matrix addition for XPULPV2
*
* $Date: 1. July 2020
* $Revision: V0
*
* Target Processor: PULP cores
* ===... | [
"tiborschneider@bluewin.ch"
] | tiborschneider@bluewin.ch |
0e5fc061d9fb1586ee5af03407ec089db8fd9513 | a132902f7a53128e611f99330bd9498565bdfcbd | /main/main.c | f73e7c0899c096cd33ba1338787c2210f611ddec | [] | no_license | BrandonJR29/Door-Camera | 79a8791fcc23fe731c9f0ada38c9a5eaf111a6b4 | dc1e887e2c297b3ef90b5f57998ad2d73fe9e928 | refs/heads/main | 2023-02-10T09:40:36.322622 | 2021-01-07T01:12:23 | 2021-01-07T01:12:23 | 327,460,249 | 0 | 0 | null | 2021-01-07T01:04:17 | 2021-01-07T00:18:36 | null | UTF-8 | C | false | false | 137 | c | #include "include/camera.h"
void app_main(void){
secure_events = xEventGroupCreate();
init_camera();
init_sdcard();
init_gpios();
}
| [
"brandonjimenez2994@gmail.com"
] | brandonjimenez2994@gmail.com |
78e9cf452bb14ad2b2503b381049e44b8be5fdbd | f2a7ff1d5b905775af4cf98fb9652ced457362d7 | /tools/src/music/modplay.c | fb238d1f41dfc303c6b9d689989017b6a888f652 | [] | no_license | ali-mosavian/ugl | a8a875a4ec233382cc410f4c0e9c303837d5105f | 74436dd1228e587d691575c22dcca04b96653bd5 | refs/heads/master | 2023-01-20T01:05:56.847645 | 2020-11-29T22:15:40 | 2020-11-29T22:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,038 | c | /*
**
** inc/modplay.h - protracker module playing
** Lots of thanks and credits to Brett Patterson for
** fmoddoc.txt and fmoddoc2.txt.
**
*/
#include "inc/modcmn.h"
#include "inc/modmain.h"
#include "inc/modplay.h"
#include "inc/modload.h"
#include "inc/modmem.h"
#include "inc/modtbl.h"
void TCALLBK ... | [
"alim@The-iMac.lan"
] | alim@The-iMac.lan |
d0a86e35a987529049bc560f34e29887708252d0 | 53b3b31a9590be711961f16a500b3593bd9bb89a | /Task4/bus.c | bdfee5b3c870676c51ccc74d79e69dff9d67efb3 | [] | no_license | DrDeadbrain/GS | 1bcdd4ba266a6c981541aa451479ac0df3b08ffa | f7465c6e1b0541715382914b8e3c2e4c25a70809 | refs/heads/master | 2020-04-05T01:53:48.512990 | 2019-01-17T14:31:56 | 2019-01-17T14:31:56 | 156,454,878 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,468 | c | /*
*Implementation of the bus module
*/
#include "bus.h"
#include "error.h"
#include "hardware_IO.h"
#include "timer.h"
/*pin used for data transfer*/
#define DATA_PIN 0
/*pin used for providing power*/
#define POWER_PIN 1
/*size of romcode*/
#define ROMCODE_SIZE 8
/*how long bus should be in pow... | [
"christiancaus@gmail.com"
] | christiancaus@gmail.com |
4f423f0955534cb82691b1a26f13da5aa800ea6f | 0ebf84222d725d16e253d70d12a84672ed303eeb | /graphics/dia/patches/patch-plug-ins_postscript_diapsft2renderer.c | 7783c8ffe82ef83fbeab75fee1a83ca7b85cf181 | [] | no_license | davefinster/pkgsrc | 341b42479e040c17f0f1e5c1bd3c8bdb3de67d86 | cb042e79100d10a6adb374bd3c8fd56fe16ece9b | refs/heads/trunk | 2021-01-17T10:20:44.238012 | 2015-02-15T02:42:22 | 2015-02-15T02:42:22 | 30,813,126 | 1 | 0 | null | 2015-02-15T00:25:12 | 2015-02-15T00:25:12 | null | UTF-8 | C | false | false | 544 | c | $NetBSD: patch-plug-ins_postscript_diapsft2renderer.c,v 1.1 2014/03/23 09:07:15 spz Exp $
make it deal gracefully with both freetype 2.4.* and 2.5.*
--- plug-ins/postscript/diapsft2renderer.c.orig 2009-11-07 17:13:53.000000000 +0000
+++ plug-ins/postscript/diapsft2renderer.c
@@ -29,8 +29,9 @@
#include <pango/pangoft... | [
"spz"
] | spz |
57636fb48e9cdfb57207cbc137151b0aafeca542 | de43094c0718b211402a9b44c048a9a9f85368db | /test.c | e04d4610d8764d863e7ded6c4b83ca561f361e88 | [] | no_license | alextsigilis/RCM | 5dcc2e43f7730e4c94ef950b8226d0f92779ba84 | b138269497275b0608aa506aa867b4f76c5fbeb0 | refs/heads/master | 2020-12-26T20:11:48.371081 | 2020-02-13T14:36:59 | 2020-02-13T14:36:59 | 237,628,055 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,111 | c | #include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include "rcm.h"
//! Initializes a vertex based on the adjacency matrix A
void init_vertex( const int n, const double A[], Vertex V[], Vertex* v ) {
int k = 0;
v->neighbors = malloc(n*sizeof(int*));
for(int i = 0; i < n; i++) {
if(... | [
"alextsigilis@gmail.com"
] | alextsigilis@gmail.com |
b2a2128b87186d84b21bcc872d133e4f25871b40 | 191707dd19837f7abd6f4255cd42b78d3ca741c5 | /X11R5/contrib/lib/andrew/atkams/messages/lib/stubs.c | c1ffa9c55b061f66b1ea568bfabec74f22eadbbc | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | yoya/x.org | 4709089f97b1b48f7de2cfbeff1881c59ea1d28e | fb9e6d4bd0c880cfc674d4697322331fe39864d9 | refs/heads/master | 2023-08-08T02:00:51.277615 | 2023-07-25T14:05:05 | 2023-07-25T14:05:05 | 163,954,490 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 31,543 | c | /* ********************************************************************** *\
* Copyright IBM Corporation 1988,1991 - All Rights Reserved *
* For full copyright information see:'andrew/config/COPYRITE' *
\* ********************************************************************** */
static char *s... | [
"yoya@awm.jp"
] | yoya@awm.jp |
66808c2146f93c59057ae3f3a9ce93c1a183438d | c425afb8bb6b182168fd4c3a46c9b334f4740e60 | /d/taohua/maze/maze29.c | 4ebfd3249f212f7218f08bccc28953e3cb3abbb7 | [] | 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 | 1,529 | c | // Copyright (C) 2003, by Lonely. All rights reserved.
// This software can not be used, copied, or modified
// in any form without the written permission from authors.
inherit ROOM;
#include "maze.h"
void create()
{
set("short", "石阵");
set("long", @LONG
这是一座由约莫两人多高的大石块构成的乱石阵,规模似乎不大,但
抬眼望去,四周尽是重重叠叠的... | [
"i@oiuv.cn"
] | i@oiuv.cn |
ca0094973192eed88d31c0bbfda1837c15a0f16f | dd840f29c0c4340d579cfe524a1fb00bfd533d19 | /Inc/programm_vocoder.h | b76987768e2c96c68422107f85259142e4e345d2 | [] | no_license | viorz/Speex_STM32F407_UDA1380 | 1ddf478658724bd9ac8538903d213176dc6db05a | e908c517e783d6400e47adbd254b2af9c1b0f337 | refs/heads/master | 2020-04-09T22:48:10.503852 | 2019-05-16T07:45:05 | 2019-05-16T07:45:05 | 160,639,193 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 248 | h | #ifndef __PROGRAMM_VOCODER_H__
#define __PROGRAMM_VOCODER_H__
#include "main.h"
#include "i2s.h"
#include "gpio.h"
#include "uda1380.h"
#include "codec.h"
#include "function.h"
void start_init(void);
void run_vocoder(void);
#endif
| [
"noreply@github.com"
] | viorz.noreply@github.com |
eec2517d498ac8ed88ce6a20f3a9ed2078933d65 | 87a17e1fd2411568dac5fe51069f67cb300e27cd | /fork5.c | cf8543895baee39bb81fde24d48b0b526c442148 | [] | no_license | iphatchanya/ForkLab | 4991a10a5d71ada08e2e3f6d62d11b8f733937f7 | d7d4bf4f094fd529e6753233613ee62d6a2321e2 | refs/heads/master | 2020-11-24T19:07:45.519612 | 2019-12-16T04:49:20 | 2019-12-16T04:49:20 | 228,304,730 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 358 | c | // fork5.c
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
void fork5()
{
printf("\n [%d] L0 \n", getpid());
if (fork()!= 0)
{
printf("\n [%d] L1 \n", getpid());
if (fork()!= 0)
{
printf("\n [%d] L2 \n", getpid());
fork();
}
}
printf("\n [%d] Bye \n", getpid());
}
... | [
"phatchanya.c@ku.th"
] | phatchanya.c@ku.th |
6f0ec9a3c4c0326e4be982b4220772070cb42049 | 6c490fb77d124eddd2c1352d5f94ddf254c257bb | /1012.c | 68db2d0b433a7de5da200884af0e2719a14aa7ed | [] | no_license | f4him/uri_submissions | e48c4fb522a8bc64e3e804f747fdae03a12d3f82 | dacb2f707f841e7aa3f154abd6f778a5c3a4a6e9 | refs/heads/master | 2020-09-14T16:45:54.027592 | 2019-11-21T14:37:20 | 2019-11-21T14:37:20 | 223,189,106 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 305 | c | #include <stdio.h>
int main() {
double A,B,C,pi,t,c,tr,q,r;
pi=3.14159;
scanf("%lf%lf%lf",&A,&B,&C);
t=A*C/2;
c=pi*C*C;
tr=(A+B)*C/2;
q=B*B;
r=A*B;
printf("TRIANGULO: %.3f\nCIRCULO: %.3f\nTRAPEZIO: %.3f\nQUADRADO: %.3f\nRETANGULO: %.3f\n",t,c,tr,q,r);
return 0;
}
| [
"noreply@github.com"
] | f4him.noreply@github.com |
2f34a53b128b4c51361c874e79ea8b04df2c2a7a | 651b8518618387c84d082ae3c85c4087c14aa1bc | /chromium/patches/patch-third__party_angle_src_compiler_osinclude.h | 06bf355cdb39309177feb0a752b612d8c6c59bfd | [
"BSD-3-Clause"
] | permissive | jcea/pkgsrc-wip | 3868cde803d99b2911971fe9592bb70f8162f905 | e4e1744528811203f8c31740d09d1f99c2c2617d | refs/heads/master | 2021-01-11T15:44:06.159591 | 2017-01-23T10:12:50 | 2017-01-23T10:12:50 | 79,915,472 | 0 | 0 | null | 2017-01-24T13:48:28 | 2017-01-24T13:48:28 | null | UTF-8 | C | false | false | 589 | h | $NetBSD: patch-third__party_angle_src_compiler_osinclude.h,v 1.1 2011/04/28 03:09:03 rxg Exp $
--- third_party/angle/src/compiler/osinclude.h.orig 2011-04-13 08:13:40.000000000 +0000
+++ third_party/angle/src/compiler/osinclude.h
@@ -15,7 +15,8 @@
#if defined(_WIN32) || defined(_WIN64)
#define ANGLE_OS_WIN
#elif de... | [
"wiz@NetBSD.org"
] | wiz@NetBSD.org |
5cf26279383e6d920744fb06d064b7be8a27e972 | 7e3b463a427d630df64919fbfe20108a5ffbfca6 | /src/modules/unibo_control/LowLevel/Model_GS_temp.h | 29633eb23b7505bd90d9f58a6315c1218438cd91 | [] | no_license | smartoio/Firmware | acd57ca70b8a082da77a2fa859c8005a1dff0dc9 | f204df12c76404e7d6ead7df51b36545de72cc11 | refs/heads/master | 2020-04-06T04:38:36.909079 | 2014-09-10T10:20:50 | 2014-09-10T10:20:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 31,463 | h | /*
* Model_GS_temp.h
*
* Code generation for model "Model_GS_temp".
*
* Model version : 1.2383
* Simulink Coder version : 8.3 (R2012b) 20-Jul-2012
* C source code generated on : Tue Apr 08 14:13:17 2014
*
* Target selection: grt.tlc
* Note: GRT includes extra infrastructure and instrumentation fo... | [
"dario.mengoli@gmail.com"
] | dario.mengoli@gmail.com |
466628ae8fc834d6aab7bac5cefcf689fda07ec0 | 5184d4ad5d7d0ce18870e2b10eaf04c7332510c1 | /Source/nvic.h | 66671e7aceb069b039faf33a940657414098be8b | [] | no_license | hsjia/DIY | 89c73d4696b7948da04cc2b961a4c08f6c51e2e0 | 620c33fb67b4e6f361609a6414b47c2a331631f7 | refs/heads/master | 2020-04-23T16:34:47.684242 | 2014-07-17T03:36:12 | 2014-07-17T03:36:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 66 | h | #ifndef __NVIC_H
#define __NVIC_H
void nvic_init(void);
#endif
| [
"agme@qq.com"
] | agme@qq.com |
757573c580ceed94ce0dbef7a0a297c8504bde85 | d3e228ca9a5906049bbef5d2ed097ad9f021f1e2 | /求数组中两个只出现一次的数/求数组中两个只出现一次的数/test.c | 203b58231e74f1f24acc670159160266fc4cc56b | [] | no_license | Mietian1417/C_code | 42cda124fbd8212d22b8efa720d96a5bd5467ce8 | ef0d4b0d5004ad7149d75d62ca33bcf8a65ed834 | refs/heads/master | 2023-06-19T21:04:44.577684 | 2021-07-21T01:34:15 | 2021-07-21T01:34:15 | 358,584,776 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 568 | c | #include<stdio.h>
void finedif(int arr[], int lenght)
{
int left = 0;
int right = lenght - 1;
int ret = 0;
int sign = 0;;
int first = 0;
int second = 0;
for (int i = 0; i <= right; i++)
{
ret ^= arr[i];
}
for (int i = 0; i < 32; i++)
{
if ((ret & 1 << i) == 1)
{
sign = i;
break;
}
}
for (int ... | [
"1417376552@qq.com"
] | 1417376552@qq.com |
cdd03e4827c7b1eacd47d7e9709b69077fa006a1 | bda533920e2875523fd5945ac1d5e53188dcc5b3 | /tq_ring.c | 7a3af0ed5dc749336a72c5accf261a94c82bd8a8 | [] | no_license | ko1/ptask | 09f8b2ba11118196b9bcacea1f55a36918e63794 | 546849f6079ae03732f71649fb7f0ab635c3db5e | refs/heads/master | 2020-04-21T08:56:30.706815 | 2010-11-06T12:06:34 | 2010-11-06T12:06:34 | 1,034,789 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,993 | c |
#ifndef QDBG
#define QDBG 1
#endif
#define Q_LINKEDLIST 1
struct tq_ring {
tq_t basic;
ptask_t * volatile tail;
ptask_t head;
volatile int wait_thread_num;
pthread_cond_t cond;
pthread_mutex_t cond_lock;
};
static tq_t *
tq_ring_create(size_t capa)
{
struct tq_ring *queue = xmalloc(siz... | [
"ko1@atdot.net"
] | ko1@atdot.net |
aedc812fb2f635f333ca3e81d9c713b10d0ae8c7 | 4a4734bf6d74276950f3c37fe4cddb40c30e0d8a | /Summind_Digits.c | bbf378c1d9f2b8f584056b81efdb2c4144929c33 | [] | no_license | Inzamum-Ul-Haque/Codeforces-UVA-Solves | 60201b1f92fdd60ed7dcad7f37d53c8c98e5b2c0 | 9dc8ffe76693d5b39891c79bc2afb3668b6cba95 | refs/heads/main | 2023-06-05T17:58:40.199769 | 2021-06-23T14:50:48 | 2021-06-23T14:50:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 423 | c | #include<stdio.h>
int main()
{
int input,tmp;
while(scanf("%d",&input)==1 && input!=0)
{
tmp=input;
while((tmp/10)>0)
{
int sum=0;
while(input>0)
{
sum+=input%10;
input=input/10;
}
... | [
"noreply@github.com"
] | Inzamum-Ul-Haque.noreply@github.com |
b7ee4521e462edb93fb298728a2a91f50c814175 | 35a5761d898be3d5964b9b954db6c327e9c5cf93 | /Chapter4/Traversals/postorder.c | 224174c57874f1b786f978bb43ac43089072eff4 | [] | no_license | aadarshkumaran/cracking-the-coding-interview | 31498479d1fe1878defd0a43476051fd1d7e37ef | 0bd20fbf767acf2fd3ec301b2b531b4282b73512 | refs/heads/master | 2020-07-15T08:37:34.511991 | 2014-09-01T12:34:21 | 2014-09-01T12:34:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,767 | c |
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
struct node{
int data;
struct node *left;
struct node *right;
};
struct node *new_node(int data){
struct node *temp = (struct node *)malloc(sizeof(struct node));
temp->data =data;
temp->left = NULL;
temp->right = NULL;
return temp;
}
struct node *ad... | [
"sahil.mutneja26@gmail.com"
] | sahil.mutneja26@gmail.com |
14df1f46d997edbdd326eb109e203cf1abbae0ac | fb0f9abad373cd635c2635bbdf491ea0f32da5ff | /src/native/external/libunwind/include/remote/win/unistd.h | d4ff227871b919e4956351dea312183bd848c1ca | [
"MIT"
] | permissive | dotnet/runtime | f6fd23936752e202f8e4d6d94f3a4f3b0e77f58f | 47bb554d298e1e34c4e3895d7731e18ad1c47d02 | refs/heads/main | 2023-09-03T15:35:46.493337 | 2023-09-03T08:13:23 | 2023-09-03T08:13:23 | 210,716,005 | 13,765 | 5,179 | MIT | 2023-09-14T21:58:52 | 2019-09-24T23:36:39 | C# | UTF-8 | C | false | false | 836 | h | // This is an incomplete & imprecice implementation of the Posix
// standard file by the same name
// Since this is only intended for VC++ compilers
// use #pragma once instead of guard macros
#pragma once
#ifdef _MSC_VER // Only for cross compilation to windows
#ifndef UNW_REMOTE_ONLY
// This is solely intended to... | [
"noreply@github.com"
] | dotnet.noreply@github.com |
20dceec300a4adfec2f54768157c613e49769559 | f4202fff770314b526a7f040f471850b46570d87 | /src/src.c | c35a9edec6f1e912450fb0fb9bcd189c3a24ce29 | [] | no_license | florianfrevol/PSU_minishell1_2017 | 0339943de1150113fdd620ac03e173c221f812e5 | 49c3957ed134625c75f8169f812194b67f9f78b6 | refs/heads/master | 2020-03-07T10:12:16.737180 | 2018-01-30T15:51:52 | 2018-01-30T15:51:52 | 127,425,593 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 883 | c | /*
** EPITECH PROJECT, 2017
** src.c
** File description:
**
*/
#include "gnl.h"
#include <unistd.h>
#include <stdlib.h>
int my_put_nbr(int nb)
{
int mod = 0;
if (nb < 0) {
my_putchar('-');
nb = -nb;
}
if (nb >= 10) {
mod = nb % 10;
nb = nb / 10;
my_put_nbr(nb);
my_putchar(mod + 48);
}
else
my_p... | [
"florianfre@localhost.localdomain"
] | florianfre@localhost.localdomain |
49ba3b38273f73e30b450197a0c87fe97e06397d | 13fb8f1506ab73e1b7877d77e3fc1faf7f84dda2 | /Graph/island.c | ef102a56519882b61022f5362054481649acdac2 | [] | no_license | KeitHLeE94/baekjoonSolved | 5dfab91817bf0d653dc570d4066f431d7086fddb | 89c8e27e6ec17cb4f45ef178f113d78082f09a71 | refs/heads/master | 2018-11-15T12:47:14.472157 | 2018-09-21T15:32:15 | 2018-09-21T15:32:15 | 115,378,246 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,219 | c | //4963번
/*
DFS써서 푸는줄 모르고 그냥 풀다가 DFS 사용.
여태까지 써왔던 DFS가 여기서는 틀렸다고 나온다.
이제 여기서 쓴 새로운 DFS를 기본으로 사용해야겠다.
*/
#include <stdio.h>
int map[50][50];
int visit[50][50] = {0};
int w, h;
int dx[8] = {-1, -1, 0, 1, 1, 1, 0, -1};
int dy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
void DFS(int x, int y){
int i, nx, ny;
visit[x][y] ... | [
"wogus4187@naver.com"
] | wogus4187@naver.com |
ef5ed0e03619ad40405f85597a63463fc4af02f6 | 7277a98afe570ca23715545e24a0e3bedb620b76 | /initLab0.c | 40f5e372a77ac4aa73ad6b32d7ddfd409c0eaeea | [] | no_license | smk12/Lab0 | c978ddde0e3151be929564d5e5693652678249ea | db279ff1efc6895fced017df6ac06e759600d66a | refs/heads/master | 2021-01-22T09:43:42.450663 | 2015-02-07T03:24:23 | 2015-02-07T03:24:23 | 30,443,458 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,084 | c | /*
* File: initLab0.c
// Date: 2/6/2015
// Authors: Sean Kenney - smk12
* Created on December 27, 2014, 1:31 PM
*/
#include "p24fj64ga002.h"
#include "initLab0.h"
#define FCY 14745600.0
#define ONE_MILLISECOND 57
#define TIME_DELAY 2
void initLEDs()
{
TRISBbits.TRISB15 = 0;
TRISBbits.TRISB14 ... | [
"smk12@email.arizona.edu"
] | smk12@email.arizona.edu |
7af2ff4f73b9db35edf314b1e39b01a8eaa43226 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/UnityEngine_UI_UnityEngine_UI_Selectable_SelectionStateMethodDeclarations.h | e477ed4c1c790b5a5f2b847bf7cefc93face9e3e | [] | no_license | Klanly/TutorialPackageClient | 6f889e96c40ab13c97d107708ae8f3c71a484301 | b9d61ba2f287c491c9565b432f852980ec3fee28 | refs/heads/master | 2020-12-03T01:42:35.256114 | 2016-11-01T02:40:21 | 2016-11-01T02:40:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 188 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// UnityEngine.UI.Selectable/SelectionState
struct SelectionState_t6135;
| [
"bu213200@gmail.com"
] | bu213200@gmail.com |
05fe0613aadb58c8546876941a2eb7134159ae83 | b9bdbfc4a888f3276ef2a1d1b26888cd8d8564f4 | /Skit2D/Skit2D.c | 81e229a0973a06e41a9c9b7933d80c33d049c195 | [] | no_license | poltergasm/Skit2D | d2f572dd8c5cadbbff728582feda96c3b03da59d | ade013e1a6e3cd7db5b7e8878c95affa938cbf78 | refs/heads/master | 2021-04-27T14:11:13.518556 | 2018-02-23T00:56:15 | 2018-02-23T00:56:15 | 122,451,255 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,690 | c | #include "skit2d.h"
#include "textures.h"
void skit2d_init(Skit2D *engine, const char* title, int x, int y, int width, int height, bool fullScreen)
{
if (SDL_Init(SDL_INIT_VIDEO) == 0) {
int flags = 0;
if (fullScreen)
flags = SDL_WINDOW_FULLSCREEN;
printf("* SDL Initialized OK\... | [
"polter@perlpowered.com"
] | polter@perlpowered.com |
0f9ecd84f30c3e75c1039d8b602fd12bace9798f | a487796631ffa510600dae526b535b86a92418e0 | /resources/flashrom/patch/flashchips.c | bb24bdb1a1e768d97697c0a23136341246c8fe0e | [] | no_license | BASLQC/t60p_coreboot_src | 462e5649651d37489a1efd64943ec7e1506e1d76 | b8a317097e6e95d0f2f1da238ee10ee03c771367 | refs/heads/master | 2016-09-05T13:15:04.284620 | 2014-10-11T04:10:56 | 2014-10-11T04:10:56 | 24,964,191 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 346,209 | c | /*
* This file is part of the flashrom project.
*
* Copyright (C) 2000 Silicon Integrated System Corporation
* Copyright (C) 2004 Tyan Corp
* Copyright (C) 2005-2008 coresystems GmbH <stepan@openbios.org>
* Copyright (C) 2006-2009 Carl-Daniel Hailfinger
* Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
*... | [
"sagnessagiel@gmail.com"
] | sagnessagiel@gmail.com |
8d8c183b0621164b4475ee345712bdc5cfc33cf0 | 5912119aa35f1cea00a6d874e9426d719b70bba0 | /STM32 programmes/F103 ZET6/HARDWARE/LED.c | d471010f4d59d84916afa123b149f0becff06adb | [] | no_license | penguinGOD/MCU-code | 952c9573e7074e3d82fa3975a791c959f672a13d | 208dd3a64921bfd561c3b7040b223f9ae581aacb | refs/heads/master | 2021-05-19T04:46:14.911767 | 2020-03-31T08:24:07 | 2020-03-31T08:24:07 | 251,534,073 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 778 | c | #include "LED.h"
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOE, ENABLE); //使能PB,PE端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5; //LED0-->PB.5 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.... | [
"48117135+penguinGOD@users.noreply.github.com"
] | 48117135+penguinGOD@users.noreply.github.com |
2bc025a50fcfde3b9433c3bd16c132b414659a4d | 512cdc962a786168f53456cad181d4e1a6f5176e | /HARDWARE/TOUCH/gt9147.c | 9ce042fa7e0d3f56a1d389a87589b748175135ba | [] | no_license | GaHoWong/2020GGS | 160d12dc8a71c8d64316ee78fd7276665925d9ff | 51e8ebe010f1a20e6a0d32e225d87027af1f11ae | refs/heads/master | 2023-02-26T21:34:28.258337 | 2021-02-05T07:10:19 | 2021-02-05T07:10:19 | 314,429,056 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 8,991 | c | #include "gt9147.h"
#include "touch.h"
#include "ctiic.h"
#include "usart.h"
#include "delay.h"
#include "string.h"
#include "lcd.h"
//////////////////////////////////////////////////////////////////////////////////
//本程序只供学习使用,未经作者许可,不得用于其它任何用途
//ALIENTEK STM32开发板
//4.3寸电容触摸屏-GT9147 驱动代码
//正点原子@ALIENTEK
//技术论... | [
"gahowong@outlook.com"
] | gahowong@outlook.com |
ed59a30854f8d5ac0a70a59b6f463af3459038b8 | 6d6ec933fea3f694029187a9d80f862a600ebf5c | /mimikatz/modules/sekurlsa/kuhl_m_sekurlsa_utils.c | 34d4b794d55f520c93acac0ec2d94ec12208a7dd | [
"CC-BY-4.0"
] | permissive | Nvyfie/mimikatz | 6d9a0b53d261ebb1d5819ceb441570097201a0a6 | 17669a9d5d6141133ef781c4e3354b1a36c7f36e | refs/heads/master | 2023-07-18T14:45:06.958395 | 2021-09-05T17:28:59 | 2021-09-05T17:28:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,101 | c | /* Benjamin DELPY `gentilkiwi`
https://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : https://creativecommons.org/licenses/by/4.0/
*/
#include "kuhl_m_sekurlsa_utils.h"
#if defined(_M_ARM64)
BYTE PTRN_WN1803_LogonSessionList[] = {0xf9, 0x03, 0x00, 0xaa, 0x58, 0xe7, 0x00, 0xa9};
KULL_M_PATCH_GENERIC ... | [
"benjamin@gentilkiwi.com"
] | benjamin@gentilkiwi.com |
18cff73dfef2ef04237b05a89d278a296971d8fb | a4ec75051d5bbc8e36cd5db06c8bcb3b57ccace7 | /render.h | 98b06cb298ef80a74c0bf7c3e6d29da96626c2d7 | [] | no_license | sergds/pspquake | 4ebdded6d6a0f7f6012f9c2f43220c9993dd877c | e33f435d61d204ce4277252e2c7f828b317497c7 | refs/heads/master | 2022-03-12T06:18:00.558064 | 2019-11-01T05:17:38 | 2019-11-01T05:17:38 | 121,130,881 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,954 | h | /*
Copyright (C) 1996-1997 Id Software, Inc.
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 your option) any later version.
This program is distributed in th... | [
"st1x.bc2@gmail.com"
] | st1x.bc2@gmail.com |
4ae99be6e40c77939643c6bc8850b69e88c17588 | 7a73ad84bb3f5bc8bc07ba8f999941b608509ec1 | /test_practica_1/version.c | 5b412bb2fc019ad66754f2e31fe6e5f1c064d39d | [] | no_license | kpzaolod6000/Seguridad_Computacion | 189e7830c1a02af0e4efa315c586fc16c7cb0e39 | 1d0aa84b04aa223577715c79cc67a6fa7caae2af | refs/heads/main | 2023-08-15T13:44:49.369034 | 2021-09-25T22:22:49 | 2021-09-25T22:22:49 | 405,815,227 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 985 | c | #include <stdio.h>
int main(void) {
#ifdef __STDC_VERSION__
printf("Aparentemente compatible con __STDC_VERSION__\n");
# if __STDC_VERSION__ == 199901L
printf("Este código fue compilando con el estandar C99.\n");
# elif __STDC_VERSION__ == 201112L
printf("Este codigo fue compil... | [
"43651853+kpzaolod6000@users.noreply.github.com"
] | 43651853+kpzaolod6000@users.noreply.github.com |
97ae6625ef88ccfad8562e947d2ae10e5897873e | ffb95cd72b2cd8e631ca3b195ef1b5186390b55b | /pdclib/tags/v0.4/functions/stdlib/strtoull.c | 00c786fd6d4303c3e9a0162300bc3c24f6041e5f | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | MatiasNAmendola/CSOS | 1a3a5a8e5723486fed2962b2d4b5eda88aa9596f | 63ee3627377005e2138ef7f11d632c90a7b232af | refs/heads/master | 2021-01-16T18:44:33.801367 | 2011-05-14T06:00:49 | 2011-05-14T06:00:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,437 | c | /* $Id: strtoull.c 104 2005-12-15 13:23:52Z solar $ */
/* Release $Name$ */
/* strtoull( const char *, char * *, int )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
#include <limits.h>
#include <stdlib.h>
#ifndef REGTEST
un... | [
"charlie@charliesomerville.com"
] | charlie@charliesomerville.com |
1f5ca9f8c70d4044782a69ddf0162b84d358ee71 | a0c4ed3070ddff4503acf0593e4722140ea68026 | /source/NET/RAS/SRC/NT/NDIS/RASHUB/HUBALL.H | 9cb0ad3500108a23fc33b8dab975f8506a8980f8 | [] | no_license | cjacker/windows.xp.whistler | a88e464c820fbfafa64fbc66c7f359bbc43038d7 | 9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8 | refs/heads/master | 2022-12-10T06:47:33.086704 | 2020-09-19T15:06:48 | 2020-09-19T15:06:48 | 299,932,617 | 0 | 1 | null | 2020-09-30T13:43:42 | 2020-09-30T13:43:41 | null | UTF-8 | C | false | false | 497 | h | /*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
huball.h
Abstract:
This code include most of the 'h' files for rashub.c
Author:
Thomas J. Dimitri (TommyD) 29-May-2000
Environment:
Kernel Mode - Or whatever is the equivalent on OS/2 and DOS.
Revision History:
--*/
#include <ndis.h... | [
"71558585+window-chicken@users.noreply.github.com"
] | 71558585+window-chicken@users.noreply.github.com |
a23c2b2001eb9cac894e7000e8fd6e5eabbf3664 | 3f896d2f0a6c98751938e5318e554530142d7dbd | /aula15/ex5/main.c | 0b70d3f61316b92109c6da3cd765194cfbe4fa67 | [] | no_license | tlima1011/linguagemC | 8846659447c347818d25e404887c48de1da4ba96 | 695857753cd16cbb7695a6ed429e036d1faa9d6b | refs/heads/master | 2022-12-01T00:58:26.583535 | 2020-08-20T21:25:35 | 2020-08-20T21:25:35 | 283,878,207 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 496 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
double media = 0, nota1 = 0, nota2 = 0;
printf("Primeira nota: ");
scanf("%lf",¬a1);
printf("Segunda nota: ");
scanf("%lf",¬a2);
media = (nota1 + nota2) / 2.0;
if(media < 7){
printf("Reprovado com media %.1lf", media);
... | [
"noreply@github.com"
] | tlima1011.noreply@github.com |
0f2bd26bc60c0666d175b8a030b5facc6be2cb32 | e5672fa7fb534f96726e79c324ab144b1121d603 | /sw-hw/linux/rtc_x86/generated/autoconf.h | 1a5f360b5bfc489dffa57c477a80fd39ebf5b760 | [] | no_license | ahorn/benchmarks | 83ee99c145285adc28aa74b4346ab54dfca23332 | f9797f22ff4ccac907eab0352f145d86f957a2fd | refs/heads/master | 2021-01-22T12:07:31.216637 | 2015-10-06T13:41:40 | 2015-10-06T13:41:40 | 4,547,365 | 8 | 1 | null | null | null | null | UTF-8 | C | false | false | 9,523 | h | /*
*
* Automatically generated file; DO NOT EDIT.
* Linux/x86_64 3.6.2 Kernel Configuration
*
*/
#define CONFIG_HAVE_ARCH_SECCOMP_FILTER 1
#define CONFIG_KERNEL_GZIP 1
#define CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK 1
#define CONFIG_INPUT_KEYBOARD 1
#define CONFIG_FIRMWARE_MEMMAP 1
#define CONFIG_FIX_EARLYCON_MEM 1
... | [
"alex.horn@cs.ox.ac.uk"
] | alex.horn@cs.ox.ac.uk |
0bfc3cc894db9bad9a5e506b411c9b495ced7881 | 31f8778559299f3f823ec7e13b3233ba824ac64c | /lib/my/parse_flags.c | 560dcca8d589e64ee6fae3de3ade22c6b53efa71 | [] | no_license | tawfiqjaffar/MP3INFO | 544a4268871a2fbd967f5e0a944c6506aef373b7 | 10f842b22cabd8d2ce08d7b8d245967376e846ac | refs/heads/master | 2022-12-09T12:17:53.511873 | 2021-06-27T02:47:23 | 2021-06-27T02:47:23 | 102,363,210 | 0 | 1 | null | 2021-06-27T02:47:48 | 2017-09-04T13:15:14 | C | UTF-8 | C | false | false | 612 | c | /*
** EPITECH PROJECT, 2018
** PSU_my_printf
** File description:
** Parses the flags passed to a printf string
*/
#include "my.h"
#include <stdarg.h>
#include <stdlib.h>
int parse_flags(va_list ap, char flag)
{
int i = -1;
fptr_t functions[] = {
{'c', chr}, {'d', num}, {'s', string},
{'i', num}, {'x', hex_l}, ... | [
"tawfiq.jaffar@epita.fr"
] | tawfiq.jaffar@epita.fr |
531764aa9c313c49004a4a297a3c862973c9f46f | 38687f484ca735bf9fbeba7c615e03741c519230 | /csound-book/cd-chapters/Bush/bushrev/src-txt/defs.h | be54661fc737b99af91b9cd1f275a29e8b28a757 | [] | no_license | mekayama/csound-docs | e589f9827052bf2a04fb89481ae0ce6abb603a9a | 23a5dcbcf0e0afd44fe008719b7f9b92ef66049a | refs/heads/master | 2021-01-12T19:23:54.376602 | 2010-10-11T16:14:40 | 2010-10-11T16:14:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,179 | h | /* defs.h */
/* macros for sco operations */
/* Csound does not use p0 */
#define F_NUM 1
#define F_STA 2
#define F_GEN 3
#define F_SIZE 4
#define I1PF "i", "sta", "dur", "pch1", "pc1", "wob1", "pdf1", "wid1", "atk1", "dec1", "pdB1", "iloc1", "eloc1", "pch2", "pc2", "wob2", "pdf2", "wid2", "atk2", "dec... | [
"pedro.kroger@gmail.com"
] | pedro.kroger@gmail.com |
afe1783851766b6f24f6516b337be702ff07a8d5 | 40d6c51e10a5d2f6023d80fa83a16862d21582f3 | /src/test_cases/1lvl/1lvl_test_cases.h | b001c40a1a6200835265762bcc4c4623ec2a742f | [
"MIT"
] | permissive | meinkea/RottenCore | e59b366ae065fc56f10c05a0150b156c64870ced | 310a1cad96558e6e6accc1f67baf141fb921048c | refs/heads/master | 2023-03-29T16:52:34.869200 | 2021-04-06T01:19:22 | 2021-04-06T01:19:22 | 268,205,656 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 211 | h | /*! \file lvlz_test_arrays.h
*
*/
#ifndef BLASxON__TEST_CASES__1LVL__LVLZ_TEST_ARRAYS_H
#define BLASxON__TEST_CASES__1LVL__LVLZ_TEST_ARRAYS_H
#endif // BLASxON__TEST_CASES__1LVL__LVLZ_TEST_ARRAYS_H
| [
"meinkea@gmail.com"
] | meinkea@gmail.com |
77a36bfc3fffc9d8608ce101fa98289184396fa7 | 2561dba6586c3d2a3fcd62d29dd6be89cd893855 | /scripts/RaspberryPI/src-gen/BlinkRight_ID_19411.c | e66fc57a15058eedafd531e1d5bcb296db53136b | [] | no_license | Yueeeeeeee/SLAMParking | 4c5503f46233b4e011775070458e18c49f49fdec | e58190181be8b3758cc26d3f316c9bb8c2ca72a0 | refs/heads/master | 2020-06-24T18:25:14.778746 | 2019-07-26T16:05:01 | 2019-07-26T16:05:01 | 199,043,789 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,830 | c | /* generated by AutoFOCUS 3 (2.14.0) on Tue Jul 09 17:20:03 CEST 2019 */
#include "inc-gen/BlinkRight_ID_19411.h"
GEN_TYPE_boolean EnableRightSignal_ID_19501;
GEN_TYPE_boolean noval_EnableRightSignal_ID_19501;
GEN_TYPE_int CountTickInRight_ID_19555;
GEN_TYPE_boolean noval_CountTickInRight_ID_19555;
GEN_TYPE_RGBCol... | [
"yuezrhb@gmail.com"
] | yuezrhb@gmail.com |
33d8d7dd1e12bf71f2ba35b935d245dc19599f8c | 98d74e66473bdc361e3a1179e162211d8374f891 | /myInterrupt.h | 2a2190d9dd2164ac58f61c81e0d88ded31546a5c | [] | no_license | FirstPlaygroundAndThenIcecream/Arduino_Train_Control | b196e79757246b8b00331092708100508ad98c12 | 9ccbcaa2c1d787dc6705e00f616ee2c0b872084f | refs/heads/master | 2020-03-21T20:20:17.543015 | 2018-06-28T10:06:43 | 2018-06-28T10:06:43 | 139,000,988 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 542 | h | #ifndef MYINTERRUPT_H
#define MYINTERRUPT_H
#define DCC_PIN 4 // DCC out
//Timer frequency is 2MHz for ( /8 prescale from 16MHz )
#define TIMER_SHORT 0x8D // 58 usec pulse length 141 255-141 = 114
#define TIMER_LONG 0x1B // 116 usec pulse length 27 255- 27 = 228
#define PREAMBLE 0 ... | [
"example@example.dk"
] | example@example.dk |
6cd06dfc89b4bf718eb379a09cbed32376dc9da8 | c4d7afe5b2a9ab66d9a22724beb476a397c6c234 | /MINI_PROJECT/font5x8.h | d79b916debfc3a0da7d22b9837ed9a6997fc38cd | [] | no_license | RobertoBeltran7/ECE362 | e556eb4e48b084ad5eea0a2f5b6974a1a2fa25f4 | f089af6da738d5d2a596a4b97aa1d15fb5ab7146 | refs/heads/master | 2022-10-17T07:18:21.218830 | 2020-06-15T23:16:27 | 2020-06-15T23:16:27 | 272,088,088 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,611 | h | #ifdef __AVR__
//#include <avr/pgmspace.h>
static const char PROGMEM font5x8[] = {
#else
static const char font5x8[] = {
#endif
0x00, 0x00, 0x00, 0x00, 0x00, // (space)
0x00, 0x00, 0x5F, 0x00, 0x00, // !
0x00, 0x07, 0x00, 0x07, 0x00, // "
0x14, 0x7F, 0x14, 0x7F, 0x14, // #
0x24, 0x2A, 0x7F, 0x2A, 0x12,... | [
"rbeltran101010@gmail.com"
] | rbeltran101010@gmail.com |
f7fbd53a92d2fd96edd91e339d3a8442cbffa237 | a46e7ca28b32278bd034c71adab96ae34eb358d3 | /Projects/STM32F401-Discovery/Templates_LL/Inc/main.h | e340600de6227e84d9c3cbfb82e54b0e0aa670fa | [
"BSD-2-Clause"
] | permissive | trentgill/STM32_Cube_F4 | 70ef54bcee480ca0ccf46bd6802988d1cd4ca890 | 95b69ec6eb6d681e592eaa76fac7365519b0e885 | refs/heads/master | 2021-01-20T00:43:12.242892 | 2017-04-23T21:56:15 | 2017-04-23T21:56:15 | 89,175,100 | 0 | 1 | null | 2020-03-08T01:24:37 | 2017-04-23T21:58:12 | C | UTF-8 | C | false | false | 5,918 | h | /**
******************************************************************************
* @file Templates_LL/Inc/main.h
* @author MCD Application Team
* @version V1.0.0
* @date 17-February-2017
* @brief Header for main.c module
******************************************************************... | [
"Trent@fuku.local"
] | Trent@fuku.local |
04bc4b078257bd0d61b651ce8ebbbe4a0ce04a4b | 416427190061e0c73bb65a765c1436a1b135f22c | /JavaClass/a.c | 6546dd7b3f35e677a8b268f3b15a3ef2484256c6 | [] | no_license | VN-huster/OOLT.ICT.20202.20184267.NguyenNgocHuan | ead33457dda67564c4913d37a0ee81a12976984c | 012dd20071f9149ce783dc971d0ccaeabcfd62f4 | refs/heads/master | 2023-04-07T02:40:55.346826 | 2021-02-26T06:56:25 | 2021-02-26T06:56:25 | 342,222,270 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 50 | c | #include <stdio.h>
int main(){
printf("sd");
} | [
"thesunshine36@gmail.com"
] | thesunshine36@gmail.com |
d743170ab7644a3aaf46e1a7c2a75c357909f331 | ab21507d0a5212523ff7c57e97d49f1b4dabc5f8 | /uclib/hash.c | 89ebe203b9aec26593cbfcaccb7ce325a405b54c | [] | no_license | vnet/uclib | 95da04579c0ae2c3c153bced18e1cdc361823831 | ba7662e89d533fd45b964c2eaa98336bf3d3f563 | refs/heads/master | 2016-09-03T03:53:41.085206 | 2015-03-23T03:02:25 | 2015-03-23T03:02:25 | 22,677,361 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 21,891 | c | /*
Copyright (c) 2001-2005 Eliot Dresselhaus
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, pub... | [
"eliot@sonic.net"
] | eliot@sonic.net |
a2c5d5980590e68926b4e9be8fe67fc43d7902cb | a92a91a02b97334487fd89deb29064dd109b965d | /connectivity/lbs/asn1/rrlp_asn1/incl/RRLP_GANSSAssistanceData.h | 3d42ee5040eeb0cecb5fbf794cff2d835ce509e5 | [
"Apache-2.0",
"BSD-2-Clause"
] | permissive | AveHornet/vendor_st-ericsson_u8500 | 4af9987f79cbe9bebd142c770cf10c36ac959fd7 | 5c3c8f4491a9996429c52ecc946bf76d3c4fc5a8 | refs/heads/master | 2021-01-21T09:07:00.004338 | 2014-03-03T04:23:29 | 2014-03-03T04:23:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,848 | h | /*
* RRLP_GANSSAssistanceData.h
*
* Copyright (C) ST-Ericsson SA 2010. All rights reserved.
* Author: sunilsatish.rao@stericsson.com for ST-Ericsson.
* License terms: Redistribution and modifications are permitted subject to BSD license.
*
* Redistribution and use in source and binary forms, with or without
* m... | [
"shantanupaul@live.com"
] | shantanupaul@live.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.