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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7135b0841307cdd63add5d5013c16fe9cdfc2be7 | fcc3291a776ce3b59c4c06a92d2e6beb56bd6b7a | /src/config/bitcoin-config.h | aa38f332ce92781966e86e04f60072195b1b54e7 | [
"MIT"
] | permissive | karanjchavda/farmcoin | 47b8ca5b24be7ed5d8d5a8a13e0b88e389268bc7 | 9b310341f76ada5dd7dea9196d4524216df94291 | refs/heads/master | 2021-09-02T16:48:08.577134 | 2018-01-03T17:24:54 | 2018-01-03T17:24:54 | 115,443,614 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,750 | h | /* src/config/bitcoin-config.h. Generated from bitcoin-config.h.in by configure. */
/* src/config/bitcoin-config.h.in. Generated from configure.ac by autoheader. */
#ifndef BITCOIN_CONFIG_H
#define BITCOIN_CONFIG_H
/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */
... | [
"32610984+karanjchavda@users.noreply.github.com"
] | 32610984+karanjchavda@users.noreply.github.com |
1c8cce9687892ddc12434c6f7eb6090e91fb16eb | 83c59e60ca28169a8f3e096d814ded53831cb409 | /Codes in C/day14.c | ffcd7c52594aae3bcea287222cdafc37b3434615 | [
"MIT"
] | permissive | Vedarth/data-structures-and-algos | 4578f7bbce2d185a0d26225e2fa5885a27bbe701 | b9af3412441c5024e67d67d67228c67dfa100450 | refs/heads/master | 2020-04-04T23:13:06.508191 | 2019-12-26T09:54:53 | 2019-12-26T09:54:53 | 81,969,378 | 2 | 1 | null | 2017-08-29T13:44:03 | 2017-02-14T17:10:38 | C | UTF-8 | C | false | false | 723 | c | #include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main() {
int i,j,k,n;
scanf("%d %d",&n,&k);
unsigned long long int a[n],b,c[n];
int sum=0,l=0,size=0;
for(i=0;i<n;i++)
{
scanf("%lld",&a[i]);
c[i]=a[i]%k;
}
for(i=0;i<n;i++)
... | [
"vedarth.sharma@gmail.com"
] | vedarth.sharma@gmail.com |
b83d2c0e8b3d641fecff0c8e2eba0f20eb661cff | edf8e271c92f3a0fb3f767c5c7e3e10ac193698a | /linked lists, queues, deques, stack/prefix-resolution.c | 7fec20c5ae1f4e3100a1c50009d721fb16d45420 | [] | no_license | Abubakar1997/CSE-16-54 | c7ca7b83f0a14d2716c1385a43f11c2978999eba | 17e05bff932d1991bb079315fe26abc998dfbf6e | refs/heads/master | 2020-03-27T08:20:55.124293 | 2018-08-27T04:26:50 | 2018-08-27T04:26:50 | 146,246,520 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,536 | c | #include <stdio.h>
#include <stdlib.h>
char expression[] = "+9*26";
int stack[20];
int start = -1;
int top = -1;
void display(){
int i;
for (i = start ; i <= top; i++) {
printf("%d ",stack[i] );
}
printf("\n");
}
char peek(){
printf("%d\n",stack[top] );
return stack[top];
}
void push(char data){
... | [
"areebwani29@gmail.com"
] | areebwani29@gmail.com |
7208c6f33840cf0989726797d66dfb9f93119480 | 0daedf8371c34db81b60bfc2563b1796b95dc9a0 | /drivers/common/opentimers.c | a94057aaf7285ebcd6681803440ab46b6fe1154c | [] | no_license | XaviLC/openwsn-fw | fb16445276516a20992c04490a951d99412e7f65 | 9c4bb562d2fb38d1e81ad899cfbd3d463d58c9b6 | refs/heads/master | 2021-05-29T12:25:10.543202 | 2015-06-19T19:35:00 | 2015-06-19T19:35:00 | 107,964,272 | 1 | 0 | null | 2017-10-23T10:03:44 | 2017-10-23T10:03:44 | null | UTF-8 | C | false | false | 13,677 | c | /**
\brief Definition of the "opentimers" driver.
This driver uses a single hardware timer, which it virtualizes to support
at most MAX_NUM_TIMERS timers.
\author Xavi Vilajosana <xvilajosana@eecs.berkeley.edu>, March 2012.
*/
#include "opendefs.h"
#include "opentimers.h"
#include "board_ow.h"
#include "leds.h"
#i... | [
"erizzaaaaa@gmail.com"
] | erizzaaaaa@gmail.com |
9f76972a6c80b842d3dc59db7249e95738f43334 | 7c16f6e37e4a55b47710eb1c4f10350af00fbc3a | /Example/Pods/Target Support Files/Pods-YKPushAndBackSegue_Example/Pods-YKPushAndBackSegue_Example-environment.h | d5e2d1d14072ce4dd698230881d5f3a02a135fae | [
"MIT"
] | permissive | yaizudamashii/YKPushAndBackSegue | 18c16f2042898402ed9a4dfb6e7104fc80214a52 | d68d7f3401ef9e1e3af9747cc00325379ca79013 | refs/heads/master | 2016-08-04T19:08:49.241427 | 2015-08-24T01:38:00 | 2015-08-24T01:38:00 | 41,271,355 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 460 | h |
// To check if a library is compiled with CocoaPods you
// can use the `COCOAPODS` macro definition which is
// defined in the xcconfigs so it is available in
// headers also when they are imported in the client
// project.
// YKPushAndBackSegue
#define COCOAPODS_POD_AVAILABLE_YKPushAndBackSegue
#define COCOAPODS_VE... | [
"yuki@Yuki-Kondas-MacBook-Pro.local"
] | yuki@Yuki-Kondas-MacBook-Pro.local |
0d7cbc77a26d613078acb119fb6951c56d107c19 | acc915baee1da96310b1c3708e4425edd64b592e | /servoStyringPWM/open62541.c | 7c0f864bc80e07a123f4f7a29b8705a02167f2d7 | [] | no_license | peten17/2_semesterprojekt | f2b8a6e6d2da46ea780d336e2e8923b0689cabfe | f90002b926e535e0ffebc70b4ae5dac043f63643 | refs/heads/master | 2021-05-02T00:27:50.856481 | 2018-09-20T07:34:09 | 2018-09-20T07:34:09 | 120,942,850 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,649,324 | c | /* THIS IS A SINGLE-FILE DISTRIBUTION CONCATENATED FROM THE OPEN62541 SOURCES
* visit http://open62541.org/ for information about this software
* Git-Revision: 0.3-rc1
*/
/*
* Copyright (C) 2014-2018 the contributors as stated in the AUTHORS file
*
* This file is part of open62541. open62541 is free software: yo... | [
"vikpo@live.dk"
] | vikpo@live.dk |
e65d7da15c1ba680a42fd2bb19890d80cb93cbe0 | 732bd48d8fac2ee615ea77345e5b8a992ff36357 | /mods/fft/fftw-3.3.4/rdft/scalar/r2cb/r2cb_20.c | 9cbba6207225ef7a1525544bad845d6ad38b6718 | [
"GPL-2.0-or-later",
"GPL-2.0-only",
"MIT"
] | permissive | sasq64/apone | 133c480d310f29800f79ee889524920fc46963b6 | b6ab1bfdb742d387b7180217f5dc240c5c1d8519 | refs/heads/master | 2020-05-21T22:10:11.672539 | 2019-06-06T21:40:20 | 2019-06-06T21:40:20 | 12,408,282 | 8 | 2 | MIT | 2018-09-13T16:00:24 | 2013-08-27T14:30:10 | C | UTF-8 | C | false | false | 11,219 | c | /*
* Copyright (c) 2003, 2007-14 Matteo Frigo
* Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology
*
* 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 ... | [
"sasq64@gmail.com"
] | sasq64@gmail.com |
9d63ea8bfaefb49580eed52c0db547d4a4790624 | f391f4e11f245631f1331d7a401b262f8400d5ee | /Program3/producer.c | c018599203814f6d3d6b0c4e8ea3edc2c7bfc468 | [
"Apache-2.0"
] | permissive | urstrulykrishna/Operating-Systems-CS550 | 3c663f83d2bd5d5afafa041225f65b206a8a57fd | c788daf7e215dfa1625de357aa737a7bb74632ad | refs/heads/master | 2021-12-23T03:23:17.738378 | 2017-10-27T05:54:35 | 2017-10-27T05:54:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,368 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
#include <errno.h>
// this code assumes a maximum line length of 100 bytes.
#define MAXLEN 100
int main(int argc, ch... | [
"noreply@github.com"
] | urstrulykrishna.noreply@github.com |
0dd6d2e79bc955f8e5938deda8f6f18a286f6b4f | 925e232d9fc3eebff29bf5a5165254b16af76a59 | /os_file.h | 30ce8a38f963b1fc98d11cf66a0723af83fc9c6d | [] | no_license | ColdWater2019/Turing_AI_Client | 807cb2116c47fc2fb947ea9096d62d003de87026 | 02ceea0d460d84a173fb79e026cf086a3a18c605 | refs/heads/master | 2020-06-24T00:36:32.966743 | 2019-07-25T09:07:04 | 2019-07-25T09:07:04 | 198,796,628 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 601 | h | #ifndef OS_FILE_H
#define OS_FILE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
typedef struct os_file* os_file_handle_t;
__attribute ((visibility("default"))) os_file_handle_t os_fopen(const char * path, const char * mode);
__attribute ((visibility("default"))) int os_fclose(os_file_handle_t file);
__a... | [
"zyh@rock-chips.com"
] | zyh@rock-chips.com |
4bb2c1904750c7a1ee230a17eaacf52d9980c83e | 48fd30a67a1c57e2a368afc47f757ecd127fc246 | /arm/7.80.3/ST/STM32F4xx/STM32F4xx_DSP_StdPeriph_Lib/Project/Homework5/stm32f4xx_it.c | d0590aeb8230ad8077b5f02e0f66babd102bc292 | [] | no_license | NateBowen/micro_apps | aa2573ae32fcb856d5465848ed0400d6c75b6f0e | ba35e1006c0f76cc0d95c25f252f828e6cd33d1f | refs/heads/master | 2020-05-23T07:58:15.314310 | 2017-04-19T21:45:53 | 2017-04-19T21:45:53 | 80,475,534 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,741 | c | #include "stm32f4xx_it.h"
#define LED0 GPIO_Pin_12
#define LED1 GPIO_Pin_13
__IO uint16_t uhIC2ReadValue1 = 0;
__IO uint16_t uhIC2ReadValue2 = 0;
__IO uint16_t uhIC2ReadValue3 = 0;
__IO uint16_t uhCaptureNumber = 0;
__IO uint32_t uwCapture = 0;
__IO uint32_t uwCapture2 = 0;
__IO uint32_t uwTIM5Freq = 0;
__IO u... | [
"nate_bowen@rocketmail.com"
] | nate_bowen@rocketmail.com |
1555e1568d4cb896bc1466546bcb5683bd4a162a | f9f2e703c3e4517ac64b6d05da3049b95a2ff75c | /project2/Hchangoh_thd.c | 2af3f058ac03370fa41fb5a5295f0b313e819b4c | [] | no_license | hongdmo2/Operating-System | 5b3fe667628463e954148bd5d557a7950fb1481f | 3ef8bccff9baa3c2d5d67f93e03fd4b8bb8f3ca2 | refs/heads/main | 2023-08-14T16:31:11.714442 | 2021-09-17T04:14:56 | 2021-09-17T04:14:56 | 407,399,088 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,962 | c | //gcc Hchangoh_thd.c -o Hchangoh_thd.exe -lpthread
//./Hchangoh_thd.exe 100000 10 10
#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
void *runner_part1(void *param); // start_routine for part 1
void *grand_runner_part3(void *arg); //start_routine for part3
long sum;... | [
"noreply@github.com"
] | hongdmo2.noreply@github.com |
d775a85f22b95739c95fe41c87c34def228d4dda | 918d78dfa26061f560d2ef4db28199c7d42a9fe5 | /test/matgen.c | 611d9a1ea0d5ea7040743d18f79da3461a2dc0ad | [
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | rajshukla/Testgen-crest | eed14b51db9043f1cf6a2a4f686477a48c2dd88c | 603ddbbbc9bf2e90414aabce800257c4b960ebcf | refs/heads/master | 2021-01-11T12:09:05.937336 | 2015-07-22T11:08:43 | 2015-07-22T11:08:43 | 37,970,163 | 0 | 1 | null | 2015-07-01T08:33:10 | 2015-06-24T07:43:59 | OCaml | UTF-8 | C | false | false | 3,245 | c | #include <stdio.h>
#include <crest.h>
int main ()
{
int *a ;
int *b ;
int lda ;
int n ;
int *ipvt ;
int job ;
int roll ;
dgesl(int *a,int lda,int n,int *ipvt,int *b,int job,int roll) ;
return 0 ;
}
void dgesl(int *a,int lda,int n,int *ipvt,int *b,int job,int roll)
{
int t;
int k,kb,l,nm1;
... | [
"rmsece.18@gmail.com"
] | rmsece.18@gmail.com |
b149d3ba0d62743f0052fe143faa27f9ce2e3f5a | 2d31fe122ff76a34831ae36c0af6f34d52f2d431 | /Game_Core.c | a508c84713f9f70ca881015ae6d198a59bafdd9d | [] | no_license | nieaowei/maze-game-c | c3195a3bc1a15077adcfd1f153eebdb99005b00e | 661933af1be816f9c62b71fb104a94cd9a9e5bd0 | refs/heads/master | 2020-09-15T07:43:38.666714 | 2020-01-14T19:47:49 | 2020-01-14T19:47:49 | 223,383,714 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 7,913 | c | //
// Game_Core.c
// MAZEGAME
//
// Created by nieaowei on 2019/1/10.
// Copyright 漏 2019 nieaowei. All rights reserved.
//
#include "Game_Core.h"
//打印二元一维矩阵
void printxy(Place *place,int lenth){
//int lenth=(sizeof(place)/sizeof(place[0])+1);
int i;
for(i=0;i<lenth;i++){
printf("(%d,%d) ",place[i].x,place[i]... | [
"nieaowei@gmail.com"
] | nieaowei@gmail.com |
1e02ecfac135187083dc913982eba5a7f9cdc40f | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /prebuilts/ndk/5/platforms/android-4/arch-arm/usr/include/linux/byteorder/swab.h | b6f8a4a9183e048bac323d5890e3185cf0b2c1ea | [
"MIT"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C | false | false | 84 | h | ../../../../../../../platforms/android-3/arch-arm/usr/include/linux/byteorder/swab.h | [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
838093cf4cfc14a5be7381d5d3ebc1bbe9cf7827 | 61e39df1e415999a81e15e13abe6da400b422e86 | /perl5/perlbrew/perls/cperl-5.22.5/lib/5.22.5/cygwin-thread-multi/CORE/pp.h | 45860c9ee5c78766481736c265fd0a38052dab4e | [] | no_license | tommybutler/ctcperl4win | 2bd7f28bdc41089b646bfa6c88a1d3f1e56ff6d6 | c3d6fc7860b363a2780cf03517a55fc6f6391cff | refs/heads/master | 2020-03-20T09:51:35.399842 | 2018-06-14T12:01:37 | 2018-06-14T12:01:37 | 137,350,990 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,349 | h | /* pp.h
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*... | [
"tbutler.github@internetalias.net"
] | tbutler.github@internetalias.net |
2fc5caf0d422337d76dc002469da6722fee0e47c | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/e1a90718-baba-4da4-a841-03f8b6204841.c | 3bdd07c794a41d1216a1b6e95f7300f2afbd6bca | [] | 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 | 609 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=14;
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
//random
/* START VULNERABILITY */
int a;
int b[87];
int c[80];
a = 0... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
1ea18f913e3be4e347128a20a7fc64daa0bd297d | 50e56571c5bbd8399b98360a1a2bd7494292b0eb | /src/KohonenFeatureMapping.c | ac9c90c597cb466751225997a756a52806146f1c | [] | no_license | faturita/nnet | 50da9b1db1df1af5a4a5f0f1d9d113130b87c9bd | 66512ab64a2f207bd163fd94c60ea58aed62d9e0 | refs/heads/master | 2020-05-31T17:07:24.542948 | 2020-03-31T11:38:31 | 2020-03-31T11:38:31 | 190,400,480 | 1 | 1 | null | 2020-03-05T14:16:34 | 2019-06-05T13:30:52 | HLSL | UTF-8 | C | false | false | 3,234 | c | #include "Kohonen.c"
#include "commandline.h"
/**
* This code generates three clusters of points inside the -1,+1 region.
*
***/
void
generateTrainningSet (int patternSize)
{
neuron *item;
neuron *zero, *one, *two;
int i, j;
printf ("pattern.size=%d\n\n", patternSize);
item = (neuron *) malloc (sizeof (n... | [
"rramele@gmail.com"
] | rramele@gmail.com |
46ddeb53a605d0d78fa7909265ceec4cc997d9e4 | 17bc35a89305b7f30e367c864dc332bfdee467db | /KeepUpGameP3/Temp/StagingArea/Data/il2cppOutput/t2112282489MD.h | 4886b4ab6b0eff4cd0a50802b2ec0af4960cbc48 | [] | no_license | mariocova3/KeepUpGame | 72b298f716794c1d868c3d1e4911127dfaa2be7c | c86423fab83fa8420fe3be33546c7cc42053b49d | refs/heads/master | 2020-12-24T08:00:42.924698 | 2016-09-07T19:19:23 | 2016-09-07T19:19:23 | 58,960,925 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,004 | 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 "t3461903315MD.h"
#define m4277145089(__this, p0, method) (( void (*) (t2112282489 *, t1901453... | [
"cm10079253@011-a218-37582.lisd.local"
] | cm10079253@011-a218-37582.lisd.local |
5b9e39b1354c41a77a25468f48f562f6f0e28ea0 | 6b8d15035b1d25886fd5577c8494c2c83de7dfa7 | /MDK-ARM/RTE/_bletest/RTE_Components.h | 0ab6a995ad21f36b186e03ce393947bcdc90553b | [] | no_license | maroron15/bletest | 2501dd854fda70f5b909f5b54af5da673fab278f | c528cb4cf8a3acf1cd2611e280cdb27a76acd2fa | refs/heads/master | 2021-09-18T20:55:13.740392 | 2018-07-20T02:44:37 | 2018-07-20T02:44:37 | 139,688,442 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 326 | h |
/*
* Auto generated Run-Time-Environment Component Configuration File
* *** Do not modify ! ***
*
* Project: 'bletest'
* Target: 'bletest'
*/
#ifndef RTE_COMPONENTS_H
#define RTE_COMPONENTS_H
/*
* Define the Device Header File:
*/
#define CMSIS_device_header "stm32f4xx.h"
#endif /* RTE_COMPONENTS... | [
"40416641+maroron15@users.noreply.github.com"
] | 40416641+maroron15@users.noreply.github.com |
dd1307c10db3b6837899e0d1ead03e21f8bfa7a7 | 8b6ecffaeeb05b067c3254dbe410e1375389d20b | /app/libc/src/string/wcspbrk.c | ccf63b1353a7c75acd5b410123ab79efb5e78982 | [] | no_license | gera-gas/crosslib | dd3d4f84eaa1eb494a08b3b7c77a7bfd58e80a8a | c27e0d7f565dc02c8fc6c96095a24b81b60f9e82 | refs/heads/master | 2021-01-11T14:55:07.650119 | 2017-03-26T12:24:37 | 2017-03-26T12:24:37 | 80,248,751 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 728 | c | /**
* @file wcspbrk.c
* @brief Wide char string functions.
* @author Gerasimov A.S.
* @date 28.07.2012
*/
#include <stddef.h>
/**
* @brief
* Search chars from template string 'ptmp' into target string 'pstr'.
*
* @param pstr : [in] target string.
* @param ptmp : [in] tem... | [
"gera_box@mail.ru"
] | gera_box@mail.ru |
d4b4e207964d4a2db52b36d5a39d5e9290a5a6af | af79492c6999077f88b820185ecd4eb82c355c9a | /Q2NuZBin/RatioC/hMRatioQ2_Nu_Z.C | 2a9b5e2f8c1fd1d8a6676a3105d2de21077743ff | [] | no_license | orsosa/Eg2_ana | f8d20c0a4c3c0a2e725a24fa84518b552dde31e3 | f49ee1384f54365c0b293656386635b111c54ae0 | refs/heads/master | 2020-07-01T09:30:30.162135 | 2018-11-05T15:08:42 | 2018-11-05T15:08:42 | 74,095,684 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,358 | c | {
//=========Macro generated from canvas: c/c
//========= (Tue Jan 31 02:18:52 2017) by ROOT version5.34/19
TCanvas *c = new TCanvas("c", "c",0,0,1200,900);
c->SetHighLightColor(2);
c->Range(-0.9858439,-1.117922,0.9858439,1.117922);
TView *view = TView::CreateView(1);
view->SetRange(1,0.3,-1,4.1,0.8,1.1... | [
"oj.5070@gmail.com"
] | oj.5070@gmail.com |
e65b3ffd75cd91e8b2d64684d74436ccf34b1341 | 92bc03c00ae40939deaa426ee317c9504c6eb9d4 | /psdkla-3.2.0.3-qt5.9.6/sysroots/dra7xx-linux/usr/include/linux/rpmsg_rpc.h | 84b0c0874db99813bfc5fd94a81bdd3ac176f94b | [] | no_license | zhangls177/psdkla-3.2.0.3-qt5.9.6 | 647739ae426e3c61a6f50b3ee28c58758597aee2 | de3ed0760a98933f582f3e01a1a0a5bc15bdebe5 | refs/heads/master | 2023-07-16T06:25:30.709850 | 2020-03-23T11:51:56 | 2020-03-23T11:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,827 | h | /*
* Remote Processor Procedure Call Driver
*
* Copyright (C) 2012-2016 Texas Instruments Incorporated - http://www.ti.com/
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code... | [
"Dongpeng.Wu@desay-svautomotive.com"
] | Dongpeng.Wu@desay-svautomotive.com |
e9b2f9f7cd36087a5aa0b3d106e48cf22a8df1bb | 8fc6f65050020e0b289eec03eaad40397b7e5bd8 | /examples/mapreduce/sort_tokens_reduce_and_display.c | 68849e43ca6518bb5bb0a043f41a34c7583869f6 | [
"Apache-2.0",
"MIT"
] | permissive | iCodeIN/another-c-library | ea2f0a762ebb18bcd79eb8e2ed20605a2148221e | 2b77251e94aa30fcc3be619ad7933b6862c4c58a | refs/heads/master | 2022-11-29T15:48:48.881513 | 2020-02-06T20:30:29 | 2020-02-06T20:30:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,379 | c | #include "ac_allocator.h"
#include "ac_conv.h"
#include "ac_in.h"
#include "ac_io.h"
#include "ac_out.h"
#include "ac_pool.h"
#include <locale.h>
#include <stdio.h>
bool file_ok(const char *filename, void *arg) {
char **extensions = (char **)arg;
char **p = extensions;
while (*p) {
if (ac_io_extension(filen... | [
"contactandyc@gmail.com"
] | contactandyc@gmail.com |
fb549953e1183055eff97073a06db157f2f6ae8f | fa4017a751d52b30dae39964832bcffd9ed62944 | /吉田学園情報ビジネス専門学校_髙岩一稀/フルーツバスケット/開発環境/input.h | 8b23f038c172495b4b590c4983784f4ee80e3cb2 | [] | no_license | takaki2018/Takaiwa_Game | a02bd15a1887526d707276c6a5100e7615cb029b | eee9356e755839e1163b488bf23da3b8c3ab1470 | refs/heads/master | 2023-09-01T20:29:11.756042 | 2021-10-28T06:41:38 | 2021-10-28T06:41:38 | 305,336,787 | 0 | 1 | null | 2020-10-22T01:08:21 | 2020-10-19T09:49:55 | C++ | SHIFT_JIS | C | false | false | 1,296 | h | //-------------------------------------------------------------------
//
// インプットヘッダー (input.h)
// Author:Itsuki Takaiwa
//
//-------------------------------------------------------------------
#ifndef _INPUT_H_
#define _INPUT_H_
#include "main.h"
//---------------------------------------------------------... | [
"its.its.yt18@gmail.com"
] | its.its.yt18@gmail.com |
6724531a797227d8fedd3427c9a4836c7dcc11c0 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/f0f18ce3-4003-45f9-9045-90b9a1c55e82.c | cd4327ece656fad9e3115d754c6f6bc5dd9a20b4 | [] | 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 | 578 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=44;
int k;
int l;
j = 533;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = j%j;
l = l%j;
j = l-k*i;
//variables
//random
/* START VULNERABILITY */
int a;
int b[30];
int c[87];
a = 0;
while... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
44b0dccb2bed30b6c2334bc3a1a3ad248e0251d3 | e6f5ba96ff63f938c565232e543b95669b5b9cb7 | /Inc/usart.h | 9e733485b03ac29bf96c6c66f0442d5179267e4a | [] | no_license | xiaowenlg/Agile_Train | ea95dcee64718c4cd7c557f3c5e98d5d31e4f885 | 70f2d2f32cb7aabe1445377a25d4084d8237c1d4 | refs/heads/main | 2023-04-07T08:32:12.178698 | 2021-04-17T07:34:45 | 2021-04-17T07:34:45 | 316,890,957 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,694 | h | /**
******************************************************************************
* File Name : USART.h
* Description : This file provides code for the configuration
* of the USART instances.
******************************************************************************
... | [
"daiyu0@163.com"
] | daiyu0@163.com |
af1dc45d170c2afc6986ae37ec4b26b4ce130ad4 | 699751f70d8320173e811d46df5ee33e93485c66 | /0x14-bit_manipulation/4-clear_bit.c | 3526b26f576418c03563b57fbe4e4862e15c08e1 | [] | no_license | jenntang1/holbertonschool-low_level_programming | d32296e0c565d54447bf929dd4681af44e6173a8 | ec07919d0f384cfac32ca773cf63172296c5d940 | refs/heads/master | 2020-07-28T04:46:50.733071 | 2020-04-17T15:22:40 | 2020-04-17T15:22:40 | 209,313,514 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 751 | c | #include "holberton.h"
/**
* clear_bit - function that sets the value of a bit to 0
* @n: given unsigned long int
* @index: given index that starts from 0
* Description: 4. 100
* Return: see below
* 1. if successful, 1
* 2. if error, -1
*/
int clear_bit(unsigned long int *n, unsigned int index)
{
/* if index ... | [
"1039@holbertonschool.com"
] | 1039@holbertonschool.com |
b90688ccf6f9f271f85282fe8b0e87bf35ef88f6 | 913a0efa1b36ac741a36b3f94d872562c51ef572 | /Binaries/iOS/Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen_398.h | e09181281755f12fc40a014c2c41849fd831a7a0 | [
"MIT"
] | permissive | masanori840816/SetMaterialsFromGallery | 41d3a89488c349f54586bfb367eb021ca7356357 | ce6d67874e42706feca5e5a66f9b6785992b9dda | refs/heads/master | 2021-01-18T01:23:54.041302 | 2015-05-21T13:21:44 | 2015-05-21T13:21:44 | 34,765,403 | 5 | 2 | null | null | null | null | UTF-8 | C | false | false | 519 | h | #pragma once
#include <stdint.h>
// System.Array
struct Array_t;
// System.ValueType
#include "mscorlib_System_ValueType.h"
// System.Array/InternalEnumerator`1<System.Runtime.InteropServices.FieldOffsetAttribute>
struct InternalEnumerator_1_t3370
{
// System.Array System.Array/InternalEnumerator`1<System.Runtime.In... | [
"masanori840816@gmail.com"
] | masanori840816@gmail.com |
f08463f6e78b7c5b01e4f52577518f11d61c7361 | c425afb8bb6b182168fd4c3a46c9b334f4740e60 | /kungfu/skill/mantianhuayu/zhen.c | 6cf7f0fd1f4a7baaf05a7a107b5ac6c1cc5d66ca | [] | 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 | 3,033 | c | // This program is a part of NITAN MudLIB
// zheng.c
#include <ansi.h>
#include <combat.h>
inherit F_SSERVER;
string name() { return "掷金针"; }
int perform(object me, object target)
{
int skill, i;
int n;
int my_exp, ob_exp;
string pmsg;
string msg;
object weapon;
... | [
"i@oiuv.cn"
] | i@oiuv.cn |
3f8e3f786720f07615c93c0553e3b3b1cff378a7 | 1c70b6a931ad8357ca4d071db6db2c7ce1f5bc10 | /dns/dns_rcip.c | 6c42abe90dd0c5effa88c3af3c6b5333669936b0 | [] | no_license | agl/libdjb | f588ae7b5f5f23d03f5da59850e8b93c497c27b4 | 708aa0a9279b4c613c1be90bd86bca52aa86f9ab | refs/heads/master | 2023-07-06T13:35:14.628673 | 2008-08-20T02:31:03 | 2008-08-20T02:31:03 | 44,148 | 13 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,750 | c | #include "taia.h"
#include "openreadclose.h"
#include "byte.h"
#include "ip4.h"
#include "env.h"
#include "dns.h"
static stralloc data = {0};
static int init(char ip[64])
{
int i;
int j;
int iplen = 0;
char *x;
x = env_get("DNSCACHEIP");
if (x)
while (iplen <= 60) {
if (*x == '.')
++x;
... | [
"agl@imperialviolet.org"
] | agl@imperialviolet.org |
a339271c23f0e33acd19b5231b418190c4670b4b | 62c1a85de2bcfe49440a6ca716f475debf490d28 | /hw1.c | b5f91fded7cc2f00d4090d1a04c880636cea9e22 | [] | no_license | blowwy/OSHW | cec96c67350ef6e4170dc4459c9e1a0739c0618a | 014d8a30be395eeaa5df060932bc770670a0ac5a | refs/heads/master | 2020-03-28T19:56:08.750065 | 2018-09-16T18:16:42 | 2018-09-16T18:16:42 | 149,022,801 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,777 | c | #include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#include <string.h>
char * getLine(){
char * line = NULL;
size_t len = 0;
ssize_t nread = getline(&line, &len, stdin);
if (nread == -1){
printf("\n");
exit(0);
}
return line;
}
void checkAlloc(char ** args){
if (!args){
fpri... | [
"spacemanblowy@gmail.com"
] | spacemanblowy@gmail.com |
004700bb2cec8dd2721b9f588ff76dcb063a548c | 5e4e2b4c8e361503d44b56ab826b90b8dcd064fb | /2-selection_sort.c | 9284e74cf3756ddb4dc8939796b5b28536ff30c0 | [] | no_license | PaolaAndreaGA/sorting_algorithms | d53dda5af46c2b5cfd0198c73d854b5b1f3f5d5f | d2486e51f7c87394639d08d1772ff9022420c491 | refs/heads/main | 2023-08-30T10:29:14.660710 | 2021-10-27T02:36:05 | 2021-10-27T02:36:05 | 419,883,214 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 571 | c | #include "sort.h"
/**
* selection_sort -function that sorts an array of integers in ascending
* order using the Selection sort algorithm
*
* @array: Pointer to the beginning of an array
* @size: array's size
* Return: Nothing
*/
void selection_sort(int *array, size_t size)
{
size_t a, b, aux, min;
for (a = ... | [
"paga020964gmail.com"
] | paga020964gmail.com |
9dd1685ac120ddfd60338e0c3c2acc6d65f4bef8 | eb518b01f6ee07565ae7b3d4d8c08036ee2c07c1 | /zsym.h | 6d143c9f3638fdf2867e36c549d188a78abcdefc | [] | no_license | zsimpson/zbslib | 98928507a38f9ab8959c339f8d9082ad02bfbef0 | 431c2e8588ff0da7c91d8799c5c01a70fd6e6c01 | refs/heads/master | 2020-04-15T21:04:32.064026 | 2018-11-10T04:17:54 | 2018-11-10T04:17:54 | 10,534,718 | 3 | 2 | null | 2018-10-01T19:16:13 | 2013-06-06T19:31:00 | C++ | UTF-8 | C | false | false | 13,250 | h | #error( "Deprecated" )
// @ZBS {
// *MODULE_OWNER_NAME zsym
// }
#ifndef ZSYM_H
#define ZSYM_H
#include "zhashtable.h"
// ZSym is a universial URL-like symbol table
// Features:
// Typed data, easy to access from either string or binary commands
// Unified name space using urls
// Reference counting
// Sym... | [
"blomcode@gmail.com"
] | blomcode@gmail.com |
e0a14efb00e4ee6da408a9a6f45acfd2a2a3a925 | 647bdc1e930b5007a1eb734feecaec5f7f2bb304 | /Learning_AVR_Controller_C/usart.c | 3d0d4c731eefcdd8919679de072f092de910d176 | [] | no_license | ccsreenidhin/Learning_AVR_Controller_C | 99ede6738356124898697ac24f4ff3b93627a324 | 0ade01833e5200fc5d105e2e9df4c0db0fa5eb88 | refs/heads/master | 2022-10-09T14:15:07.158956 | 2015-02-25T05:49:00 | 2020-06-10T18:13:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 189 | c | #include<avr/io.h>
#include<util/delay.h>
void main()
{
int i;
char a[10]="pass";
UBRR0L=0x19;
UCSR0B=0X08;
for(i=0;i<10;i++)
{
UDR0=a[i];
while(UCSR0A!=0X60);
}
while(1);
} | [
"ccsreenidhin@gmail.com"
] | ccsreenidhin@gmail.com |
52a8b995d1c20acc5f523126d2befff42ae646c7 | b48754bbba1f126392ed057e3827bfa256a7fc83 | /convert_pointer.c | 00f61cf6229078fbd8fe1f0f4ef96b5662363e66 | [] | no_license | ajwkant/printf | dcb7661e8f22d1fdf3b91880c78b7d46a48f8744 | 7a8009235afef32a8706f5c0b083117629b63153 | refs/heads/master | 2023-03-02T14:10:51.936370 | 2021-02-12T15:10:10 | 2021-02-12T15:10:10 | 320,895,213 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,272 | c | /* ************************************************************************** */
/* */
/* :::::::: */
/* convert_pointer.c :+: :+: ... | [
"alexanderkant@Alexanders-MacBook-Pro.local"
] | alexanderkant@Alexanders-MacBook-Pro.local |
a35fb044a919584334f6934db8ad09d41331e64a | 2f8ba386dcc77b4fcbcb388dcb4e28297a47e618 | /prodcon.h | d7f09276a9d65eb3fa8c91fda96de29973333162 | [] | no_license | Daneker/producer-consumer-server | ecc7a7083ece69961ad48ea773ff1a3fe2d8b814 | 2d98614d7b447ffc68fec2887f2290c72a157000 | refs/heads/master | 2022-06-21T19:45:03.977408 | 2020-05-07T20:03:19 | 2020-05-07T20:03:19 | 262,144,684 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,209 | h | #ifndef PRODCON
#define PRODCON
#define QLEN 5
#define BUFSIZE 8192
#define MAX_CLIENTS 512
#define MAX_PROD 480
#define MAX_CON 480
// Some clients may wait (seconds) before introducing themseleves
#define SLOW_CLIENT 3
// Slow clients may be rejected if they do not respond in (se... | [
"daniker.ktl@gmail.com"
] | daniker.ktl@gmail.com |
68d3422d7b6fbe2c4886b9fbbd0c7d4ca94c69b0 | 9b80c1ae29e1a661c5ac465cb3ae7369b96ab66b | /xwrited-debug.h | 8efb104c26b0e5a1710614ecbe34f6f9765be239 | [
"MIT"
] | permissive | gonozal8/xwrited | 3eba544855a76c38f5cc43707b5868eb5bc2b199 | f5754cfd60f80e1bd579d6eafc928459a47301cb | refs/heads/master | 2021-10-25T19:12:24.696873 | 2019-04-06T11:17:53 | 2019-04-06T11:17:53 | 106,728,133 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,320 | h | /*
* Copyright (C) 2011 Guido Berhoerster <guido+xwrited@berhoerster.name>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the righ... | [
"chip.nalta@gmail.com"
] | chip.nalta@gmail.com |
d5b56a201927f55f9ed58b9e524691e75ddc2ea8 | 1b947dd0d61c186d90038e23ea0f4f67a1c20ee8 | /APL/C/cours3/ex3.7.c | 9fcef277d59d72da5f50a985b4c5552b43a3a73a | [] | no_license | matthieu994/dutinfo | 2d4672998d41765cc49c38acd731c2a7bfefb66a | 5359c499d34882a45bf247361b9f5dde3b06f871 | refs/heads/master | 2021-03-27T08:29:16.428577 | 2019-02-14T18:54:23 | 2019-02-14T18:54:23 | 102,878,797 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 504 | c | #include <stdio.h>
int main(int argc, char* argv[]) {
int ent;
scanf("%d",&ent);
if(ent==0){
printf("zéro\n");
} else if(ent==1) {
printf("un\n");
} else if(ent==2) {
printf("deux\n");
} else if(ent==3) {
printf("trois\n");
} else if(ent==4) {
printf("quatre\n");
} else if(ent==5) {
printf("... | [
"creeperkiller9994@gmail.com"
] | creeperkiller9994@gmail.com |
02df64fadcb4e109e409ae6183b9ed9eefa928a7 | 8f0f498b19e308010a111996838fb91d28ad20c1 | /Queue.h | e4754fb737850f603e54fb25d49f9ca6c3666006 | [] | no_license | mkamilov/TestUmdf2Driver | 7ad91075e3414510189d30085bffdaec2b04f7da | 6d0bc8155961c7f4b53fb1d38293fba9d999ae21 | refs/heads/master | 2020-04-15T21:37:10.216723 | 2019-01-10T10:31:00 | 2019-01-10T10:31:00 | 165,039,859 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 702 | h | /*++
Module Name:
queue.h
Abstract:
This file contains the queue definitions.
Environment:
User-mode Driver Framework 2
--*/
EXTERN_C_START
//
// This is the context that can be placed per queue
// and would contain per queue information.
//
typedef struct _QUEUE_CONTEXT {
ULONG PrivateDeviceD... | [
"mkamilov@gmail.com"
] | mkamilov@gmail.com |
909c25007b0bfd056ac70f2b3daf1860b073426b | 259c101b7bbeef9efcc25134e7e21f037a7a4092 | /DTSEmbed_LSC_solve_path/testcase/gcc/gcc.dg/fold-eqxor-1.c | b2fc7ca6e71b33a83cf214ab007c0a3e05033a5a | [] | no_license | 13001090108/dts-solve-path | a95c71c31d38afb2c55d85884b931f2938c1f75d | 649b92eddcc76705bbb4926b33da00009303c04a | refs/heads/master | 2020-04-16T23:17:21.340218 | 2019-01-24T09:34:50 | 2019-01-24T09:37:09 | 166,005,614 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 679 | c | /* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-original" } */
int test1(int a, int b)
{
return (a ^ b) == 0;
}
int test2(int c, int d)
{
return (c ^ d) != 0;
}
unsigned int test3(unsigned int e, unsigned int f)
{
return (e ^ f) == 0;
}
unsigned int test4(unsigned int g, unsigned in... | [
"lishaochun@bupt.edu.cn"
] | lishaochun@bupt.edu.cn |
0039f24bf60c396c151f3b823089ffdb09232ae6 | 69ff62a9333fa225ea04deb178c79945c1b40aca | /FinalResults/figures/srbase_njets.C | 251825213e79da3f18d882ae633f0ac05ce8dcc6 | [] | no_license | cmstas/StopAnalysis | e18d5947b4d2e1a532bfee89d8557266bf686914 | 2bb5135321eb6a043b623be3201a565cc8380d77 | refs/heads/master | 2021-11-30T00:51:46.496103 | 2020-04-08T10:38:23 | 2020-04-08T10:38:23 | 34,364,906 | 2 | 6 | null | 2017-09-05T21:35:47 | 2015-04-22T02:51:04 | C++ | UTF-8 | C | false | false | 24,153 | c | void srbase_njets()
{
//=========Macro generated from canvas: c1_n6/c1_n6
//========= (Mon Jul 8 11:11:42 2019) by ROOT version6.06/09
TCanvas *c1_n6 = new TCanvas("c1_n6", "c1_n6",0,0,700,600);
gStyle->SetOptStat(0);
c1_n6->SetHighLightColor(2);
c1_n6->Range(0.7692308,0.3375949,11.02564,5.441575);
c1_... | [
"sicheng@physics.ucsb.edu"
] | sicheng@physics.ucsb.edu |
fdace20b156bbf6fa40e03fab80a85e1617cd539 | 1c6a7ae5dca2a38c68fde97a676478c6573bca02 | /linux-3.0.1/drivers/staging/rtl8192e/r8190_rtl8256.c | 286462cc819caf8187bcdecc2e7a3bf00436e92c | [
"Apache-2.0",
"Linux-syscall-note",
"GPL-2.0-only",
"GPL-1.0-or-later"
] | permissive | tonghua209/samsun6410_linux_3_0_0_1_for_aws | fab70b79dc3e506dc03ac1149e2356137869c6ca | 31aa0dc27c4aab51a92309a74fd84ca65e8c6a58 | refs/heads/master | 2020-04-02T04:24:32.928744 | 2019-01-20T13:51:34 | 2019-01-20T13:51:34 | 154,015,176 | 0 | 0 | Apache-2.0 | 2018-10-24T14:51:04 | 2018-10-21T14:07:31 | C | UTF-8 | C | false | false | 18,469 | c | /*
This is part of the rtl8192 driver
released under the GPL (See file COPYING for details).
This files contains programming code for the rtl8256
radio frontend.
*Many* thanks to Realtek Corp. for their great support!
*/
#include "r8192E.h"
#include "r8192E_hw.h"
#include "r819xE_phyreg.h"
#include "r819x... | [
"kyh1022@163.com"
] | kyh1022@163.com |
c81d8ebee87646cd0640fdfed7a844353b118f26 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/cc62fa6e-d3e8-4582-8a84-ec9439db6229.c | d2f39567a4f553974da1c4b694e4895137272c44 | [] | 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 | 241 | c | #include <stdio.h>
int main() {
int i=4;
int j=52;
int k;
int l;
k = 53;
l = 64;
k = i%j;
l = i/j;
l = l/j;
l = l/j;
l = i-j;
l = k-j*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
e01e14e548c0243f4475d8d9cf0451d2b4b883d4 | 04fb0698c7cab60577b057961e587aff72b55684 | /DAA LAB/nqueen.c | 1c281d8a73ed0aad2ee8a8c97cc9560a54079475 | [] | no_license | vybhavjain/4rthSemIse | 57686b4fb6e8dfd8b28f1911abcc5b8df7cf287e | 53674a96a93c4312668c9b2735f4b7dae1ace769 | refs/heads/master | 2021-03-30T22:57:53.888329 | 2019-04-24T16:48:29 | 2019-04-24T16:48:29 | 125,032,488 | 2 | 3 | null | 2019-05-16T16:52:00 | 2018-03-13T10:17:10 | Assembly | UTF-8 | C | false | false | 1,235 | c | #include <stdio.h>
int N;
int board[20][20];
int is_attack(int i,int j)
{
int k,l;
for(k=0;k<N;k++)
{
if((board[i][k] == 1) || (board[k][j] == 1))
return 1;
}
for(k=0;k<N;k++)
{
for(l=0;l<N;l++)
{
if(((k+l) == (i+j)) || ((k... | [
"noreply@github.com"
] | vybhavjain.noreply@github.com |
c1e97e0517905ff6643eb5b81640c95bee0750a2 | 664b5e8e92b44eecc14e60390152bdaee864b70a | /test/src/test_core/core_test_dwpoint.h | 9eed1c7387d55ab5cefa4ef4c043b6abe44603bc | [] | no_license | JerryZhou/Raccoon | a44f178ec47e3eb8181d05e6ca870d02c75477e8 | f8da3ddf82f0e5d2918d890eafbff77a61025d1e | refs/heads/master | 2016-09-05T20:24:23.866920 | 2013-10-25T08:14:53 | 2013-10-25T08:14:53 | 8,606,064 | 8 | 3 | null | null | null | null | UTF-8 | C | false | false | 2,938 | h |
/************************************************************************
DwPoint
************************************************************************/
TEST(DwPoint, DwPoint)
{
DwPoint p0;
EXPECT_TRUE(p0.isNull());
DwPoint p1(1, 1);
EXPECT_FALSE(p1.isNull());
}
TEST(DwPoint, values)
{
DwPoint p0(1, 2);
E... | [
"jerryzhou@outlook.com"
] | jerryzhou@outlook.com |
f04733267bc3e8487b0fcfa3f0babcf2c3aa7ec6 | efa10a28add29a5ace474dee36589b26cfd53716 | /AfdxSnmp/snmp/snmp_debug.c | f8db8cdd7bdba1574214ce54b44ac67f58ac575a | [] | no_license | Mosaic0412/AfdxSnmp | eb685c7bd93c2b572145ab4d1f19b8202dba1dc7 | 9528b2944668745e9d330abbd5df3fbfbbafb154 | refs/heads/master | 2023-01-22T01:05:56.307555 | 2020-11-20T09:47:24 | 2020-11-20T09:47:24 | 314,176,102 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,767 | c | #include <net-snmp-config.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <stdarg.h>
#include <types.h>
#include <output_api.h>
#include <library/snmp_debug.h> /* For this file's "internal" definitions */
#include <config_api.h>
#include <utilit... | [
"cqh0412@outlook.com"
] | cqh0412@outlook.com |
13b0e0b3cdb8e75b8f7f37a2b933368f1dd8dae2 | 7f5f597a791b4c9533bb26fce6784a7ef398036b | /arrayops1.c | 7008f6626bcb9320cf93b75284c77009c0118c52 | [] | no_license | adeceptikon/c_progs | c32f6330ccb1b412ef5712563471e80f20c872df | 0d89d4dbac68db4573ceba2e63511ea6edd170fc | refs/heads/master | 2023-08-31T09:22:07.957285 | 2021-10-19T15:51:21 | 2021-10-19T15:51:21 | 418,991,624 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 210 | c | #include<stdio.h>
#include ".\lib\arrayOP.h"
#define MAX 10
int main(){
int a[MAX] = {0};
int i;
for(i=0; i< MAX; i++){
a[i]= i*i;
}
printIntArray(a, sizeof(a)/sizeof (a[i]) );
}
| [
"adeceptikon@gmail.com"
] | adeceptikon@gmail.com |
562bd2f0507d1c49e7c075b3fc086d23daaaf6d5 | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/arch/mips/power/cpu.c | a15e29dfc7b38f33dfe0abbb65efb46e1c775d7a | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 833 | c | // SPDX-License-Identifier: GPL-2.0-only
/*
* Suspend support specific for mips.
*
* Copyright (C) 2009 Lemote Inc.
* Author: Hu Hongbing <huhb@lemote.com>
* Wu Zhangjin <wuzhangjin@gmail.com>
*/
#include <asm/sections.h>
#include <asm/fpu.h>
#include <asm/dsp.h>
static u32 saved_status;
struct pt_regs saved_... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
9c20ecc1d37d0efb93c1c6a5a2debe4f06a0ee37 | 239a6aa9d324b491a4f276a03053f8fe4e341624 | /Lab08/Sources/SEVENSEGMENTS/sevenSegments_hal.h | d16f4e1a24a5a7f61139cdc40ff9073cea752c9c | [] | no_license | CarlosAraki/ES670ra160141-ra155416 | 3256bf031cc31155ade28e4bf1d94bb1d51925da | df5bd904e668405846643e949bf27fe9e7fc874f | refs/heads/master | 2021-03-30T21:36:07.015458 | 2018-06-28T22:50:37 | 2018-06-28T22:50:37 | 124,933,090 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,753 | h | /* ***************************************************************** */
/* File name: sevenSegments_hal.h */
/* File description: funcoes relacionadas ao 7 segmentos */
/* Author name: Carlos Vinicius Araki Oliveira */
/* Gabriel Bon... | [
"carlosarak@gmail.com"
] | carlosarak@gmail.com |
e70339131e404fda330be6c1fb2bd4753f5f94aa | c8e51ddbc6f2b3d71666ec9c26bf37e090c6723f | /Test/test.c | f43db5537c8eb6d686f36bcb183dd9ec32d8d633 | [] | no_license | SilverLight96/C_TeamProject | d2fbda6b1ead0dc30120a1e742d0478e75bda9da | dccf6ec0fab3c5ddb60152cbd8bb9ed5cc14d25a | refs/heads/main | 2023-04-24T13:49:45.258547 | 2021-05-12T15:09:59 | 2021-05-12T15:09:59 | 366,569,580 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 64 | c | #include <stdio.h>
int main(void){
printf("test.");
return 0;
} | [
"tim960321@naver.com"
] | tim960321@naver.com |
549bcb2c709d1e9e55bdb4ad373f2e234f7b070c | fd2f8495482391595bffa2af28ed558c9e944e08 | /CODE_TAndSInsulationLayer/CCETAndSInsulationLayerFrm/ImportedInterfaces/win_b64/CATBSTR.h | b146e33f2ef2c9a85a42a2401316e3a16755d884 | [] | no_license | linlily0925/GYM_CODE | e23473b82010f5c1be5b5ac24897a5f9f548f01d | d4f41b901bc9dfd471cda0bf5fae8bef15cf450f | refs/heads/master | 2020-04-27T16:40:00.629931 | 2019-03-08T07:59:23 | 2019-03-08T07:59:23 | 174,489,707 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 72 | h | #include "C:\DassaultSystemes\B22\.\System\PublicInterfaces\CATBSTR.h"
| [
"287226258@qq.com"
] | 287226258@qq.com |
72e4988cb8e50be18f841754e6f2d24a259a31a0 | 57c7627ce6f9b2b24204de54e79d5d42ca2dde67 | /Final Project/xzhou016_FinalProject/xzhou016_FinalProject/LevelProgression.h | 5218c1fdf627c22337768f109a654e769e7ecf39 | [] | no_license | xzhou016/CS120B | 291b57e5895e833c4a21f7e7d2af81253bd9cb7e | 3cff7ea6252e904accb58e8adc69e38bd2f30b46 | refs/heads/master | 2021-03-27T11:42:07.528412 | 2016-08-25T20:26:03 | 2016-08-25T20:26:03 | 66,102,096 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 792 | h | /*
* LevelProgression.h
*
* Created: 8/24/2016 11:16:09 PM
* Author: jakex
*/
#ifndef LEVELPROGRESSION_H_
#define LEVELPROGRESSION_H_
enum LevelProgressionSM {LP_start, LP_difficultySet} LevelProgressionSM;
int LevelProgression_Tick(int state)
{
switch(state)//state transition
{
case LP_start:
if (be... | [
"xzhou016@ucr.edu"
] | xzhou016@ucr.edu |
2735687983747afb3dd7ea7d37ab2b3dfbf537a1 | 335c0dbc994f32a21295a556a098b2c3bc1fcac9 | /GNL_OLD/libft/ft_isprint.c | 541a435a3bfa58b35404e7cf5407a576f39e25d4 | [] | no_license | KrissAnime/Get_next_line | 53d6eabe25c242e466a6a2bd282ca61ea97f5e06 | 6abf5768b6ba9c4d5418a969e2700a673b2b1dff | refs/heads/master | 2020-03-28T20:36:45.765097 | 2018-10-08T07:55:17 | 2018-10-08T07:55:17 | 149,087,192 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 992 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: ... | [
"cbester@e4r3p3.wethinkcode.co.za"
] | cbester@e4r3p3.wethinkcode.co.za |
72120bb6fc385aed606cc0d412f0f2b056759d0c | 7fd5311d8039fbf9b4d0d270230147eacdc33dc0 | /C51/Examples/Infineon XC822/BOOST_LEDTS/CC6.C | cfdb6489d5aaf7ebd180a437157935943432ec0a | [
"MIT",
"HPND",
"Apache-2.0"
] | permissive | AllRoundeer/Keil | 6da43b81ed358d74e5157d3bcbd0a8ee0883db9b | 43cad8de348ff206c02395fca86bdb08c9725142 | refs/heads/main | 2023-05-10T08:22:21.768865 | 2021-06-12T15:17:48 | 2021-06-12T15:17:48 | 376,322,290 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,089 | c | //****************************************************************************
// @Module Capture / Compare Unit 6 (CCU6)
// @Filename CC6.C
// @Project Boost1.dav
//----------------------------------------------------------------------------
// @Controller Infineon XC822M-1F
//
// @Compiler K... | [
"thehackerz66@gmail.com"
] | thehackerz66@gmail.com |
4e3d779863796ba55fc8ae8ca5b15952b87e5642 | 5ecf203a8d8ede06cae59781fa0ba7617c6246b6 | /kernel/include/battery.h | a7d6ed2eb3ca56e3adae2ac6001403dd62851eee | [
"MIT"
] | permissive | moneytech/lux | f931bf31e08d1d0d4f7e7a9fac87f5aa6f477c17 | 1609b6432d4ce6c4704946455c6cce8f0760fc97 | refs/heads/master | 2020-05-30T10:48:08.944987 | 2018-03-21T01:28:17 | 2018-03-21T01:28:17 | 189,682,111 | 1 | 0 | null | 2019-06-01T02:40:16 | 2019-06-01T02:40:16 | null | UTF-8 | C | false | false | 1,159 | h |
/*
* lux OS kernel
* copyright (c) 2018 by Omar Mohammad
*/
#pragma once
#include <types.h>
#define MAX_BATTERIES 32
// _BIF Package
#define BIF_POWER_UNIT 0
#define BIF_DESIGN_CAPACITY 1
#define BIF_FULL_CAPACITY 2
#define BIF_CHARGEABLE 3
#define BIF_VOLTAGE 4
#define BIF_WARNING 5
#define BIF_LOW... | [
"omarx024@gmail.com"
] | omarx024@gmail.com |
11c111774841c741bc817dd00e63e5c9ee387fd4 | 490b59b865c6925dd3fc394a4a1966f09579ec27 | /iot-health.X/mcc_generated_files/algorithm.c | b48c087934bb79317b1792c29bffd8605d27202b | [] | no_license | taifur20/Patient-Monitoring-System--AVR-IoT-WA-Project-- | baa04d734df1fe3510f977b504b1f4832737e451 | c39b92b32d60458cf4605f562aca02fbd8aa45f5 | refs/heads/main | 2023-02-24T03:38:27.483034 | 2021-01-30T12:27:33 | 2021-01-30T12:27:33 | 334,407,517 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,034 | c | /*
* File: algorithm.c
* Author: MKA
*
* Created on December 30, 2020, 6:17 AM
*/
/** \file algorithm.cpp ******************************************************
*
* Project: MAXREFDES117#
* Filename: algorithm.cpp
* Description: This module calculates the heart rate/SpO2 level
*
*
* ---------------------------... | [
"khairul.uapstu@gmail.com"
] | khairul.uapstu@gmail.com |
ea4d629f96baa4b265635d534458a085cb22862d | 4e1859c6957d217c6f24c4b60255948df58942aa | /resconvert.c | 6d2b6ec48c912a5a6a6b119174adfaeda313657c | [] | no_license | 15831944/resconvert | ed33298c95a55cbbcf8a3be3fb549922111403af | a727c9b4ce93605b302f5641a82e8baace1c127f | refs/heads/master | 2023-03-18T03:37:02.531626 | 2019-10-22T06:01:36 | 2019-10-22T06:01:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,276 | c | #include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
int _convert( const char *filename )
{
int i = 0;
FILE *src_fp = NULL;
FILE *dst_fp = NULL;
char basename[256] = {0};
char dstname[256] = {0};
char marconame_upper[256] = {0};
char marconame_lower[256] = {0};
char *b... | [
"noreply@github.com"
] | 15831944.noreply@github.com |
bf809b1ee53fbfb4b4007b89062fde9a522953ba | 0f6e91db69aafaf0785e6626e64657ece6a69343 | /iOSDevice/Classes/Native/System_System_Text_RegularExpressions_Syntax_Group.h | b43447bf7b137c6c4df151ff5ec328bb2efd35bb | [] | no_license | fullcorder/UnityDemo-Project-For-Jenkins | 35b373bed87975b3a72de29b3b65dbe187cbcd75 | f1a2741b1feecc5735b5db9503bcc23bcf104641 | refs/heads/master | 2021-01-10T11:09:28.351327 | 2015-11-01T06:00:08 | 2015-11-01T06:00:08 | 45,330,008 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 277 | h | #pragma once
#include <stdint.h>
// System.Text.RegularExpressions.Syntax.CompositeExpression
#include "System_System_Text_RegularExpressions_Syntax_CompositeExpres.h"
// System.Text.RegularExpressions.Syntax.Group
struct Group_t905 : public CompositeExpression_t904
{
};
| [
"kobaring@icloud.com"
] | kobaring@icloud.com |
c19fa0cd2987a3a87bb9e4cb5182f13252495dbe | 715c03062cd15cc7d28e3bfe92a972e5d890f40a | /1114.c | 7e81b8bd6669c405c0634b11f3291f7fcb2f28c3 | [] | no_license | ashwinipatankar/urionlinejudgesolutions | f6f3e5488b8b3996f3f87adb1dce568dae208ce2 | 9b0f1eb194f8c2cb7cdd76a37bbbe383f86f766c | refs/heads/master | 2018-09-24T16:14:59.806786 | 2018-06-10T03:36:01 | 2018-06-10T03:36:01 | 118,068,099 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 296 | c | /*
* 1114.c
*
* Created on: Dec 27, 2017
* Author: ashwini.p
*/
#include <stdio.h>
int main(int argc, char **argv) {
int x, y;
do {
scanf("%d", &x);
if (x == 2002) {
printf("Acesso Permitido\n");
}
else
printf("Senha Invalida\n");
}while (x!= 2002);
}
| [
"ashwinispatankar@gmail.com"
] | ashwinispatankar@gmail.com |
0a783114d299c4435b49750a0154ed0b7dfe1d11 | dc40828266b49af13863528eba79a2f520cccf39 | /source/extF80M_mul.c | cb03d51ac9b4cebff94a87d07ffcc746c04f08b8 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | hercules-390/SoftFloat-3a | d2e92d5ee50072168819ebd4766c7a0b82dc8b65 | 1f24457298fb489995db77c9c054b5548d60fcdf | refs/heads/master | 2021-01-17T18:51:37.436852 | 2019-02-19T21:49:36 | 2019-02-19T21:49:36 | 60,398,973 | 11 | 6 | null | 2018-09-02T12:26:51 | 2016-06-04T07:37:27 | C | UTF-8 | C | false | false | 5,211 | c |
/*============================================================================
This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
Package, Release 3a, by John R. Hauser.
Copyright 2011, 2012, 2013, 2014 The Regents of the University of California.
All rights reserved.
Redistribution and use ... | [
"enricosorichetti@mac.com"
] | enricosorichetti@mac.com |
4ba16e975a3ae236d934a8b8b5fb12e32cbd757e | 86d0fff960c3a5439bef69dcece6400a4a805620 | /codigo/tp1_rope.c | c299f92faf032a71c0dc0e397c2a60768c4f7e1f | [] | no_license | AlexVilla92/tp1_taller_2017 | 61394c4f922b4df084cd9a57d1e3331aec9312f4 | ffbcabeece2ebc0a1da307b2d96e90e49e2b3eec | refs/heads/master | 2021-07-18T03:12:57.983649 | 2017-10-27T04:41:20 | 2017-10-27T04:41:20 | 108,499,599 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,308 | c | #include "tp1_rope.h"
#include "tp1_lista.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//Firma de metodos privados
static Nodo* Rope_splitNodoHoja(Nodo *unaRaiz, int pos);
static void Rope_recursivaPalabra(Nodo *unaRaiz, char* palabra);
static void Rope_splitRecursivo(Nodo *unaRaiz, Lista *unaLista... | [
"ale.92xx@yahoo.com"
] | ale.92xx@yahoo.com |
c6a457997e371944730831369db68db4434ece80 | fb4fdd34f3cf55f1339946a4df6aba7e3aef3df0 | /Software/lib/components/brake_driver.c | c64182d00679db50fed2b2f8968e30454c0ea722 | [] | no_license | mataamad/Mariokart2 | 6b01bcc3cbb6657140a2acdb924d45235942daf6 | 7498b83858a19eafefbb9f1d02b83f01ce3b1f13 | refs/heads/master | 2020-12-25T18:20:44.058421 | 2013-02-08T21:22:37 | 2013-02-08T21:22:37 | 5,424,969 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,831 | c | #include "brake_driver.h"
#include <actuator_driver.h>
#include <potentiometer.h>
#include <utility/pid.h>
#define BRAKE_PROPORTIONAL_GAIN (1.0)
#define MINIMUM_DRIVE_PERCENT (25)
#define MAX_DRIVE_PERCENT (75)
//initially drive to the 'full on' brake position
static int desired_brake_position = BRAKE_FULLY_ON_POSI... | [
"mwwigley@MattLinux.(none)"
] | mwwigley@MattLinux.(none) |
9cd3c8278660a9dab345e0da23940a15f88bfdfb | 923d4d0e120dd4af5d06904bfb863fc8c4cdab52 | /mbedtls_demo/demo_config/mbedtls_config_hmac.h | 357c4f84165871be540f82c88129d1ad986b701c | [] | no_license | x-itg/mbedtls-study-demo | 8a517d8381ecb80cdaa0ef88e8172e9b09de3211 | 48a3b284472069e48260b49d97f69ab2bf15e27b | refs/heads/master | 2023-08-17T18:01:57.428490 | 2020-10-04T05:23:25 | 2020-10-04T05:23:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 676 | h | /**
* @brief Minimal configuration for HMAC Function
* @author mculover666
* @date 2020/09/26
*/
#ifndef _MBEDTLS_CONFIG_SHA_X_H_
#define _MBEDTLS_CONFIG_SHA_X_H_
/* System support */
#define MBEDTLS_HAVE_ASM
//#define MBEDTLS_HAVE_TIME
/* mbed feature support */
#define MBEDTLS_NO_PLATFORM_ENTROPY
/* mbed... | [
"2412828003@qq.com"
] | 2412828003@qq.com |
7460491f210bdc881ae2688829b288e9e4fbf0cf | ed831ab07c320f3c70b9f91a2c1b4dc33c5ad0a0 | /c04/ex01/ft_putstr.c | b095c7437d7863e4ffa53b614fc25dff2cb73404 | [] | no_license | Megumi1013/piscine_exercises | 9b96f857c32c312917bce07c8945c3ec90908657 | 7238af262bbffa5babda6e590c20f7a19aebfd06 | refs/heads/master | 2023-04-23T10:39:34.663533 | 2021-05-13T12:20:08 | 2021-05-13T12:20:08 | 294,574,761 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 201 | c | #include<unistd.h>
void ft_putstr(char *str){
int i;
i = 0;
while (str[i] != '\0')
{
write(1, &str[i] ,1);
i++;
}
}
int main(void)
{
char *str;
str = "Hello";
ft_putstr(str);
} | [
"megumi.miyatani@gmail.com"
] | megumi.miyatani@gmail.com |
4dee2b9e4e9e76207a5c97be9ae536b917bbb9c3 | 788da62dce9041878fd098e5347408fbf0679ace | /qcom/proprietary/data/dss/src/dsc_qmi_wds.c | d20fa688a42b0d1766d0065e644e5f16dcf36fb8 | [] | no_license | Snapdragon-Computer-Vision-Engine-Team/msm8974-sources2 | e7daa0bf3096e09286fd6e9f3a4e078774e49565 | 8e8a1d7b8b840a7c93e39634d61614665974acb1 | refs/heads/master | 2021-12-15T03:28:26.619350 | 2017-07-25T06:50:38 | 2017-07-25T06:50:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 83,606 | c | /******************************************************************************
D S C _ Q M I _ W D S . C
******************************************************************************/
/******************************************************************************
@file dsc_qmi_wds.c
@... | [
"xinhe.jiang@itel-mobile.com"
] | xinhe.jiang@itel-mobile.com |
af5c56c7a4a411781908843bb222be959cc91a7b | fe77ec750f7c57bd4f4fa53df8c6c5016a545627 | /C_L_P/06_char_array.c | 6571530a6bd6476755abbb773de8a8c0238d06dd | [] | no_license | phanisai22/C | 857876b03f3ec61b47b609387261dd262b707e34 | 1406c18280ee3c448c282a4ecf6b1549453bcde7 | refs/heads/master | 2022-12-03T05:12:00.827800 | 2020-08-31T10:09:17 | 2020-08-31T10:09:17 | 278,972,787 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 856 | c | #include <stdio.h>
#define MAXLINE 1000
int getline(char line[], int maxline);
void copy(char to[], char from[]);
/* print longest input line */
int main()
{
int len;
int max;
char line[MAXLINE];
char longest[MAXLINE];
while ((len = getline(line, MAXLINE)) > 0)
if (len > max)
{
... | [
"uppu.phanisai@gmail.com"
] | uppu.phanisai@gmail.com |
ba350ff655155358e7956baa4494a67f49e8ee2e | c5b66e20212f6a2bf9c50ace05bda67e45bce130 | /11934 - Magic Formula.c | e7f613f91b974543ced259cbf8d778826280d835 | [] | no_license | Zeronfinity/UVa-Solutions | 23989b3a21264ea6e93a4a46d57e96d488b5ae47 | 53e2eeb4cbaa1fac6e4bd976829f1c5174fa3459 | refs/heads/master | 2021-08-23T08:16:13.963925 | 2017-12-04T08:27:22 | 2017-12-04T08:27:22 | 113,015,323 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 381 | c | #include <stdio.h>
int main ()
{
long long a, b, c, d, l, n, r, i;
while (1)
{
r = 0;
scanf("%lld %lld %lld %lld %lld", &a, &b, &c, &d, &l);
if (a == 0 && b==0 && c==0 && d==0 && l==0)
break;
for (i=0; i<=l; i++)
if ((a*i*i+b*i+c)%d==0)
... | [
"tahsin86m@gmail.com"
] | tahsin86m@gmail.com |
2bdfee747fef14c491b3754524832f7a74c8266d | 33be137cc86b78bce45820fc81383b0784b69c36 | /sources/wyrm/g_rws.c | 9a4609e6ecd0e2ca9373b1e6e74bc45e4154e858 | [] | no_license | Paril/quake2-source-archive | 010d9758448ae61442d7d12a7198d4c4874665d4 | 6eb7a72cd2187dc0caef151f9af5e6f4b090dd8a | refs/heads/main | 2023-07-12T16:50:16.098868 | 2021-08-22T12:30:00 | 2021-08-22T12:30:00 | 341,576,903 | 10 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,697 | c | //-----------------------------------------------------------------------
// RWS.C
//-----------------------------------------------------------------------
#include "g_local.h"
#include "m_player.h"
//***********************************************************************
//
//
// Makes additions to the edict_s st... | [
"me@paril.ca"
] | me@paril.ca |
5447127586b674123dd973ff2536f23b903c6bf3 | f363fdb9445d8dec088fb02c8faae8e23570a33e | /d/wudang/obj/table.c | de4a9e2f3cb48836e72a2ff43357e6f40b1e6d30 | [] | no_license | MudRen/zjmud | 0999a492ac0717911c047936ee2c696b3b5cb20a | c56a166380d74858d7b4f0ba2817478ccea6b83d | refs/heads/main | 2023-07-24T21:02:00.246591 | 2021-09-07T12:50:20 | 2021-09-07T12:50:20 | 403,973,627 | 1 | 1 | null | null | null | null | GB18030 | C | false | false | 400 | c | //table.c 破桌子
inherit ITEM;
void create()
{
set_name("破桌子", ({ "table" , "zhuo zi"}) );
set_weight(5000);
set_max_encumbrance(8000000);
set("no_get", 1);
set("no_shown", 1);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "张");
set("long", "这张破桌子放在这里,说不出的诡异。\n");
set("value", 1);
}
}
in... | [
"i@oiuv.cn"
] | i@oiuv.cn |
4d90f998b0f1ec52bcf39f2da13d7ae92f7ecad5 | c9d747aaa2d058d28d517bf7566aee850407df1c | /osip/platform/vsnet/dict/dict.c | 9e1f3b0934a03e9bf107d2c75f10d3f5f75d2e47 | [] | no_license | tsingeye/GB28181Platform | 181cbbb34d7105e5575e16beb505623a76635a31 | 67eb86dadb10ba512f260698bc52d92590a2412b | refs/heads/master | 2022-04-28T14:32:00.928839 | 2020-04-29T03:57:30 | 2020-04-29T03:57:30 | 262,460,925 | 11 | 3 | null | 2020-05-09T01:08:34 | 2020-05-09T01:08:34 | null | UTF-8 | C | false | false | 3,920 | c | /*
* libdict -- generic dictionary implementation.
*
* Copyright (c) 2001-2011, Farooq Mela
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain ... | [
"crazybber@outlook.com"
] | crazybber@outlook.com |
b1427e7655cf4106c8b883b784964bdba112ec6c | f1c7bae4b9d45d3ed078ca0dde1af4d8da7a16f4 | /Lab3/wrapper.c | 018ff5d7f926c284742fd2bcb11ba46b87c5a278 | [] | no_license | Mojitas/DVA315 | 15ef6eee1bd6d861b41d06bf42366229398fc3e5 | 36d0cd5e8b0fde0a820c2a4a68930578e8ca0c4a | refs/heads/main | 2023-04-01T11:22:09.046855 | 2021-04-11T14:32:55 | 2021-04-11T14:32:55 | 356,879,852 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,897 | c | #include "wrapper.h"
#define MAX_SIZE 1024
//Big note! If you think the arguments makes no sense, you are allowed to change them, as long as the basic functionality is kept
//In case you run in to blocking issues with reading from the queue, the option O_NONBLOCK is a hot tip
int MQcreate (mqd_t* mq, char* name)
{
... | [
"47667093+Mojitas@users.noreply.github.com"
] | 47667093+Mojitas@users.noreply.github.com |
ded1ac399fb0b1123818a6d69a665cf3aabb94ea | 233b6479738a13c8f402dbda8121fdfd622e81e6 | /src/string/dotcmp.c | 6ef6f0c4fc90a194c471d2ca0503a567370a1a23 | [
"LicenseRef-scancode-other-permissive"
] | permissive | ThomasDickey/td_lib-snapshots | 4772baffe1061d95d7cef7a5aecd4ba98f4e83ca | 31e315f4bace7961f6b54690f5213052734b9cc4 | refs/heads/master | 2023-01-27T12:31:17.311445 | 2023-01-22T18:39:08 | 2023-01-23T00:43:18 | 62,589,644 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,644 | c | /*
* Title: dotcmp.c (compare dot-separated strings)
* Author: T.E.Dickey
* Created: 19 May 1988
* Modified:
* 24 May 2010, change params to const.
* 07 Mar 2004, remove K&R support, indent'd.
* 29 Oct 1993, ifdef-ident
* 21 Sep 1993, gcc-warnings
* 03 Oct 1991, converted to ANSI
* 15 May 1991, apollo s... | [
"dickey@invisible-island.net"
] | dickey@invisible-island.net |
0e121cb94824f0fa59a76f00be3c8359925fab7b | 227762382eabdf753466e218c9b0361d3a1c3b41 | /source/kernel/include/device/console/serial.h | 75f84f3909191630d97c99b3ebe40a72a1eda2fc | [
"ISC"
] | permissive | aejsmith/kiwi | c9b6835b933c87cd6a099d053cce0db12432f93c | c4a2af6680fcaeb866b52de674fd05fa45740484 | refs/heads/main | 2023-08-16T18:29:25.257616 | 2023-08-09T19:09:42 | 2023-08-09T19:09:42 | 13,698,734 | 17 | 3 | null | null | null | null | UTF-8 | C | false | false | 1,926 | h | /*
* Copyright (C) 2009-2023 Alex Smith
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DIS... | [
"alex@alex-smith.me.uk"
] | alex@alex-smith.me.uk |
2a5382de9ead11366f480287faf94db40d86305c | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/d18e102f-93ec-486d-b26a-3efe88704e93.c | 0107a3ad9360b497731324a90a158e447dc206dc | [] | 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 | 265 | c | #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 = l/j;
l = j-j;
l = i%j;
l = j-j;
k = i-j*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
9bf02fb63ec19ee965080b49b9bba856a9c496dd | 70c2645aab2d095e71ad7b891361566cfe0cb6da | /VulnDB/FileSamples/openssl/CVE-2015-0288/CVE-2015-0288_NVD-CWE-Other_241cff623e2b0f7c435a3a80ae783c29d994f061_x509_req.c_1.1_OLD.c | c1a2608819484a2e1d06aceab580c16c3957d925 | [] | no_license | Raymiii/SCVDT | ee43c39720780e52d3de252c211fa5a7b4bd6dc2 | 0a30f2e59f45168407cb520e16479d53d7a8845b | refs/heads/main | 2023-05-30T20:00:52.723562 | 2021-06-21T05:24:20 | 2021-06-21T05:24:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,002 | c | /* crypto/x509/x509_req.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and no... | [
"jiangchang@jiangchangdeMacBook-Pro.local"
] | jiangchang@jiangchangdeMacBook-Pro.local |
97e629ae8cf060c82e3d45a1d02241dcb736e577 | 705b8fd27b603f0c2ecdce39dc301c2c554e028c | /DREAM_CAR_PROJ/SYSTEM/sys/sys.h | f19b5733e5dffca222927e69c51153ffc3ec4dbc | [] | no_license | lyy31415/double_laser_mapping_location | 28bbdeb11ebbc0db3efc2d455891717d94efc79e | 2ad5f1075a45484427570605d01bfca4e3e5791b | refs/heads/master | 2022-09-22T13:13:01.595551 | 2020-06-02T11:11:47 | 2020-06-02T11:11:47 | 256,979,574 | 0 | 0 | null | 2020-04-19T11:14:24 | 2020-04-19T11:14:23 | null | GB18030 | C | false | false | 6,263 | h | #ifndef __SYS_H
#define __SYS_H
#include "stm32f4xx.h"
#include "arm_math.h"
#include "version_1.0.h"
//0,不支持ucos
//1,支持ucos
#define SYSTEM_SUPPORT_OS 0 //定义系统文件夹是否支持UCOS
//位带操作,实现51类似的GPIO控制功能
//具体实现思想,参考<<CM3权威指南>>第五章(87页~92页).M4同M3类似,只是寄存器地址变了.
//IO口操作宏定义
#define BITBAN... | [
"1031016671@qq.com"
] | 1031016671@qq.com |
0c380282f9fcee8901b29c7ce3d2262dce569b6c | 594f17b29f39dca9c79475605c4c908a7678505a | /jni/freeciv/client/gui-android/mapctrl.c | ef246d5ed828b574ff7e48eefdf8eca5514629a2 | [] | no_license | sylvain121/freeciv-android | 08e155b802ab2abf6b9deb5a5e184693c14ad187 | 14103acbfcd36bc45ff635cd312031e0a03cc408 | refs/heads/master | 2020-05-02T18:02:30.894163 | 2015-03-15T10:56:11 | 2015-03-15T10:56:11 | 17,985,974 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,592 | c | /**********************************************************************
Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
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; eith... | [
"Boubou002*"
] | Boubou002* |
92d61e73dfa038f79c073d65e1bedbfd06ecf99c | 8e94518975d2fa9a37c94b85578848bca3029d99 | /src/NATS/dependency_library/grib_api-1.11.0/src/action_class_list.c | 70fc29395c4d348d318174f06ebbd2b8d3649c64 | [
"Apache-2.0"
] | permissive | edecarlo-swri/NASA_ULI_InfoFusion | 536ab527eec14b95e47a89c653fcc696a5353709 | 6bf349fc180c599eaab2693e08aa95d931ff3d76 | refs/heads/master | 2020-09-30T02:45:49.755225 | 2020-01-22T19:14:13 | 2020-01-22T19:14:13 | 227,181,113 | 0 | 0 | null | 2019-12-10T17:44:00 | 2019-12-10T17:43:59 | null | UTF-8 | C | false | false | 6,534 | c | /*
* Copyright 2005-2013 ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an int... | [
"edecarlo@edecarlolx-1.div18.swri.org"
] | edecarlo@edecarlolx-1.div18.swri.org |
bf57908cb25b00a5166f8b88ef47b9205760a287 | cbb4289fb16525099a0d33844caf9226a4336347 | /libft/ft_isin.c | fd42dffc071f2fb4ab041099c5d002df9f4d4102 | [] | no_license | ygarrot/ft_printf | 21cae14ca82bde85478880cec3ea049a14eeba7c | 485a04352aa8a50f4e38fdebd558abd0eafb9d30 | refs/heads/master | 2021-09-13T10:33:17.493073 | 2018-04-28T09:12:20 | 2018-04-28T09:12:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,076 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isin.c :+: :+: :+: ... | [
"ygarrot@e2r9p3.42.fr"
] | ygarrot@e2r9p3.42.fr |
414a980865dc4c381b6aaa11437990f8d382ced4 | ad4268fca6ac3bb9a356b2a50c742b269f76f0aa | /src/chainparamsseeds.h | 1bae9349ff0437785b993e539a94cc645c6d1232 | [
"MIT"
] | permissive | bnxxbitcoinnexx/bitcoinnexx-core | 3af6af089d5282ad9dfce6d23041a82628f901fb | c1522c0f95a0b27989dbe8c08d2a3b1055a9ddb1 | refs/heads/master | 2022-12-07T12:18:54.792384 | 2020-08-27T10:59:22 | 2020-08-27T10:59:22 | 283,929,104 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 19,536 | h | #ifndef BITCOIN_CHAINPARAMSSEEDS_H
#define BITCOIN_CHAINPARAMSSEEDS_H
/**
* List of fixed seed nodes for the bitcoin network
* AUTOGENERATED by contrib/seeds/generate-seeds.py
*
* Each line contains a 16-byte IPv6 address and a port.
* IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.
... | [
"bitcoinnexx7@gmail.com"
] | bitcoinnexx7@gmail.com |
75dbbf7760a7ce80ca020bc654e4e9b696abe22e | 75196819c910f3fd523f1a4d28e5d0fe12570ab1 | /src/secp256k1/src/tests.c | 1c0d7973490ea29a54085ef388c80a52e9f2e9a3 | [
"MIT"
] | permissive | gridcoin-community/Gridcoin-Research | 889967579b5b05bcc3ae836697a0f173b5ae91ea | 21414dd0f63c9a34060f7f762f08d1a52aeb9e87 | refs/heads/development | 2023-09-04T09:21:55.006935 | 2023-09-03T17:45:20 | 2023-09-03T17:45:20 | 23,332,350 | 292 | 117 | MIT | 2023-09-11T10:22:10 | 2014-08-25T23:41:04 | HTML | UTF-8 | C | false | false | 356,363 | c | /***********************************************************************
* Copyright (c) 2013, 2014, 2015 Pieter Wuille, Gregory Maxwell *
* Distributed under the MIT software license, see the accompanying *
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
***************************... | [
"60045611+div72@users.noreply.github.com"
] | 60045611+div72@users.noreply.github.com |
0338342fca77b65cb8cd036338c8628cb80b3a76 | 9efd02769292ba0dac4798f0c32d063a9f6a8806 | /BLE_Badge/RGB_OLED.cydsn/codegentemp/Capsense_MBX.h | 5e8c1e700228d5cdc6e14fe48fc79a1d727b2fa4 | [] | no_license | mroussin/CypressBLEBadge | b2d73914c0601c5d755d66e0b4ac55755b96f617 | aa599af98b6eed9bbae123ed352bfce305712623 | refs/heads/master | 2021-09-02T02:07:51.649116 | 2017-12-29T17:14:31 | 2017-12-29T17:14:31 | 115,732,364 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 16,219 | h | /*******************************************************************************
* File Name: Capsense_MBX.h
* Version 2.60
*
* Description:
* This file provides constants and structure declarations for the tuner
* communication for the CapSense CSD component.
*
* Note:
*
*********************************************... | [
"michael_roussin@hotmail.com"
] | michael_roussin@hotmail.com |
8e8393d230fe62f59f398ce7cc7b272fd8fe09f3 | 93ef3d2e24217aab739dfa3442b07fa41d0949f7 | /dec25/parallel_comm/main.c | bca68c022d9227105d72ac3e412ee41785d7e5d4 | [] | no_license | Azprio/Microcontroller_Programming_Practice | 79f55930aaedddc00240e434abe45903460b3e00 | f811d13c6a57b59a0c233c21051cdda9be05831d | refs/heads/master | 2020-03-15T01:49:50.291818 | 2018-05-02T20:31:49 | 2018-05-02T20:31:49 | 131,902,842 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 240 | c | #include <avr/io.h>
#include <util/delay.h>
#include "lcd.h"
int main(){
DDRA = DDRA & 0b00000000;
DDRD = DDRD | 0b00001111;
LCDInit(0);
LCDClear();
char b = PINA;
char a[0] = b;
LCDWriteStringXY(2,0,a);
_delay_ms(200);
} | [
"aktaruzzamanprio@gmail.com"
] | aktaruzzamanprio@gmail.com |
b8ba4fc55e4d1d4f8a7dd1e4eecac98915da3e54 | 6b5453c9171c2e899f51d7cfdb8896c392749ea4 | /arj-3.10.22/arj.c | 022b269c59ffc9b154460f4d4a16f4dae968858d | [
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | software-opal/Embroidermodder | 26f09fed175520b9af90366685c93539b3c3a5ef | b69c9f56a954c563119487eecbe36948980ed4b5 | refs/heads/master | 2021-10-08T21:08:14.312975 | 2018-03-25T00:55:22 | 2018-03-25T00:55:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 32,415 | c | /*
* $Id: arj.c,v 1.13 2005/06/21 19:53:13 andrew_belov Exp $
* ---------------------------------------------------------------------------
* This is the main file of the ARJ project. The routines in this file have
* a wide variety of purposes, however, all archive-related procedures are NOT
* put into ARJ.C.
... | [
"leesdolphin@gmail.com"
] | leesdolphin@gmail.com |
a68ad062340440a9722ccbdfcdeafa8d68ccd2d9 | 4d8c8221dd05288d5a2573f66fd9665d0ea85d58 | /src/controller/prompt_listener.h | 2fdf1ea3bd773a119cf9ab9ac9738f2a30e05fe1 | [] | no_license | adomen910e/aquariumServerClient | 395ee736f07d4a9210563dd17ac9aaa198b02d93 | 839ca2b1dfff0e590af8ad980d1d66f98caf0bcf | refs/heads/master | 2020-09-15T12:36:31.737921 | 2019-11-22T16:51:49 | 2019-11-22T16:51:49 | 223,446,741 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 196 | h | #ifndef PROMPT_LISTENER_H
#define PROMPT_LISTENER_H
void create_prompt_listener();
void show_aquarium();
void add_view();
void del_view();
//void save_aquarium();
#endif // PROMPT_LISTENER_H
| [
"domenger@MacBook-Pro-de-Domenger.local"
] | domenger@MacBook-Pro-de-Domenger.local |
362e9ee06d9fc85751607bc26712fc806937add1 | 8d3f8adfb7b419b117a46c224842ee93abc9169f | /age.c | c8b3c1f64344b0c353e110a96294936375554983 | [] | no_license | SoumodeepSaha/october1 | 66982eec15d7ae6f0c72e820c81f1bf628ef9a62 | 50e1607813ad54cfcaf2f9084e549e5d64939f4e | refs/heads/master | 2021-07-16T17:11:21.517390 | 2020-10-31T16:28:40 | 2020-10-31T16:28:40 | 214,184,729 | 0 | 6 | null | 2020-10-31T16:28:41 | 2019-10-10T13:03:50 | Python | UTF-8 | C | false | false | 240 | c | #include<stdio.h>
#include<math.h>
void main ()
{
int a,b,c;
printf ("enter age of three person");
scanf("%d%d%d",&a,&b,&c);
if (a>b && a>c)
printf ("oldest=%d",a);
else if (b>a && b>c)
printf ("oldest=%d",b);
else
printf("oldest=%d",c);
}
| [
"noreply@github.com"
] | SoumodeepSaha.noreply@github.com |
91ebf844d55bede620c070672e183a3a96756672 | d03755e385b1da76e10b67671eba8ab4193c2d9c | /siir-odev/2.c | 68a9b55b8a600ca7e48d3ee2ec5bf6cd9dfd829e | [] | no_license | canvural/homeworks | 02e828b80a5760cecdaa8da44b62f7c81a8ca5d2 | 8db64ef3c513774339456994eb5df0c2be1df3b6 | refs/heads/master | 2021-01-01T05:44:25.200242 | 2016-06-04T14:43:46 | 2016-06-04T14:43:46 | 56,914,090 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 408 | c | #include <stdio.h>
int main(int argc, char const *argv[]) {
int x;
printf("X degerini giriniz:");
scanf("%d", &x);
printf("f(x) = ");
if(x < 0) {
printf("%d", x);
} else if(x > 1 && x < 10) {
printf("%d", x*x);
} else if(x > 11 && x < 100) {
printf("%d", x*x + x);
... | [
"can9119@gmail.com"
] | can9119@gmail.com |
cc2768822fae96cb5f04a16f507eab3c67b56779 | b961b315a8d4b81ae83e5b263e55db2a1f9f82e8 | /libs/unp_writen.c | 52d013c1cc3924211eba4ad2200504f1e4023217 | [] | no_license | Soul-Mate/unp | 1ab1d6944090172c515b0ef9257a46bffc9de35b | ec886112c1450f35e832f2487608f844785281f5 | refs/heads/master | 2021-05-08T22:59:34.778829 | 2018-02-06T10:38:51 | 2018-02-06T10:38:51 | 119,691,988 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 793 | c | //
// Created by xyc on 18-2-2.
#include "unp.h"
static ssize_t writen(int fd, void *any, ssize_t n);
static ssize_t writen(int fd, void *any, ssize_t n)
{
size_t nleft;
ssize_t write_n;
const char *ptr;
nleft = n;
ptr = (char *)any;
while (nleft > 0) {
if ((write_n = write(fd,an... | [
"yuanchang.xu@outlook.com"
] | yuanchang.xu@outlook.com |
9e8f9039715f7c651e5e70101eef77a61c145032 | dcf26a6bcf853a3f8f6f50f9379998ef4d8aad40 | /vendor/hisi/hi35xx/middleware/source/third_party/ffmpeg/ffmpeg-y/libavfilter/vf_thumbnail.c | 4752ac663dee3db129ab4a7699ad6e67ce9c67f0 | [] | no_license | small-seven/testmem | c5f3202dce1c369e9d84cdaaccc2008b827c16d8 | 2771460c617439bd1be562ffdc94543ea170a736 | refs/heads/main | 2023-03-12T22:16:28.824577 | 2021-03-03T04:24:59 | 2021-03-03T04:24:59 | 343,847,762 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 533 | c | #include "libavutil/opt.h"
#include "avfilter.h"
#include "internal.h"
#define HIST_SIZE (3*256)
typedef struct ThumbContext {
const AVClass *class;
int n; ///< current frame
int n_frames; ///< number of frames for analysis
struct thumb_frame *frames; ///< the n_frames... | [
"huihuigong@users.noreply.github.com"
] | huihuigong@users.noreply.github.com |
b5e099f81490a09cb716bceb43990980b3316caf | 22c3444ca75c879fd504524f1689da271b78913c | /edk2-platforms/Silicon/BroxtonSoC/BroxtonSiPkg/SouthCluster/Include/ScLimits.h | 2fa4c25d8db8d0f146d13dd3616a407443999ed3 | [
"BSD-2-Clause"
] | permissive | 13801733632/APLBIOS | f73f4143f218b346eab45e640182abade44141c6 | 918e44abff57576a8577223a407d36cc6874e8e3 | refs/heads/master | 2020-09-30T12:52:32.978296 | 2019-12-11T08:27:03 | 2019-12-11T08:27:03 | 227,290,579 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,982 | h | /** @file
Build time limits of SC resources.
Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license... | [
"Maxwell_Xu@phoenix.com"
] | Maxwell_Xu@phoenix.com |
3d674e77f1316fde1b687ac4ac578217756c742e | 48b8148e984ffaa982c86329ffd22b075d59127e | /Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h | e1f857700795c50951c26b96e7f02f49b85d2fd6 | [
"MIT"
] | permissive | taptalk-io/taptalk.io-omnichannel-ios | 534f6c9661622dd59eaa4a267688ab5c7b82c6d3 | 4650133d63e8078c52ca43f11e06cfd2629e483c | refs/heads/master | 2022-07-29T04:09:14.156735 | 2022-07-05T04:24:17 | 2022-07-05T04:24:17 | 237,434,210 | 0 | 2 | MIT | 2021-02-01T04:18:13 | 2020-01-31T13:20:13 | Objective-C | UTF-8 | C | false | false | 53 | h | ../../../SocketRocket/SocketRocket/SRSecurityPolicy.h | [
"kevin@taptalk.io"
] | kevin@taptalk.io |
e2a3bde1f2e7ef34c44eb923dcc9b499faa3c990 | fea16d0bbe62d5010e591165937685ea779ba6b1 | /Recursive_Function.c | 9ad3aeb6a0c68ecfc30047a921279bc05517c3a2 | [] | no_license | muhammedzahit/C__My_Codes | 1290fe7f9b4bfb53cf1216b731e1cedc53a1e2f6 | 80f75f89e5b3c07c46ad64510cac238e546d5951 | refs/heads/master | 2020-11-23T21:27:12.444954 | 2020-05-06T14:17:30 | 2020-05-06T14:17:30 | 227,827,702 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 963 | c | //RECURSIVE FUNCTION TO FIND A NUMBER IN A GIVEN ARRAY
#include <stdio.h>
int searchInArray(int array[],int start,int end,int number);
int s;
int main(){
int size;
printf("Enter size of array:");
scanf("%d",&size);
int array[size];
for (s=0; s<size ; s++){
printf("Enter array[%d]:",s);
... | [
"muhammetzahitaydin@gmail.com"
] | muhammetzahitaydin@gmail.com |
3583710d8feee5b781d1de2efad0d0bb7ca2319a | 020da64d8f30f8a5908cfa66db0ab6f903954b0a | /AxEff_iterations/iterative_procedure_on_input_shapes/Raw_data/fit_params/fit_params_5to6.h | 7d2d305ed9527f4fef86698348fd665798da01fe | [] | no_license | chhuangAli/analysis-tools | f067921284ea82942b1b140c5f5dda06f3d4432b | cd3fe4e6205b6d9cba43bfa3ec3bf5a4970c2106 | refs/heads/master | 2023-03-24T05:24:01.752302 | 2021-03-20T06:41:15 | 2021-03-20T06:41:15 | 347,381,001 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,977 | h | //-----------------------------------------------------------------
//
// systematic uncertainties display parameters
//
//-----------------------------------------------------------------
double display_NJPsi_range = 2000;
double display_Sigma_range = 0.006;
double display_Mass_range = 0.005;
//---------... | [
"phyheron@gmail.com"
] | phyheron@gmail.com |
bfe8cca7f283c4479c8a3b80b71ca845fe4bcaff | 70ca67d5ed81ae839bb70f767c60d21599625faf | /wum/wumLib.c | f21b267fa3e026f909f2f169e9969763073d1453 | [] | no_license | EricLion/cloud | 4bbe4920ace36458f9b91899fa7e72df499a30f2 | f88983302e77ec3b306ea82572f19a448ffc852c | refs/heads/master | 2016-09-09T20:12:57.197395 | 2015-04-24T08:16:00 | 2015-04-24T08:16:13 | 22,599,423 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,609 | c | #include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "wumLib.h"
#define SA const struct sockaddr
#define BUF_SIZE 1024
int Readn(int fd, void *ptr, s... | [
"yanlongty@qq.com"
] | yanlongty@qq.com |
d129fd5417b19fa59edeec589cee2c00fff594aa | 0c8a23a2d135b22c94aab1e0daa509b48bfa26f7 | /protocol_structure.h | 894bc38c0c61916d992c12039c9131a857710ac6 | [] | no_license | alertjjm/pcap_programming | c14d1494955ff81c1f561709bc49c7c8a2bf0323 | 3fbcb4858c4d37867620613ff54d43500393a663 | refs/heads/master | 2020-04-28T03:05:02.991433 | 2019-05-28T12:37:55 | 2019-05-28T12:37:55 | 174,922,503 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,353 | h | /* Ethernet addresses are 6 bytes */
#include <stdint.h>
#define ETHER_ADDR_LEN 6
#define SIZE_ETHERNET 14
#define SIZE_IP 20
#define SIZE_TCP 20
#define SIZE_HEADER 54
/* Ethernet header */
struct sniff_ethernet {
u_char ether_dhost[ETHER_ADDR_LEN]; /* Destination host address */
u_char ether_shost[ETHER_ADDR_LE... | [
"sdr2936@gmail.com"
] | sdr2936@gmail.com |
add94dc87269864df75ed5a64e81074d13865be0 | c526569714d73c049ce9f88350c1125597d263cf | /ex8/pcb.h | c9186c7bfe4380ddff2d3f76a0cd6533c7255d78 | [] | no_license | juicetin/hostdispatcher | 322df6216bc98f021f6efdf1c0c171851042b1d8 | ba4dcc8ee641200078c7d6e83d3b21970d89b831 | refs/heads/master | 2021-05-28T22:21:24.275769 | 2015-06-10T08:11:08 | 2015-06-10T08:11:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,340 | h | #ifndef PCB_H
#define PCB_H
/*******************************************************************
OS Eercises - Project 2 - HOST dispatcher
pcb - process control block functions for HOST dispatcher
PcbPtr startPcb(PcbPtr process) - start (or restart) a process
PcbPtr suspendPcb(PcbPtr process) - suspend a pro... | [
"justingling@gmail.com"
] | justingling@gmail.com |
5776dab79bb58a3ac90d4760badd866f0bc085bf | 5b4312ddc24f29538dce0444b7be81e17191c005 | /autoware.ai/1.12.0/devel/include/vector_map_server/GetWayArea.h | 6c5fb306397a9b9850318d14745f4cbb8bacc9c8 | [
"MIT"
] | permissive | muyangren907/autoware | b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2 | 5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38 | refs/heads/master | 2020-09-22T13:08:14.237380 | 2019-12-03T07:12:49 | 2019-12-03T07:12:49 | 225,167,473 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 96 | h | /home/myr907/autoware.ai/devel/.private/vector_map_server/include/vector_map_server/GetWayArea.h | [
"907097904@qq.com"
] | 907097904@qq.com |
aa8fae40297eb42114bcfe801298a2808d06d335 | 91a6dc8952cc47ff1dcd75e6e9afcd5bcfdaf7bb | /ft_printf.c | ad2c8ceae788d599721c8783b2540f5db785aad6 | [] | no_license | Crysicia/ft_printf | 055075c9bc39f2d4e502393cae848340718c4de0 | 4f793fde52fc674ae368d7bd2fc05823fa10ad6b | refs/heads/master | 2023-01-25T02:02:05.484380 | 2020-12-08T22:28:56 | 2020-12-08T22:28:56 | 316,528,040 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,831 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.c :+: :+: :+: ... | [
"7459685+Crysicia@users.noreply.github.com"
] | 7459685+Crysicia@users.noreply.github.com |
e57fa3778223b657abe67acfd903667b03c29743 | 46979906b331cc10c7f0f009a158ce0996f14097 | /dynchk/libs/libasound/snd_seq_event_output.c | b31894fd59c675dcefe1cc6ee857089f7acb4205 | [] | no_license | mwichmann/lsb-checkers | 2f6a9674c9a23e39d69d35e8d2457c7a5b3881dc | 1170e4486085731b129cbb060c693e7e6ebca027 | refs/heads/master | 2020-06-11T00:07:56.105656 | 2016-12-08T19:30:39 | 2016-12-08T19:30:39 | 75,857,254 | 3 | 3 | null | null | null | null | UTF-8 | C | false | false | 1,273 | c | // Generated by gen_lib.pl
#include "../../tests/type_tests.h"
#include "../../misc/lsb_output.h"
#include "stdlib.h"
#include <alsa/seq.h>
#include <alsa/seq_event.h>
#undef snd_seq_event_output
static int(*funcptr) (snd_seq_t * , snd_seq_event_t * ) = 0;
extern int __lsb_check_params;
int snd_seq_event_output (snd_... | [
"denis.silakov@rosalab.ru"
] | denis.silakov@rosalab.ru |
1caf860ce5fbaf3df5370d767d2ebd9bebf4ae86 | 2d35b36c831db8a4f75f60f1e3ab9ac0d538dda2 | /apue/chapter23/posix_clock.c | 9f86d698a2c3837816b142b64d29fdb3899a226d | [] | no_license | whutaihejin/repo | 55ab38f29420e9674ae3f8e84d7c1ea0a085fb40 | 33137d826ae24dcd0b0552a4b44b7aae1c25a6e7 | refs/heads/master | 2022-05-02T16:34:13.302691 | 2022-04-16T04:40:01 | 2022-04-16T04:40:01 | 98,664,795 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,324 | c | #include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <pthread.h>
int main() {
struct timespec spec;
struct timespec res;
if (clock_gettime(CLOCK_REALTIME, &spec) == 0) {
printf("spec: %2ld.%09ld\n", spec.tv_sec, spec.tv_nsec);
}
if (clock_getres(CLOCK_REALTIME, &res) == 0) {
... | [
"taihejin2008@126.com"
] | taihejin2008@126.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.