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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0b8ac6f36d4bfc21a639700a93b7c1ab5bfb3d25 | 1336a60316558324c7ee358991210185f587b984 | /Assignment7/btNode.h | f47c2ac0922d68114a1b8106946d13425029c463 | [] | no_license | Saamy88/Data-Structures | bed46fe1a9fb3ca4d084162aa950f282aafa0a28 | 0d273035079c6cf488ef4533a09a40828b04d93e | refs/heads/master | 2021-01-01T16:20:53.081511 | 2015-07-31T22:30:46 | 2015-07-31T22:30:46 | 40,027,277 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 463 | h | #ifndef BT_NODE_H
#define BT_NODE_H
struct btNode
{
int data;
btNode* left;
btNode* right;
};
void dumpToArrayInOrder(btNode* bst_root, int* dumpArray);
void dumpToArrayInOrderAux(btNode* bst_root, int* dumpArray, int& dumpIndex);
void tree_clear(btNode*& root);
int bst_size(btNode* bst_root);
void bst_inse... | [
"cordova735_2@hotmail.com"
] | cordova735_2@hotmail.com |
4c25d089e52cf2f20dab92697ed062dc6c54efa8 | d5768ef44b3d93cd7bfb439bacb4e209f273e5c4 | /src/tscR.c | 798bbe9bd5a41f52e10493f4910a53b575d06979 | [] | no_license | fpsanz/tscR | 7b91103088274d5723236b1949c2eac8986e237e | 36a9680b4a4b02eef9b97121fc2de43cdc2640a2 | refs/heads/master | 2020-08-03T21:52:19.307241 | 2020-07-16T07:09:34 | 2020-07-16T07:09:34 | 211,896,789 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,578 | c | # include "tscR.h"
#define both_FINITE(a,b) (R_FINITE(a) && R_FINITE(b))
#define both_non_NA(a,b) (!ISNAN(a) && !ISNAN(b))
const int diagonale=0,gauche=1,haut=2, directionStart=3 ; //ces valeurs sont fix?es pour tout le programme
void printMatrix(double *mTraj,int *nbCol, int *nbLigne){
int i=0,j=0;
for(i=0 ... | [
"fernando.perez8@um.es"
] | fernando.perez8@um.es |
5928f78fbc8ecf1f4c676f5fcfa1104130048c5b | 5561c85d95dc6e23fe06b08250a9a0df158d718f | /0x00-hello_world/6-size.c | 7d9bb8bebb88f65c8a44580f18bfd517ebb46ca0 | [] | no_license | felipesv/holbertonschool-low_level_programming | 1a35fbca001e2a9554fcf4222b5d835115a341c1 | 29dbdf3633a783e12a97115050fb3a687858db65 | refs/heads/master | 2021-06-18T05:23:57.653983 | 2021-05-12T23:11:34 | 2021-05-12T23:11:34 | 209,333,139 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 441 | c | #include <stdio.h>
/**
* main - Show the size of some variable's type
*
* Return: Always 0 (Success)
*/
int main(void)
{
printf("Size of a char: %lu byte(s)\n", sizeof(char));
printf("Size of an int: %lu byte(s)\n", sizeof(int));
printf("Size of a long int: %lu byte(s)\n", sizeof(long int));
printf("Size of a long ... | [
"1165@holbertonschool.com"
] | 1165@holbertonschool.com |
a2ea151c2078d76f0f45f3944e1013f39265dda9 | e6ed1a784f989a2d2929249e675c0e077e172761 | /代码练习/数据结构/C++code/栈的顺序存储的设计与实现/栈的顺序存储的设计与实现/seqstack.c | ad0a23263f6958cce5b1cbd0c1857cb5e222d580 | [] | no_license | lovelybigduck/note | ae19d71dcb4121040d7c99c0ecde92bd09bf9f89 | abdb53f644096e401ea18d94f0ecb30ee89da1e1 | refs/heads/master | 2023-03-18T03:31:07.614653 | 2019-10-09T00:34:51 | 2019-10-09T00:34:51 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,139 | c | #include <stdio.h>
#include <stdlib.h>
#include "seqstack.h"
#include "seqlist.h"
//创建栈相当于创建链式表
SeqStack* SeqStack_Create(int capacity){
return SeqList_Create(capacity);
}
//销毁栈相当于销毁线性表
void SeqStack_Destroy(SeqStack *stack){
SeqList_Destroy(stack) ;
}
//清空栈相当于清空链表
void SeqStack_Clear(SeqStack *stack){
SeqList_Cl... | [
"38546030+biglovelyduck@users.noreply.github.com"
] | 38546030+biglovelyduck@users.noreply.github.com |
1f9c789edf76b109128bcaf9e18eb4d3360c1fad | fa39f427b878b1dd1cfd381aecfee05278685726 | /SyncProtect/ProcessExchangeData.h | 8f04c270930b1b72dcb8ba18869a4cd2ad69db11 | [] | no_license | 15831944/AutoUpdate-2 | 51cad4a7b80a4aa29f8f8e7ff61c305569e94509 | 7e5969603bf2566a8ce196d4e1f9e833908bb40b | refs/heads/master | 2021-12-03T11:22:17.038340 | 2014-05-29T02:01:38 | 2014-05-29T02:01:38 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 197 | h | /*
½»»»Êý¾Ý
*/
#pragma once
typedef struct TagExchangeData{
bool IsShowWindow;
bool IsStartAutoUpdate;
int BranchId;
char BranchCode[10];
}ProcessExchangeData,*PProcessExchangeData;
| [
"isnbnet@qq.com"
] | isnbnet@qq.com |
efeacd12c8ae3dd7e25eb7f1e6fd59c5ba66a0df | 52d7255e144ff6f6cd6a9375bd8cdac8b1e87389 | /cc4cs-ml/1 - Dataset preparation - Python/2 - Validation Set/viterbi_getn/frst.c | cf4a64087d8df5e752fcdd98a4655ac2c7149716 | [] | no_license | vnzstc/cc4cs | 714fcc8db62426c18c51a9602a0751c98749262b | 2ca5ad038b2df8f2728acf3c9d516949bdb581b0 | refs/heads/master | 2023-07-23T10:31:51.848779 | 2023-07-18T06:52:19 | 2023-07-18T06:52:19 | 107,561,326 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 857 | c | #include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <values.h>
#include <math.h>
#define K 7
#define RATEn 1
#define RATEd 2
typedef float TARGET_TYPE;
typedef unsigned long TARGET_INDEX;
TARGET_INDEX N; /*Indica il numero di bit da codificare.*/
TARGET_INDEX N_CODIFICATI; /*Indica il numero di bit c... | [
"vnzstc@protonmail.com"
] | vnzstc@protonmail.com |
ca9fb99886f9112a72d510234ac1fc80bedb7c82 | 3d1a4f144280e44398346f77ff751f92acde663a | /3_implementation/main_code.c | ee4e51bc20ccb36042152e38f3e3d38e355e312b | [
"BSD-2-Clause"
] | permissive | saikeerthi-kusuma-sompalli/crossword | 95fb5a9ef89fae2a54ccbe4276d4cd5015c9bd5e | 0270294cdf307464aff41013600824c8252229fd | refs/heads/master | 2023-05-08T21:32:53.013437 | 2021-05-25T14:30:03 | 2021-05-25T14:30:03 | 356,555,825 | 0 | 0 | null | 2021-04-18T17:37:59 | 2021-04-10T11:06:38 | C | UTF-8 | C | false | false | 1,151 | c | #include<stdio.h>
#include "inc/output_printing.h"
//char a[6][6];
//int b[6][6];
int main(){
int n,m;
int g = 1;
printf("Enter the size of row you want: ");
scanf("%d",&n);
printf("Enter the size of column you want: ");
scanf("%d",&m);
char a[n][m];
for(int i = 0;i<n;i++){
pr... | [
"saikeerthi.sompalli1234@gmail.com"
] | saikeerthi.sompalli1234@gmail.com |
30168700f7d7b1f6ca5463437ffc9fe0ff4cb94e | 764b09ab0487a31108f39d518001339dc2fbf667 | /42/ft_ls/src/cmp2.c | 216b1ea6b0ee181caae612b4d6d08d0798cc0550 | [] | no_license | plcharriere/school | 6cb02bec5a7f55b913d9e65ad156fa2f5f0a9716 | 27fc4ec178c7afe2da60ace7e7abeb1d42502bcc | refs/heads/main | 2023-08-20T22:42:18.596891 | 2021-09-21T11:28:35 | 2021-09-21T11:28:35 | 383,593,824 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,180 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cmp2.c :+: :+: :+: ... | [
"plcharriere@gmail.com"
] | plcharriere@gmail.com |
796b559617fd7c321c3ed19cfeece96b058064ae | a0ac0cb4113b731721c73dbca165f0f473e20435 | /data/kernels/807/2/includes.h | 0eba158733dfad53416648633aff46d5cd773fbc | [] | no_license | NTNU-HPC-Lab/LS-CAT | 93f2d5d24937c518a8a216e56e54961658fcaab8 | 83a50786eee2de633be477819c044d2c9a1ad076 | refs/heads/master | 2023-08-22T11:53:35.114641 | 2023-08-08T14:12:14 | 2023-08-08T14:12:14 | 380,981,826 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 65 | h | #define PRECISION 10000
#define BLOCKS_NUBMER 4096
//new series
| [
"jacobot@selbu.idi.ntnu.no"
] | jacobot@selbu.idi.ntnu.no |
970a130b30f1f52c7e773a3a6cbf3eacd60f91e4 | a5508fa90b3e0b45fd122b0f1d6991a75951551c | /aff_a/aff_a.c | db42eb75f83fd513fd2071e9a6caa73836c1dccd | [] | no_license | Calaverakidd/calavera | 32b0a247e992c12e8d1007732b8b5469279a3e43 | 6dab94f8505fd3250b07e465f8b7478c4cb6b084 | refs/heads/master | 2020-04-04T08:40:56.643354 | 2018-11-07T01:07:07 | 2018-11-07T01:07:07 | 155,790,389 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,163 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* aff_a.c :+: :+: :+: ... | [
"carrocha@e1z1r5p46.42.us.org"
] | carrocha@e1z1r5p46.42.us.org |
33c1789a10b6eb94e6f9b458e2283cf707501f46 | 6e665dcd74541d40647ebb64e30aa60bc71e610c | /800/IsdnTest/test/include/ask_isdn.h | 19ddb50fdab4aff11c890ebfea3915a12d041c91 | [] | no_license | jacklee032016/pbx | b27871251a6d49285eaade2d0a9ec02032c3ec62 | 554149c134e50db8ea27de6a092934a51e156eb6 | refs/heads/master | 2020-03-24T21:52:18.653518 | 2018-08-04T20:01:15 | 2018-08-04T20:01:15 | 143,054,776 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,456 | h | /*
* $Id: ask_isdn.h,v 1.1.1.1 2006/11/30 16:21:59 lizhijie Exp $
* Assist ISDN library for Kernel ISDN Protocol stack
*/
#ifndef __AS_KISDN_LIB_H__
#define __AS_KISDN_LIB_H__
#ifdef __cplusplus
extern "C"
{
#endif
/* API library to use with /dev/isdn */
/* we need some extentions */
#ifndef _GNU_SOURCE
#define ... | [
"jacklee032016@gmail.com"
] | jacklee032016@gmail.com |
7f31f7716f24707933bcf4f2bfd7221534c68432 | 3fd2f0d5b6d9be282922d5549afbfc726bd57ce0 | /dk71/SidorenkoMax/lab1/func.c | 2a232b29fcd8cde7b1b28ba43b5a625624427e42 | [] | no_license | maryvkuz/2018 | f943966011e9ce44c3009ec41b6d4aa299af6943 | 74918755bfe9415376a884bee914091a27e1c0fa | refs/heads/master | 2020-03-11T09:07:48.306185 | 2018-04-17T14:34:38 | 2018-04-17T14:34:38 | 129,902,668 | 0 | 0 | null | 2018-04-17T12:41:04 | 2018-04-17T12:41:03 | null | UTF-8 | C | false | false | 528 | c | #include <stdio.h>
#include <stdlib.h>
#include "func.h"
int factorial(float a)
{
int h, c;
c=1;
for(h=1;h<a+1;h++)
{
c=c*h;
}
return c;
}
int multiplication(float a, float b)
{
int c=0;
c=2*a+b;
return c;
}
int module(fl... | [
"noreply@github.com"
] | maryvkuz.noreply@github.com |
cacc03acf9643f464a37cc7bed71ea8939058c39 | 30b7c3251138f077dc605e2756351c892c761b79 | /svm-light-TK-1.2.1/tree_kernel.c | b82fe5fb30cdbd4643f2281e8dbdf5905b9112d1 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | lordwarlock/ie_proj3 | c52e9d979a6791cd6c48b945c554c13b507d5776 | 3d7e1fcc463011a2b5a83a009822227b8e3cfacc | refs/heads/master | 2021-01-02T08:56:48.075975 | 2015-03-28T19:26:11 | 2015-03-28T19:26:11 | 32,485,455 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 28,138 | c | /***********************************************************************/
/* FAST TREE KERNEL */
/* */
/* tree_kernel.c */
/* ... | [
"wynick27@gmail.com"
] | wynick27@gmail.com |
7f488c6bb98585d1b8ffd56a140af20d73ea938d | 18dfabe878258f895fa4df772a4f11265bf915f7 | /meter.c | 91074baf0018376024cbe0284fe851917ea1a94b | [] | no_license | mrsk7/meter | 32e919258908459a92c14dacfca294e24a9eb053 | d8f0f423d08270e986ea360c74f1ae59729eff2d | refs/heads/master | 2016-09-05T12:36:38.648910 | 2015-05-19T23:29:18 | 2015-05-19T23:29:18 | 35,437,504 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,890 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct ll {
int meter;
struct ll *next;
};
typedef struct ll LinkedList;
struct wrapper {
LinkedList *this;
int size;
struct wrapper *next;
};
typedef struct wrapper Wrapper;
struct node {
Wrapper *remaining;
LinkedList *openset;
struct node *next_... | [
"mirozis@hotmail.com"
] | mirozis@hotmail.com |
8acb0d0b8a33e246dfb7141965cb638fb1886dbf | 045690a7545b37317fc4b1e678c69426d58c8403 | /C_Example/example2.c | 7dad96232b762ce4615f56b4b609af48d35abc5f | [] | no_license | taetiseob/PlasticCLab-Prac- | e05264b77a5dd99cfe4ca5794a9dc93e0bf21109 | 83b5e68948936ad8fe6b39f69db6d8cf814059b7 | refs/heads/master | 2020-04-09T21:36:30.045203 | 2018-12-06T02:28:05 | 2018-12-06T02:28:05 | 160,607,455 | 0 | 0 | null | null | null | null | UHC | C | false | false | 341 | c | #include <stdio.h>
int main(void) {
int x, y, sum;
x = x - 4;
y = y - 5;
for (x = 1; x <= 12; x++) {
if(x==56)
for (y = 1; y <= 55; y++) {
sum = x + y;
}
if(sum==60)
printf("%d\n", sum-9);
}
system("pause");
return 0;
/*
5x+4y=60을 만족시키는 양의 미지수 x와 y를 모두 구하세요.
중첩반복문
*/
} | [
"35190889+Taetiseob@users.noreply.github.com"
] | 35190889+Taetiseob@users.noreply.github.com |
b55d6cdf5b2ab708b0e964d143b836551cfdc74c | 935a1a01fde18dbafc03bbd85756e71aa40647f3 | /HAL_V3_2/HAL_V2/Version.h | 3a3c8eeface9d5b2f9cddeed08f0c2a0c68ba8fd | [] | no_license | DigitalMills/Object-Oriented-Programming | 214e1c31da6f825e052bdf8304a2af8aed93dd2c | c81966c61db4e0b6c5a4abca0691e3f2d4a50b7c | refs/heads/master | 2021-07-11T22:44:08.411066 | 2017-10-10T19:11:15 | 2017-10-10T19:11:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 447 | h | // VERSION>H
// PAUL LUNN
// Includes version and history information
const float HAL_VERSION = 3.3;
// HISTORY
/*
V2.0 - repackaging of msvc++ V6 materials into V8
V2.1 - 1/11/06
- added vst common object
- renamed delay.cpp/h to HAL_Utilities
V3.0 - moved source code into source folde... | [
"carlmills@Carls-MacBook-Pro.local"
] | carlmills@Carls-MacBook-Pro.local |
8f1dc39569e92ffa72721c71cea2a18bc4a6cb90 | 2cefe7d7e6a0ba8e429fb359c14829f16fa60dfd | /asa063/asa063.c | db9fa6003f5db19f9d8c4653aad3995c86e8b609 | [] | no_license | latifkabir/Computation_using_C | 485cfee895f780b3c7d67cc4c5d98118d93e38c8 | 733c833025e7499f19a0e15c8b0b8beeefa55709 | refs/heads/master | 2020-12-25T14:02:23.779462 | 2015-06-27T03:06:35 | 2015-06-27T03:06:35 | 21,218,671 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,553 | c | # include <stdlib.h>
# include <stdio.h>
# include <math.h>
# include <time.h>
# include "asa063.h"
/******************************************************************************/
double alogam ( double x, int *ifault )
/******************************************************************************/
/*
Purpose:
... | [
"johannes@debussy"
] | johannes@debussy |
7b231a4866553a67646e845e95b57e7de953d955 | 40de3da30239862f11a946166b50438174c2fd4e | /lib/obj/race_selection.c | d631a4e95898790195b49ec887339a79c5911215 | [
"MIT"
] | permissive | vlehtola/questmud | f53b7205351f30e846110300d60b639d52d113f8 | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | refs/heads/master | 2020-12-23T19:59:44.886028 | 2020-01-30T15:52:16 | 2020-01-30T15:52:16 | 237,240,459 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,744 | c | #define RACE_D "/daemons/race_stats"
reset(arg) {
if (arg) return;
set_light(3);
}
query_property(string str) {
switch(str) {
case "no_summon": return 1;
case "no_kill": return 1;
default: return 1;
}
}
init() {
/* reset race stats */
if(!this_player()->query_wiz())
this_player()->set_race();... | [
"ville.lehtola@iki.fi"
] | ville.lehtola@iki.fi |
6a70b75a0a02a6fe26f60c7b40712d8fb124c0c9 | da7c499625123f5d1a28e3d75b037523df11ccb5 | /devel/VxWorks55/ppc/target/hide/src/drv/netif/if_sl.c | a446e8cd688d1a95a83fa8c500c663eb9ab746ec | [] | no_license | emuikernel/BDXDaq | 84d947b0a4c0c1799a855dbe6c59e9560a8fc4e2 | cf678d3b71bdfb95996e8b7e97ad3657ef98262f | refs/heads/master | 2021-01-18T07:26:38.855967 | 2015-06-08T15:45:58 | 2015-06-08T15:45:58 | 48,211,085 | 3 | 2 | null | 2015-12-18T02:56:53 | 2015-12-18T02:56:52 | null | UTF-8 | C | false | false | 45,203 | c | /* if_sl.c - Serial Line IP (SLIP) network interface driver */
/* Copyright 1989 - 2002 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/* $NetBSD: if_sl.c,v 1.33 1994/12/11 21:39:05 mycroft Exp $ */
/*
* Copyright (c) 1987, 1989, 1992, 1993
* The Regents of the University of California. All rights reserve... | [
"andrea.celentano@ge.infn.it"
] | andrea.celentano@ge.infn.it |
cc4a1a1d1b37f1451503383dbf5e5115101c2e06 | a1d1f5ac9bf58eac9855a7c83161f7be389e3fce | /0x02-functions_nested_loops/6-abs.c | 2be6345a2607105274a69e51921d6296983e40d7 | [] | no_license | theurikenneth/alx-low_level_programming | c9add10cf6c2b8e44f4a0e402c328f8553fe8503 | 0a432e2bca81fbfef3c671c610a8377ab50862e1 | refs/heads/main | 2023-07-28T02:56:10.266457 | 2021-09-04T10:02:21 | 2021-09-04T10:02:21 | 335,519,439 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 216 | c | #include "holberton.h"
/**
* _abs - computes the absolute value of int
* @n: the integer to value absolutely
*
* Return: returns n if positive and -n if negative
*/
int _abs(int n)
{
return (n > 0 ? n : -n);
}
| [
"theurikenneth@hmail.com"
] | theurikenneth@hmail.com |
27128a90cd3c22e8fc0ea8536404dbe2fdbb68b5 | fa4017a751d52b30dae39964832bcffd9ed62944 | /吉田学園情報ビジネス専門学校_髙岩一稀/フルーツバスケット/開発環境/rat.h | 5b5210b9a5167a10acc19d5ee209e38428054fe1 | [] | 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,333 | h | //-------------------------------------------------------------------
//
// ネズミヘッダー (crow.h)
// Author:Itsuki Takaiwa
//
//-------------------------------------------------------------------
#ifndef _RAT_H_
#define _RAT_H_
#include "main.h"
//----------------------------------------------------------------... | [
"its.its.yt18@gmail.com"
] | its.its.yt18@gmail.com |
5d89c1f81f950300a8878bb1eb590f39c74390f3 | bff6eef3d3d0181d796dcca72797858392dcd174 | /src/userprog/exception.c | d39436ffd41b64291a4726a283a24bd91b14bc30 | [
"MIT-Modern-Variant",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | shailadhikari/PintOS-User-Programs | 7d2a875e0b32c8b5423cb4567441b85694969dac | b0377e72da7b67d2b8b4200536f0ecb90f3960d1 | refs/heads/master | 2020-04-01T19:31:44.115731 | 2018-10-18T03:31:16 | 2018-10-18T03:31:16 | 153,558,521 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,425 | c | #include "userprog/exception.h"
#include <inttypes.h>
#include <stdio.h>
#include "userprog/gdt.h"
#include "threads/interrupt.h"
#include "threads/thread.h"
/* Number of page faults processed. */
static long long page_fault_cnt;
static void kill (struct intr_frame *);
static void page_fault (struct intr_frame *);
/... | [
"sa32@buffalo.edu"
] | sa32@buffalo.edu |
918f71971b45b412f6edc38abc0bab1c4e076e17 | 88ae8695987ada722184307301e221e1ba3cc2fa | /native_client/src/untrusted/nacl/getcwd_without_malloc.c | 5233aff9fbe62fdfa30f5fa36281fff1b44ddb1e | [
"BSD-3-Clause",
"Zlib",
"Classpath-exception-2.0",
"BSD-Source-Code",
"LZMA-exception",
"LicenseRef-scancode-unicode",
"LGPL-3.0-only",
"LGPL-2.0-or-later",
"LicenseRef-scancode-philippe-de-muyter",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-intel-osl-1993",
"HPND-sell-var... | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C | false | false | 651 | c | /*
* Copyright (c) 2013 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <errno.h>
#include "native_client/src/untrusted/nacl/getcwd.h"
#include "native_client/src/untrusted/nacl/nacl_irt.h"
char *__g... | [
"jengelh@inai.de"
] | jengelh@inai.de |
05c38e18b2f772f6b8a95d8f4cb1fabf15b58889 | 496d354350694511649243d69288250e8c697388 | /agedWasm/include/decoders/decoder.c | 22c1674f2ecfae10d9c0241b162b9ef7e08e2940 | [] | no_license | chfanghr/wasm-insight | bc96d9055d50101ae480eee83868a9df6e9d276b | c7d8edb4444a71f45890ee3ceaf5ea8cd9e0a205 | refs/heads/master | 2020-06-11T00:50:55.856651 | 2019-06-28T13:24:51 | 2019-06-28T13:24:51 | 193,808,515 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,799 | c | #include "decoder.h"
#include <consts/nums.h>
#include <decoders/magicDecoder/magicDecoder.h>
#include <decoders/typesDecoder/typesDecoder.h>
#include <decoders/funcsDecoder/funcsDecoder.h>
#include <decoders/exportsDecoder/exportsDecoder.h>
#include <decoders/importsDecoder/importsDecoder.h>
#include <datas/readers/r... | [
"1048035187@qq.com"
] | 1048035187@qq.com |
05185b79e2045bfe29376dda4ed7252c6c46fde8 | c27766085ce9e8a1b4de6193381a3bbe64afc905 | /ExerciciosEDA/ListaEDA/ListaEncadeada.h | 7fb58633520a137f0805087842f07334d974fb79 | [] | no_license | rafaelpadilha/ExerciciosIFB | cdfc206aa98e90930deede57eda56f09f76d626a | 2b576c67c0792835a98a0935e173f25949145bfe | refs/heads/master | 2020-12-30T12:35:04.718962 | 2017-08-06T23:07:24 | 2017-08-06T23:07:24 | 91,391,266 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 1,065 | h | #include <stdio.h>
#include <stdlib.h>
/*
* Aluno
* Rafael Padilha
* IFB - Taguatinga
*/
struct cel
{
int info;
struct cel *prox;
};
typedef struct cel Celula;
/*
* Cria a Lista
*/
void criaLista(Celula *LISTA);
/*
* Recebe a Celula
* Verifica se a celula está vazia
* Retorna 1 para sim 0 para não
... | [
"rafaelpadilha@hotmail.com.br"
] | rafaelpadilha@hotmail.com.br |
54c2838b328bd4c5a62c1ca854e95e8a75ab8c8d | b2387a0b9e7613571257cdb88ab15a720a3ebc1c | /embedded/Core/Inc/main.h | fcacc071b7b61ebac55b9a98223c8d204bed0a95 | [] | no_license | zbigos/MotorDriver | 9829991866abfba53003db6447ca74881a740cb1 | ae824b417a2ab8f729c411f34af5f735a9b1e05d | refs/heads/master | 2022-12-31T16:09:35.520851 | 2020-10-26T14:35:59 | 2020-10-26T14:35:59 | 306,663,886 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,719 | h | /* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : main.h
* @brief : Header for main.c file.
* This file contains the common defines of the application.
*******************************************... | [
"zbigniew_drozd@wp.pl"
] | zbigniew_drozd@wp.pl |
bae7ed47b35fdc6bc77362defef7f8776ca02fd6 | 6bb1ae3aa812ef03e9610db1c2a4ab8e9ca65d03 | /Laborator_CW_09/Workspace laborator/Buchman_Adrian/RegineRecursiv.c | 3d4924b4108788ef2d9e0c34aaa543e98f4ed6b6 | [] | no_license | jurmadani/TP_Laborator_1_2 | f5c5001f175bc152235c8b0a02b1481106cb4f5d | 083fb5eedff105bba1744811aea7397ae8a73091 | refs/heads/master | 2023-05-08T22:55:11.643264 | 2021-06-01T14:16:45 | 2021-06-01T14:16:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,304 | c | #include<stdio.h>
#include<stdlib.h>
#pragma warning(disable:4996)
unsigned char Stack[100];
unsigned char NumberOfQueens;
unsigned char isValid(unsigned char StackPeak);
unsigned char isSolution(unsigned char StackPeak);
void PrintSolution(unsigned char StackPeak);
void Backtracking(unsigned char StackPeak);
int m... | [
"adrian.buchman@student.upt.ro"
] | adrian.buchman@student.upt.ro |
91280d67ead65922a2f943f189b7039566c2923a | fdc5b324e581ca09370cc2aedfb2f72c3a3a2a6f | /seed_for_retdec/337_new.c | f94abf918b21c86ff72aa71c802a5070dc42bee7 | [] | no_license | hz90937880/NewDecFuzzer | 12981d53dd64e9a4ef881d4879b7abb3050ff849 | aa946ff1ad89742093a89a4703af238734546d9f | refs/heads/main | 2023-04-15T18:04:11.235871 | 2021-04-25T15:45:45 | 2021-04-25T15:45:45 | 351,564,252 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,092 | c | /*
* This is a RANDOMLY GENERATED PROGRAM.
*
* Generator: csmith 2.3.0
* Git version: unknown
* Options: --no-arrays --no-structs --no-unions --no-safe-math --no-pointers --no-longlong --max-funcs 1 --max-expr-complexity 5 --output ./tmp/src_code/csmith_test_235.c
* Seed: 1374350751
*/
#define NO_LONGLO... | [
"1429408028@qq.com"
] | 1429408028@qq.com |
ae948a483405214e15711771334d0e8b4aaf4124 | d580747c43c0f8b6c3961361e268b11215ab984d | /Main_epreuve1.c | ca2e80a196279013ccd8aed3bb634a0d07e1df9a | [] | no_license | mathieu-clement/kj-project | 072c86a7be9b30310be365e756b04d4c36bf549b | 81bc8a0f1c2ddb560020ebf92bfac95723d9d4c8 | refs/heads/master | 2022-08-30T13:32:50.995531 | 2013-03-23T12:57:09 | 2013-03-23T12:57:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,029 | c | #include "KJunior.h"
#include "basic_functions.h"
#include "tv_remote_utils.h"
#define EXT_SPEED 10
#define INT_SPEED 15
#define FORWARD_SPEED 20
#define turn_left() KJunior_set_speed(-INT_SPEED, EXT_SPEED)
#define turn_right() KJunior_set_speed(EXT_SPEED, -INT_SPEED)
#define move_forward() KJunior_set_speed(FORWARD_... | [
"mathieu.clement@freebourg.org"
] | mathieu.clement@freebourg.org |
c2714b77c5cfc12d41c4bc496f447bc61bbf915a | 8ccc882ac9957b92deb055543dcc8986f33b1fb3 | /dependencies/LUrlParser/lib/LUrlParser/LUrlParser.h | fea99cedf76b38c4a107dd158063b9fa59047864 | [
"MIT"
] | permissive | aphenriques/atlas | 6a6c801b4c29ede919988fe39d31bf790bfe459a | 9967f58005015a39ece8f7dfdfa91d45759dd042 | refs/heads/main | 2023-04-05T07:42:18.871591 | 2021-04-21T19:41:13 | 2021-04-21T19:41:13 | 357,348,806 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 29 | h | ../../LUrlParser/LUrlParser.h | [
"aphenriques@hotmail.com"
] | aphenriques@hotmail.com |
f0cf907ff378e66ef8df8479f6469cc98f84ed63 | e25c8b65c0115053b14f8ecffaea94a964eefa1f | /ds/open/world1/tmr/blood_field/map_18_39.c | 445f94e5c24bf0ad9a68f386a498b666f3b29bdb | [] | no_license | zwshen/mudos-game-ds | c985b4b64c586bdc7347bd95d97ab12e78a2f20f | 07ea84ebdff5ee49cb482a520bdf1aaeda886cd0 | refs/heads/master | 2022-03-01T14:55:10.537294 | 2022-02-15T15:41:26 | 2022-02-15T15:41:26 | 244,925,365 | 4 | 1 | null | 2022-02-15T15:41:27 | 2020-03-04T14:44:49 | C | BIG5 | C | false | false | 389 | c | inherit ROOM;
void create()
{
set("short", "草地");
set("long", @LONG
LONG
);
set("exits",([
"north" : __DIR__"map_17_39",
"west" : __DIR__"map_18_38",
"east" : __DIR__"map_18_40",
]));
set("outdoors","land");
setup();
set("map_long",1); //show map as long
repla... | [
"zwshen0603@gmail.com"
] | zwshen0603@gmail.com |
0908d5b05e36b84cd3ac297fc5447f191fb09aa4 | 54c1e3a7dce8f7686c8ffb6adb940806653a137b | /DataStructures/dersKodları/DataStructures_Week2_2/Stack.c | da2919d0987c433d8593ab63ca7ab1f9c6f05982 | [] | no_license | tunahanyetimoglu/C | 8a94f1eb7a8f3cbe0e3b6dfd23f59be068390896 | 23965fbfa3b3a9d56cca3029623e2d8ee88f6d8f | refs/heads/master | 2021-08-18T20:37:14.790799 | 2020-12-27T14:29:58 | 2020-12-27T14:29:58 | 86,238,375 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,275 | c | #include <stdio.h>
#include <stdlib.h>
#define NUMBEROFSTUDENTS 5
struct student{
int studentNumber;
char *studentLastName;
char *studentFirstName;
struct student *nextStudent;
};
typedef struct student Student;
typedef struct student *StudentPointer;
void printStudentStack( StudentPointer *studentStack );
void... | [
"tunahan.yetimoglu@bil.omu.edu.tr"
] | tunahan.yetimoglu@bil.omu.edu.tr |
ed8985aad38968d2f0018b25e161461d84e2d0e3 | 927bde63049c537ab1a02e220a431a267d45b467 | /src/Gear.h | 1ad28f5eccad3bb454143244eab4e8edfc6e193b | [] | no_license | schuchert/robo_rally_c_merged | 8acbc2d86c6f71d3f036f6cfa6d9279079ba62b3 | 9499262eb2bd334864471adf87f5e7c47a51969a | refs/heads/master | 2020-12-25T18:23:18.109486 | 2011-10-13T01:31:26 | 2011-10-13T01:31:26 | 2,545,334 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 284 | h | #pragma once
#ifndef GEAR_H_
#define GEAR_H_
#ifdef __cplusplus
extern "C" {
#endif
struct Tile;
#include "Movement.h"
#include "RegisterPhaseGroup.h"
struct Tile *Gear_create(enum Direction, enum Size, RegisterPhaseGroup group);
#ifdef __cplusplus
}
#endif
#endif /* GEAR_H_ */
| [
"schuchert@yahoo.com"
] | schuchert@yahoo.com |
4f3bd0449578e80fa68928b3312a1475e792366e | 727f1bc2205c88577b419cf0036c029b8c6f7766 | /out-bin/py/google/fhir/models/model_test.runfiles/com_google_fhir/external/pypi__tensorflow_1_12_0/tensorflow-1.12.0.data/purelib/tensorflow/include/tensorflow/stream_executor/platform/default/mutex.h | fd981fa2ec7987491eef2fd9c7791fd23414b4f7 | [
"Apache-2.0"
] | permissive | rasalt/fhir | 55cf78feed3596a3101b86f9e9bbf6652c6ed4ad | d49883cc4d4986e11ca66058d5a327691e6e048a | refs/heads/master | 2020-04-13T00:16:54.050913 | 2019-01-15T14:22:15 | 2019-01-15T14:22:15 | 160,260,223 | 0 | 0 | Apache-2.0 | 2018-12-03T22:07:01 | 2018-12-03T22:07:01 | null | UTF-8 | C | false | false | 211 | h | /home/rkharwar/.cache/bazel/_bazel_rkharwar/c4bcd65252c8f8250f091ba96375f9a5/external/pypi__tensorflow_1_12_0/tensorflow-1.12.0.data/purelib/tensorflow/include/tensorflow/stream_executor/platform/default/mutex.h | [
"ruchika.kharwar@gmail.com"
] | ruchika.kharwar@gmail.com |
fdf8b15ea70422146ff4b91f8ad0712dd039443d | 032c2e67d5a3d4c706a57846f00c995a3f8a6e04 | /mediatek/platform/mt6571/lk/mt_logo.c | c616550f3b00e422a76f1b6f5ac96ca6cf337850 | [] | no_license | chen3135/OrangePi3G-iot_external | 825a082b09a93a8a7f085f8e4938c8a51ac7fae4 | 6bf3d18220a0a382a79e71525a4c184163a496b2 | refs/heads/master | 2021-10-26T11:01:50.168049 | 2019-04-12T08:31:45 | 2019-04-12T08:31:45 | 180,967,406 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,838 | c | /*
* (C) Copyright 2008
* MediaTek <www.mediatek.com>
* Infinity Chen <infinity.chen@mediatek.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 ... | [
"vcsy1994@sina.com"
] | vcsy1994@sina.com |
5a14fc5174e619929ca702ade0b6fd4a30b0fb62 | 12b06ed4919cb0bbd2ed3aeffc39eb788fafdf62 | /ADC_DAC.cydsn/Generated_Source/PSoC5/SPI_INT.c | 517031a5003590dac0f780c19e6990ef6e8e77ee | [] | no_license | bgencarelle/BIT-MANGLER | 727133828999cb9044795db333af15edf205798b | e60fa7bb74fdd9924a4931bc6c01ea98af265d23 | refs/heads/master | 2021-01-19T08:59:53.709905 | 2017-04-18T05:27:25 | 2017-04-18T05:27:25 | 87,708,706 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,175 | c | /*******************************************************************************
* File Name: SPI_INT.c
* Version 2.50
*
* Description:
* This file provides all Interrupt Service Routine (ISR) for the SPI Master
* component.
*
* Note:
* None.
*
************************************************************************... | [
"bgencarelle@gmail.com"
] | bgencarelle@gmail.com |
fe9171e02438088edba348bb79d06984dabff841 | 4daeb9ebf92d9826028a50bf4e4715c1ab145db1 | /Problem-Set/Graph_Algorithms/KNIGHTMV/qq37_mem.c | e015df8378823292bb61ef630cd5b7607b4daaaa | [] | no_license | Rahul2025/Thesis | 4148653fcc96d623d602ba58e33cc6465d1cd9f5 | df31863194e2e0b69646e3a48fcaf90541a55c2a | refs/heads/master | 2020-05-02T00:48:09.593873 | 2013-04-21T20:23:02 | 2013-04-21T20:23:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | true | 103,368 | c | /* Generated by Cython 0.14.1 on Wed Mar 6 08:08:35 2013 */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#ifndef Py_PYTHON_H
#error Python headers needed to compile C extensions, please install development version of Python.
#else
#include <stddef.h> /* For offsetof */
#ifndef offsetof
#define offsetof(type, mem... | [
"rahulgupta2025@gmail.com"
] | rahulgupta2025@gmail.com |
e9f4fa1b634d6778ad05168a47b1a831a28b7c6c | 8e94518975d2fa9a37c94b85578848bca3029d99 | /src/NATS/dependency_library/hdf5-1.8.21/src/H5S.c | 50bee5215111a8bf2b1d28c93c8693cfb22485ad | [
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"LicenseRef-scancode-hdf5"
] | 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 | 66,424 | c | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... | [
"edecarlo@edecarlolx-1.div18.swri.org"
] | edecarlo@edecarlolx-1.div18.swri.org |
e265984a93ca380c2b14f6748954fb03be167fb1 | be60deba39fb2c4ba04c32222666d8513524f5de | /lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b.h | 9256924e2c6fe62d6171faeb52d2a3cf96423ddc | [
"Apache-2.0",
"MIT",
"SunPro",
"BSD-3-Clause",
"BSL-1.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jroell/stdlib | c7c418a60e460c556408d20dd925069e590b6b32 | 8400dff8ed6cd96e30b97b8dade5c856999f3394 | refs/heads/develop | 2023-07-19T18:56:06.058340 | 2021-02-08T04:42:29 | 2021-02-08T04:42:29 | 338,688,797 | 0 | 0 | Apache-2.0 | 2023-07-05T15:32:26 | 2021-02-13T23:10:24 | null | UTF-8 | C | false | false | 1,288 | h | /**
* @license Apache-2.0
*
* Copyright (c) 2020 The Stdlib Authors.
*
* 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 a... | [
"kgryte@gmail.com"
] | kgryte@gmail.com |
2f3abc41bb677bc7f1b209ed84d598e0bdd16f2f | 9e1acc88ca5f9334470d4176fd5229044d30b8b7 | /c/queue/linkqueue/main.c | 78f051c1bd80bd85fa8229a07436cf7eb657abc0 | [] | no_license | kk821521286/kangkai | 7c7124873a7fc7ebf89f8a92822df70e6c12aa36 | e075de3138e4b907cef23a6c0a7b5862515bae49 | refs/heads/master | 2016-09-09T20:22:28.738799 | 2015-08-02T04:31:04 | 2015-08-02T04:31:04 | 40,042,733 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 285 | c | #include "queue.h"
int main()
{
int i = 1,ret ,value;
queue_t *q = NULL;
q = queue_init(100);
while(i < 20) {
if(ret == -1)
break;
ret = enqueue(q,i++);
}
while(q->clen != 0) {
dequeue(q,&value);
printf("%d ",value);
}
printf("\n");
destroy(q);
return 0;
}
| [
"821521286@qq.com"
] | 821521286@qq.com |
b225cf1f55740166ac1ad4a3c83327351e5b061e | 2099a2b0f63f250e09f7cd7350ca45d212e2d364 | /AI-Dataset/SourceFiles_con/S0004370216300790.xml.C | 71c1e93f631828d3bdb3778577245a93688a6e2c | [] | no_license | Angela7126/SLNSumEval | 3548301645264f9656b67dc807aec93b636778ef | b9e7157a735555861d2baf6c182e807e732a9dd6 | refs/heads/master | 2023-04-20T06:41:01.728968 | 2021-05-12T03:40:11 | 2021-05-12T03:40:11 | 366,429,744 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 97,910 | c | <?xml version="1.0" encoding="utf-8"?>
<html>
<body>
<root>
<title>
Artificial cognition for social human–robot interaction: An implementation.
</title>
<abstract>
Human–Robot Interaction challenges Artificial Intelligence in many regards: dynamic, partially unknown environments that were not origin... | [
"angela7126@126.com"
] | angela7126@126.com |
3158c3c925f4729dbf27f30479aaefe5a28bf1d2 | 367795f0cfbb8154523a2dfcd1afbefe534fde63 | /FT_SSL_MD5/libft/src/ft_bzero.c | 896fda218de83b7eda1b43e7ed803731bbef05dd | [] | no_license | Onathezema/42Projects | 211c5047f7b2e2b2c0997958c1c223567fd70785 | 0c6d257f9ac264aaad32fa0d1dc7395f79dea170 | refs/heads/master | 2020-04-24T06:36:53.406087 | 2019-10-17T23:32:32 | 2019-10-17T23:32:32 | 171,771,371 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 973 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_bzero.c :+: :+: :+: ... | [
"winorth@student.42.us.org"
] | winorth@student.42.us.org |
a25061aa982bc61c84d65fadb448ab8d2de1812e | cf9dcb0dba04786fcea82e8f852e8330a4cece67 | /socproj/temp.c | d8bf5900a7a0327cb36a9a219224d0b3cfa337bd | [] | no_license | connectgfe/cs335 | 078d8784af1251a7618f6a55f8af5d1b6831bf95 | 062d1359bc9fadc427feec3f0e8c88ec45461dcb | refs/heads/master | 2021-01-21T16:04:48.178545 | 2018-07-14T06:17:17 | 2018-07-14T06:17:17 | 91,871,285 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 95 | c | #include <stdio.h>
int main(){
char* hello="hello";
printf("%s\n",hello);
return 0;
}
| [
"joshua.white@twintechs.com"
] | joshua.white@twintechs.com |
6fdbd6c4667c61eff48196519f9c9590c80f7704 | 0aef26863f142bef75a0e4aaf7da76fc95e3d8ae | /crypto_kem/ntskem1380/ref/matrix_ff2.c | 1bbf34156dc63f983dd9db43c8ed45456814ad6f | [] | no_license | jedisct1/supercop | 94e5afadc56ef650d7029774a6b05cfe2af54738 | 7c27338ee73a2bd642ba3359faaec395914175a2 | refs/heads/master | 2023-08-02T20:12:39.321029 | 2023-05-30T03:03:48 | 2023-05-30T03:03:48 | 179,046,113 | 23 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,950 | c | /**
* matrix_ff2.c
* NTS-KEM
*
* Parameter: NTS-KEM(13, 80)
*
* This file is part of the reference implemention of NTS-KEM
* submitted as part of NIST Post-Quantum Cryptography
* Standardization Process.
**/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "matrix_ff2.h"
#include "m4r... | [
"github@pureftpd.org"
] | github@pureftpd.org |
024f2819bc802dffef6cbc46fb34a14cc61b523a | 9fe047529a5ff61353498b4fe9f7e9df7933791a | /app/src/main/cpp/include/openssl/obj_mac.h | 4ebb5045a4f59fcf69de77bdb88830cab08ac320 | [] | no_license | zhuyiif/gmssl-android-demo | a8ff7ec9d01ba562f7cfd0b6b7e8d991677b6492 | f2506f7c505e56a183c20a80e74f8e8945b8cf05 | refs/heads/master | 2020-03-27T06:40:21.226809 | 2018-08-28T01:03:44 | 2018-08-28T01:03:44 | 146,125,705 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 214,414 | h | /*
* WARNING: do not edit!
* Generated by crypto/objects/objects.pl
*
* Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in t... | [
"pan8664716@gmail.com"
] | pan8664716@gmail.com |
13ec77ac82bc99d4bf363b55428e7cff7d8e0a57 | bff6acb74a809f8ffb37b312307ae7d7a22dd2aa | /threadpool/task_queue.h | 6a5a565142bc1c274acf072123f2a9112bcf2a19 | [] | no_license | vroad/nPool | 5340d255255f9e94b2115ca4a46b52498f30e728 | ff8c7a04bfa9da2b8c1cc7efddb8f2060d1de328 | refs/heads/master | 2021-01-17T05:15:37.010479 | 2015-09-18T10:14:37 | 2015-09-18T10:14:37 | 36,556,071 | 2 | 0 | null | 2015-05-30T11:51:20 | 2015-05-30T11:51:20 | null | UTF-8 | C | false | false | 3,876 | h | #ifndef _TASK_QUEUE_H_
#define _TASK_QUEUE_H_
/*---------------------------------------------------------------------------*/
/* FILE INCLUSION */
/*---------------------------------------------------------------------------*/
#include "synchronize.h"
/*---------------------------------------------------------------... | [
"ivan.hall@gmail.com"
] | ivan.hall@gmail.com |
846cf9246df344e4aeb3aa2b9ecdc666e9772d1b | 225e7f3b681f396595bf189eba9aa1c592769f48 | /ports/k210-freertos/mpy_support/omv/include/ide_dbg.h | 4ce8f26eb416e777b9f7b2524037cce17b1bb3d2 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | hypercross/MaixPy | 112f05690d2c9b7c50df3b378eb1d0c346640bff | 9122c699649579705bd4b18c603e6c3f18483f7f | refs/heads/master | 2020-05-19T02:35:16.833346 | 2019-05-03T16:11:03 | 2019-05-03T16:11:03 | 184,783,114 | 0 | 0 | null | 2019-05-03T15:55:43 | 2019-05-03T15:55:42 | null | UTF-8 | C | false | false | 2,146 | h | /*
* This file is part of the OpenMV project.
* Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com>
* This work is licensed under the MIT license, see the file LICENSE for details.
*
* USB debug support.
*
*/
#ifndef __IDE_DBG_H__
#define __IDE_DBG_H__
#include "stdint.h"
#include "stdbool.h"
... | [
"czd666666@gmail.com"
] | czd666666@gmail.com |
8f0e6c42f55c2da13a2ca7209a45237277891405 | 3bad37eb5cf6e9a42fd49102ca94390a9e56f916 | /ps_based/thirdparty/librdkafka-master/src/rdwin32.h | 65db4be56b96d50b2c9b00c599fb5710d398ee37 | [
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | tangzhenyu/Distributed_Machine_Learning | 1d93093c0343cff596267e99e28654b9c114c1ba | 061d32cce5990eff3958585bda7b122e1a3c929e | refs/heads/master | 2021-08-12T01:44:29.183267 | 2017-11-14T08:59:18 | 2017-11-14T08:59:18 | 110,665,406 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,748 | h | /*
* librdkafka - Apache Kafka C library
*
* Copyright (c) 2012-2015 Magnus Edenhill
* 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 the above cop... | [
"zhenyutang@sohu-inc.com"
] | zhenyutang@sohu-inc.com |
0d8866286fa82de6bd6b8f3202afa7dfb825dfe8 | 7689de51f8641eb43493685e8cbf962d1b79c9fb | /pmonitor/pmonitor.h | 30e73ca0515181a11b19bebf08e786205dd49a5e | [] | no_license | sPHENIX-Collaboration/online_distribution | f229323fc848092d873524ab16458eb5bfc0ea5e | f87aeaacc79f8b7babad8804e648b0f87a6e01db | refs/heads/master | 2023-09-01T09:35:33.711931 | 2023-08-24T15:56:35 | 2023-08-24T15:56:35 | 84,598,252 | 4 | 18 | null | 2023-06-28T23:13:03 | 2017-03-10T20:29:17 | C++ | UTF-8 | C | false | false | 1,539 | h | #ifndef __PMONITOR__
#define __PMONITOR__
#include <TVirtualPad.h>
#include <TThread.h>
#include <Event/Event.h>
#include <Event/EventTypes.h>
int pstatus ();
int ptestopen ();
//int petopen (const char * etname);
//int poncsetopen (const char ... | [
"purschke@bnl.gov"
] | purschke@bnl.gov |
37aebc85f9bc1124e26d108e3f951af8b478ab0e | 948943974bd1a0ebecaa19f5bbbac690baf716f4 | /kinect_draw/draw.c | d49dd5cc22ca58d988056a31af97dbff44eea95a | [] | no_license | TravisCG/KinectTutor | 2bcaa23854c28443f2b7ba33db0d63b340d8d39d | 6396faad533ff358ddfdd4d7aeb471472985dea1 | refs/heads/master | 2020-04-07T12:16:21.504393 | 2014-02-17T12:19:42 | 2014-02-17T12:19:42 | 2,845,815 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,174 | c | #include <stdio.h>
#include <stdlib.h>
#include <libfreenect_sync.h>
#include <SDL.h>
#include <GL/gl.h>
void draw_depth(short *buffer, char *video, float *drawtable){
int i,x,y;
float depth;
float red,green,blue;
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POINTS);
for(i = 0; i < 640*480; i++){
... | [
"buldozer88@hotmail.com"
] | buldozer88@hotmail.com |
785a8a9db18e0a8e0c0035a07797f5408f2e0463 | e1c04357f71fdbc6eb308ecc0e6a88a8be1358bb | /Lab09/califas.c | 7db0104308536b7be90cdbbd2942d80116e3901c | [] | no_license | MemoOR/Progra1 | 00832dc1f634080bc8978c29e270cb199e685c14 | e1e55b7807fdc7dac825ac0db80e52dd961e6dbf | refs/heads/master | 2021-09-29T05:36:03.254224 | 2021-09-15T05:19:00 | 2021-09-15T05:19:00 | 122,997,699 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 409 | c | //Guillermo Ortega Romo 30/10/17
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main()
{
srand(time(0));
int notas[2][10];
int tmp;
for (int i=0;i<2;i++)
{
for(int j=0;j<10;j++)
{
notas[i][j]=rand()%5+5;
printf("%d%s",notas[i][j], (j==9) ? "\n\n" : ", ");
}
... | [
"dethkarz2009@hotmail.com"
] | dethkarz2009@hotmail.com |
4d93e48b6d109665a0e171f38406105471bec0c8 | 48e4c9712b38a90b819c84db064422e1088c4565 | /toolchains/motoezx/qt/include/UTIL_FONT_Factory_iType.h | 28e2a85f92a015d6ac82503ef84028824d4ffb79 | [] | no_license | blchinezu/EZX-SDK_CPP-QT-SDL | 8e4605ed5940805f49d76e7700f19023dea9e36b | cbb01e0f1dd03bdf8b071f503c4e3e43b2e6ac33 | refs/heads/master | 2020-06-05T15:25:21.527826 | 2020-05-15T11:11:13 | 2020-05-15T11:11:13 | 39,446,244 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 36 | h | ezxappbase/UTIL_FONT_Factory_iType.h | [
"eu.gabii@yahoo.com"
] | eu.gabii@yahoo.com |
82f37b2852abcf2ead997412aadb7d983f028166 | 9250c1e4685b1bfb689325f2a3c58e933e738791 | /src/libs/frontEnd/fortTree/StmtFunc.C | 4d39ea28c0607168d00588d1403c77000502feb0 | [] | no_license | canliture/DSystem | a58ba3ca867b16a69cd0e35125aeb66f20641f96 | 7810a6423ae4435d336374195743e1f0cec94b0c | refs/heads/master | 2023-03-15T22:54:11.021114 | 2020-11-17T18:08:36 | 2020-11-17T18:08:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,656 | c | /* $Id: StmtFunc.C,v 1.3 1997/03/11 14:29:52 carr Exp $ */
/******************************************************************************/
/* Copyright (c) 1990, 1991, 1992, 1993, 1994 Rice University */
/* All Rights Reserved */
/*****************... | [
"carr"
] | carr |
0be07d2fdae81098d73a46ab04f809c7952f6857 | 88cc36c1f96f01f40adf6ca38538002401f19e89 | /lab2_system_calls/kalloc.c | b2d492623a45ecb54b838f8f2b6f45c62d3f9fc4 | [] | no_license | XingxingLi2017/mit_6.s081_fall20 | 0f1dda123d9574f3d9591752493cd3e7e2030f15 | 1bad3cfb5d99de37405c87d7820240806a8e717c | refs/heads/master | 2023-07-20T13:03:01.603001 | 2021-09-04T08:44:28 | 2021-09-04T08:44:28 | 397,436,113 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,854 | c | // Physical memory allocator, for user processes,
// kernel stacks, page-table pages,
// and pipe buffers. Allocates whole 4096-byte pages.
#include "types.h"
#include "param.h"
#include "memlayout.h"
#include "spinlock.h"
#include "riscv.h"
#include "defs.h"
void freerange(void *pa_start, void *pa_end);
extern char... | [
"xingxingli2017@gmail.com"
] | xingxingli2017@gmail.com |
c0d4c891128eba6bb22e22c77acfa5966051683e | ad79dc448d048912a3d39bb77293600d80727001 | /esp-idf/examples/protocols/openssl_client/main/openssl_client_example_main.c | cd9648a0818acc25effadeb59d23f7c65bff84e1 | [
"Apache-2.0",
"CC0-1.0",
"LicenseRef-scancode-public-domain"
] | permissive | ghsecuritylab/micropython_esp32_local | d94e1c12b37d0523f7d3158f7f77af275c581502 | 54234d75b0737ceb28c1ad9a421576a974571740 | refs/heads/master | 2021-02-26T13:17:55.948635 | 2018-01-24T06:36:41 | 2018-01-24T06:36:41 | 245,527,954 | 0 | 0 | null | 2020-03-06T22:27:58 | 2020-03-06T22:27:57 | null | UTF-8 | C | false | false | 6,345 | c | /* OpenSSL client Example
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
#include... | [
"1143943623@qq.com"
] | 1143943623@qq.com |
66d9d8ab0a88d438a7b77201fe20d31fa9bfc856 | af47c9317e6988e88a39ffed09c1b566537170e6 | /el.c | 75732d825db9457b2b44096099f9260564ceb74b | [] | no_license | E-jeevitha/su | f8c03ba3f7a941ca540b94ccfd52ee95359a3356 | b63274527af2bbce21063e1fe5e40151acb9ed0d | refs/heads/master | 2021-01-01T17:50:29.494853 | 2017-07-24T10:13:28 | 2017-07-24T10:13:28 | 98,172,134 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 390 | c | #include<stdio.h>
int main()
{
int a[10],i,j,p,q,t,count=0,s;
scanf("%d%d",&p,&q);
for(i=0;i<p;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<p;i++)
{
if(t<q)
{
t=a[i]+a[i+1];
a[i+1]=t;
count++;
}
else
{
... | [
"noreply@github.com"
] | E-jeevitha.noreply@github.com |
8be78277891459b9c12aeb5c9e86b3c04113cf7a | ceb71917a94c8ce998b9cdc4f0aff3a8c9716482 | /C/Reading from CSV files/LabActivity/Student.c | c4f491fdcd718d33716182fd0e59b025875cb6ef | [] | no_license | Aragorn9756/CodePortfolio | 07aa9b757733476fd9c72d8d9b6025c81d9f0a40 | 6c10df88314e11202be352c155362d6a8c2a7c95 | refs/heads/master | 2023-08-19T08:32:47.421305 | 2021-09-27T00:25:01 | 2021-09-27T00:25:01 | 337,229,498 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,368 | c | /* File: Student.c
* Author: Luke Hindman
* Date: Sun 01 Nov 2020 09:16:37 AM PST
* Description: Stuct and functions for working with Student data
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "Student.h"
Student * CreateStudent(const char lastname[], const char firstname[], int id, int sc... | [
"45053510+Aragorn9756@users.noreply.github.com"
] | 45053510+Aragorn9756@users.noreply.github.com |
d259a8e4c3e478452c1ec592374999f1a50b63a1 | 3f9195216bdaa2e132465ac2ba3010a8c1821588 | /Extra Practices/10.Integer Output from start to End in Ascending order..c | b868749c17280a19a96e1fb23235c9239a0aa8fd | [] | no_license | TahmidulAlam/CSE115L | 1acbf17d3b855f3280f4462d105b08b87bd3381d | 9dac0367bc6cb51e7879c2ee37bd2e3d15ef7e48 | refs/heads/master | 2022-12-19T16:55:45.319325 | 2020-10-20T05:57:08 | 2020-10-20T05:57:08 | 281,352,899 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 940 | c | #include<stdio.h>
void listNumbersAsc(int start, int end); //declaring function prototype
int main()
{
int n1, n2; //declaring integer variables
printf("Enter the starting number:");
scanf("%d", &n1); //taking inp... | [
"you@example.com"
] | you@example.com |
8de6d08d58074509b1fb6df976d6322db5ce02d1 | 8afb5afd38548c631f6f9536846039ef6cb297b9 | /MY_REPOS/misc-experiments/_FIREBFIRE/nginx/src/os/win32/ngx_time.h | 6c2f806f306853a3db48cada2843da87274450af | [
"MIT",
"BSD-2-Clause"
] | permissive | bgoonz/UsefulResourceRepo2.0 | d87588ffd668bb498f7787b896cc7b20d83ce0ad | 2cb4b45dd14a230aa0e800042e893f8dfb23beda | refs/heads/master | 2023-03-17T01:22:05.254751 | 2022-08-11T03:18:22 | 2022-08-11T03:18:22 | 382,628,698 | 10 | 12 | MIT | 2022-10-10T14:13:54 | 2021-07-03T13:58:52 | null | UTF-8 | C | false | false | 1,193 | h |
/*
* Copyright (C) Igor Sysoev
* Copyright (C) Nginx, Inc.
*/
#ifndef _NGX_TIME_H_INCLUDED_
#define _NGX_TIME_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
typedef ngx_rbtree_key_t ngx_msec_t;
typedef ngx_rbtree_key_int_t ngx_msec_int_t;
typedef SYSTEMTIME ngx_tm_t;
typedef FILET... | [
"bryan.guner@gmail.com"
] | bryan.guner@gmail.com |
909ce411c5192b2e263f742835110efc343e77af | f7860a663a68fcd8decba7025c98b203ecaabdc4 | /sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/fuc/gk208.fuc5.h | 53df48b30203331926bbdc5ad3b1c61e4468a5e7 | [] | no_license | ozaki-r/netbsd-src | 0ea0b6c0ea9fb825ccd50c574629dfb2b1ed0179 | e8ddeb9cad6a8b3b515e78cb13338cb76b85d269 | refs/heads/wireguard | 2022-11-07T02:59:48.282889 | 2019-03-24T02:41:28 | 2019-03-24T04:18:09 | 20,287,693 | 11 | 2 | null | 2019-05-11T11:02:34 | 2014-05-29T08:40:47 | null | UTF-8 | C | false | false | 24,367 | h | /* $NetBSD: gk208.fuc5.h,v 1.2 2018/08/27 04:58:35 riastradh Exp $ */
uint32_t gk208_pmu_data[] = {
/* 0x0000: proc_kern */
0x52544e49,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
0x00000000,
... | [
"riastradh@netbsd.org"
] | riastradh@netbsd.org |
bb321adbeee2837fb8b270a0b1d64612dd2b13b3 | 8e951d6abd1bd4e8ef11a31f6bc8d3a6b19d3f0c | /src/Processor/Processor.V1_1_2/Processor.V1_1_2.c | fdab5f3ecc40ef3ba4c47a34d5d0b68426752467 | [] | no_license | changab/Redfish-JSON-C-Struct-Converter-Lib | dda6c249855666933557756d7917ee0814f6a1e4 | ee664514e49e662874e0ec711343514b6081fd1f | refs/heads/master | 2022-12-21T07:23:01.255647 | 2019-06-13T06:48:03 | 2019-06-13T06:48:03 | 297,817,037 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 26,607 | c | //
// (C) Copyright 2018-2019 Hewlett Packard Enterprise Development LP<BR>
//
#include"Redfish_Processor_v1_1_2_CS.h"
#include <stdlib.h>
#include <string.h>
#include <jansson.h>
RedfishCS_bool SupportedRedfishResource (RedfishCS_char *Odata_Type, RedfishCS_char *NameSpace, RedfishCS_char *Version, RedfishCS_char *... | [
"noreply@github.com"
] | changab.noreply@github.com |
33532bf498c780d5dcc67f9021ab42bd99eeac99 | 72021e57554f473d7813ae624948b0e83676e01e | /parser/bool.h | 81a10229e5e50f15e6e1cc0da79bd1dc8f86e3ec | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | rfoos/acvpparser | 5ce80379f3e4959ae7d18386bf03e51c8791e71b | c5a0e9f984ac32a0e09d3471545483ab11efd3bf | refs/heads/master | 2022-11-09T05:19:09.499480 | 2020-06-25T17:43:33 | 2020-06-25T17:43:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,116 | h | /*
* Copyright (C) 2018 - 2020, Stephan Mueller <smueller@chronox.de>
*
* License: see LICENSE file in root directory
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, A... | [
"smueller@chronox.de"
] | smueller@chronox.de |
c7d258eacbed84b16590462c98686aa12ba4d016 | cd844ce7a746bf575eb455222bc53d64b17181e9 | /ch08_udpcliserv/udpcli05.c | cb27af1adc4d1743b72d78c4d53e3b3b7ad073dc | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | GongCun/UNIX_Network_Programming_3thEd_Volume1 | e7ec83b0e068da1c2461f8ca70b07a0e76e0426b | 9bce5d8994d2f458447644fbc20908a4215bb556 | refs/heads/master | 2021-01-10T23:47:52.468532 | 2016-12-21T12:24:55 | 2016-12-21T12:24:55 | 61,408,223 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 512 | c | #include "pracudp.h"
int main(int argc, char **argv)
{
int sockfd;
struct sockaddr_in servaddr;
if (argc != 2)
err_quit("Usage: %s <IPaddress>", *argv);
bzero(&servaddr, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(SERV_PORT);
if (!inet_aton(argv[1],... | [
"Gong Cun"
] | Gong Cun |
0213c4512ceb2c7d24d112b6c0dc15238c16343b | caf26a8bb8ffe570e699d9c968c2b447b1f399ba | /firmware/Back_FC/applications/icm20602.h | 2a2bca5a1efdacbb25abdfa5ddc4c224b7b57167 | [] | no_license | bygreencn/Oldx_fly_controller | d07bfd00b29b6ebe4d1c76cc7eb02240ca6d47aa | 021cd924378f77e56d89289ee5c4e864ea787402 | refs/heads/master | 2020-04-13T08:44:30.883246 | 2018-12-25T14:44:50 | 2018-12-25T14:44:50 | 163,090,609 | 1 | 2 | null | 2018-12-25T14:45:53 | 2018-12-25T14:45:52 | null | UTF-8 | C | false | false | 17,319 | h | #ifndef _DRV_ICM20602_H_
#define _DRV_ICM20602_H_
#include "include.h"
#define MPU_WHOAMI_20602 0x12
#define MPUREG_XG_OFFS_TC 0x00
#define MPUREG_YG_OFFS_TC 0x01
#define MPUREG_ZG_OFFS_TC 0x02
#define MPUREG_X_FINE_GAIN 0x03
#de... | [
"golaced@163.com"
] | golaced@163.com |
0933d55c99fbda4fab1a342ed88734520b0bec6a | b22c7824831787b669c9ae934ec6a2f0fe6769ac | /Data Structure/src/stack.c | 8832589a4888458cc2397e3241f7f844648e91db | [] | no_license | omeravioz/C-Projects | 55ff2ac60061878b0893c31d8b2724426cacc9c7 | 70c08e66417fce6f9feca77260f9b7646186eba9 | refs/heads/master | 2023-01-19T00:42:05.066770 | 2020-11-21T10:29:36 | 2020-11-21T10:29:36 | 314,782,504 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,510 | c | /********************************************
File name : stack.c
Author : Omer Avioz
Reviewer : Dafna Kadosh Mahler
Infinity Labs OL95
*******************************************/
/* External Libraries
-------------------------------------------*/
#include "stack.h"
#include <stddef.h> /* size_t */
#include <str... | [
"omeravioz2@gmail.com"
] | omeravioz2@gmail.com |
c56983db8f0a4f3db3521aff80dcbd34bf1677da | fcf92f562434a3dda58e40e78b610f3385eef7f2 | /PrimerC++/6/6_8_9/test.h | a6100587e3036d69cb83f8a9909facb0e3a06155 | [] | no_license | TestGoing/CPP | 4bc1d2ece492d7a7d480f7e33d524ead0bca74e5 | 001a99bfe574813f81ec71c1d9104a25ac85bbf6 | refs/heads/master | 2020-03-27T02:32:51.814844 | 2019-01-08T09:25:04 | 2019-01-08T09:25:04 | 145,797,589 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 98 | h | #ifndef TEST_H
#define TEST_H
int fact(int);
double myABS(double);
double myABS2(double);
#endif | [
"3054105120@qq.com"
] | 3054105120@qq.com |
4d868896192fb19dd1df9a44bc7e9801547687d2 | 50348945fee83e42c627f87e3454b2df14cb106a | /cutil_math.h | 88ee81aa798233bb7869f196c26290fa3c44eb5c | [] | no_license | wangkepfe/Raytracer | 5a1c129934c328cb99941b6acca918aaac7abee8 | 1d7eb9091369de46b907c2ce2d934ef3acab4545 | refs/heads/master | 2020-03-22T08:44:34.115747 | 2018-09-18T09:48:33 | 2018-09-18T09:48:33 | 139,787,684 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,316 | h | #ifndef CUTIL_MATH_H
#define CUTIL_MATH_H
#include "cuda_runtime.h"
////////////////////////////////////////////////////////////////////////////////
typedef unsigned int uint;
typedef unsigned short ushort;
#ifndef __CUDACC__
#include <math.h>
inline float fminf(float a, float b)
{
return a < b ? a : b;
}
inline... | [
"wangkepfe@gmail.com"
] | wangkepfe@gmail.com |
b22086fce6c837524b15310a62dbc06388ea2b91 | 0744dcc5394cebf57ebcba343747af6871b67017 | /os/arch/xtensa/src/xtensa/xtensa_schedsigaction.c | 2ec3d1d0272eba17bf882bedbbf78256bed24416 | [
"GPL-1.0-or-later",
"BSD-3-Clause",
"ISC",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive",
"Apache-2.0"
] | permissive | Samsung/TizenRT | 96abf62f1853f61fcf91ff14671a5e0c6ca48fdb | 1a5c2e00a4b1bbf4c505bbf5cc6a8259e926f686 | refs/heads/master | 2023-08-31T08:59:33.327998 | 2023-08-08T06:09:20 | 2023-08-31T04:38:20 | 82,517,252 | 590 | 719 | Apache-2.0 | 2023-09-14T06:54:49 | 2017-02-20T04:38:30 | C | UTF-8 | C | false | false | 12,968 | c | /******************************************************************
*
* Copyright 2018 Samsung Electronics All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ... | [
"qiang3.zhang@samsung.com"
] | qiang3.zhang@samsung.com |
dd4ec2e40d4356d551f49d973656ff770a2a1911 | 8b351aaef0d1555b994e335fa6370772966cacb6 | /splash.c | 70ec7d03fb044b63ceb350ec78e0faa1a871f69c | [] | no_license | PedroNascimento1702/ProjetoFinal_LGA1 | fb193e44597af2901a2096f3723219f08a730dfc | e95a3ff3838194322c5340bf94be7cd0c40a24d1 | refs/heads/master | 2023-01-15T12:49:19.530015 | 2020-10-23T00:36:57 | 2020-10-23T00:36:57 | 267,381,358 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 514 | c | /* Bibliotecas */
#include <stdio.h>
#include <stdlib.h>
#include "libCoresSom.h"
#include <time.h>
/* Corpo do programa */
int main()
{
system ("color 4E");
system ("cls");
system ("mode 38,20");
system("logo");
textcolor (YELLOW,RED); printf("\n\n\n Mickey & Donald Drive Thru");
gotoxy(19,25);
B... | [
"37814676+PedroNascimento17@users.noreply.github.com"
] | 37814676+PedroNascimento17@users.noreply.github.com |
bd9dbe1f3ea624f02688ddbffbaeb0219fa7b53c | b83b735254dcabc7ea5610f30701aaf4d7fd3633 | /Pods/Headers/Public/React/React/RCTRootViewDelegate.h | e282dc8253c6d82e3c21e3eba1691ac966b50fc4 | [] | no_license | YWHelp/ReactNativeLearn | 19ccf852f1f33ffb05371922a517726e469aaf8e | 1cfe48975e5250ab7224557903c41bcd4b0b0390 | refs/heads/master | 2020-04-05T03:12:10.627678 | 2018-11-19T05:52:06 | 2018-11-19T05:52:06 | 156,504,967 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 81 | h | ../../../../../Modules/node_modules/react-native/React/Base/RCTRootViewDelegate.h | [
"wangyawei@021.com"
] | wangyawei@021.com |
aeaf45b65af0aa9497a8ddb169fca7c6d7ab82e3 | 8c767c0fa639fb32e59d675b1940281df7911c29 | /es34.c | 7c2dc8bd6b3a14976743bbe15bfd1972cc9f2f86 | [] | no_license | MonoS/Parthenope-1oAnno-PROG2 | aecea0c69a985bd9ba5be91a0aeef70b087fbc57 | d24fe77cb53d504dfcbee1487cf4a48398a1ac62 | refs/heads/master | 2020-06-02T02:24:58.991815 | 2014-09-25T12:40:43 | 2014-09-25T12:40:43 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 2,022 | c | #include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
const int DIM_BUFFER = 20;
///FILE DI INPUT: casa56789012345678casa34567890casa5678casa345678
///FINE BUFFER : -------------------!-------------------!-------!
///OUTPUT : 4
int RicercaViaBuffer(FILE* input, char* substr);
int mai... | [
"MonoS94@gmail.com"
] | MonoS94@gmail.com |
c271fd83030acba0a90e0559726512bd0e407807 | fa463334d80659fdce1f310741971df1cea882eb | /msp430-gcc-support-files/include/msp430fr59891.h | bbe90e457ba31f57fc9ad7eb604a838344b44f80 | [
"MIT"
] | permissive | YuhanLiin/msp430_svd | 77531d126ed0a5340faa63375db7f82b8ca3d615 | e090d5176e8a2fdf2edf56d5abf3ba0709af951e | refs/heads/master | 2020-07-09T18:59:45.752510 | 2019-08-23T19:04:25 | 2019-08-23T19:04:25 | 204,055,653 | 0 | 0 | MIT | 2019-08-23T19:06:45 | 2019-08-23T19:06:45 | null | UTF-8 | C | false | false | 393,915 | h | /* ============================================================================ */
/* Copyright (c) 2017, Texas Instruments Incorporated */
/* All rights reserved. */
/* ... | [
"vadzim.dambrouski@promwad.com"
] | vadzim.dambrouski@promwad.com |
7fa9155c83dcc47ef5258f2184e03b3afc9f1c27 | 1f8775fca127fd251a135c6ea6cd4ece3c449c53 | /asn1c/rtxmlsrc/rtXmlpDecAny.c | 4acdfd514e2cf4b83f366e9039d3785cfbf3e249 | [] | no_license | MobiFun/Comba_IUH | 130237c7eb425c99eddb7bb36e809be75e96dae1 | 4ed578d38fec856b9d55cd0290a68760ce876db9 | refs/heads/master | 2020-04-22T11:24:27.289829 | 2021-11-29T00:46:42 | 2021-11-29T00:46:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,016 | c | /*
* Copyright (c) 2003-2009 Objective Systems, Inc.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise ma... | [
"jlcbj@126.com"
] | jlcbj@126.com |
94c87549ebb1bc0cf08d1b18e7ae0742ccbcc5f0 | 09c98119a5fbaf5b89891e6ca009d2258028b724 | /Projects/STM32446E_EVAL/Examples/TIM/TIM_OCActive/Inc/main.h | 62219d70821f41d65b6dc8abf03094b95a89adf6 | [
"BSD-2-Clause"
] | permissive | koson/STM32Cube_FW_F4 | bf20f632625181189ea0b47e96653117a8946cd9 | 58e9769a397768882632079863e2453803951a82 | refs/heads/master | 2020-12-05T02:03:49.120409 | 2019-09-21T06:45:53 | 2019-09-21T06:45:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,681 | h | /**
******************************************************************************
* @file TIM/TIM_OCActive/Inc/main.h
* @author MCD Application Team
* @version V1.1.3
* @date 29-January-2016
* @brief Header for main.c module
***********************************************************************... | [
"vuhungkt18@gmail.com"
] | vuhungkt18@gmail.com |
75a3da545f8189054c90806e1a86ab8a32d70184 | 0fbe73abcb8f8226106657474f9d1f6bb10a36d7 | /include/uzhix/idt.h | a5af3fae99ace2c141fe26691078a5de276645f7 | [] | no_license | MrOnlineCoder/Uzhix | 179569bf98438d1dcfc73445cf8fefd069958dbf | 6eef58b8d554026b7b1e19d7370962f4c50de09e | refs/heads/master | 2021-04-29T15:08:30.044425 | 2018-07-22T22:40:48 | 2018-07-22T22:40:48 | 121,791,323 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 623 | h | /*
Uzhix Project
(c) 2018 MrOnlineCoder (Nikita Kogut)
github.com/MrOnlineCoder
See license in LICENSE file
*/
#ifndef _IDT_H
#define _IDT_H
struct idt_entry {
unsigned short base_low; // offset bits 0..15
unsigned short sel; // a code segment selector in GDT or LDT
unsigned char zero;
unsigned ... | [
"glinka1202@gmail.com"
] | glinka1202@gmail.com |
05838868e3fcaf678203c81a3d03d3eaca0f707c | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/fce17908-5489-4d48-91a1-a5075c8c65d4.c | 2cfb10f2fce2b3ee42afa782bb250a403216b070 | [] | 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=11;
int k;
int l;
j = 53;
l = 64;
k = i/j;
l = i/j;
l = l-j;
l = i%j;
l = i+j;
l = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
49472f1a696fe57dfb784d1361020df656d3de20 | e47ee06e1e81eba65b39b074dfab5bf0fbb803f9 | /sys/drivers/dma.h | 3c9aa8915d9161172afa68091f03fd88fd4f2fe7 | [
"LicenseRef-scancode-other-permissive"
] | permissive | DougThompson1976/Lua-RTOS-PIC32MZ | 6ab0d80d96dc9b2591b8467bd91ff297ca23c21f | 122c62321eca6476d8bf25a328a260741830e3d2 | refs/heads/master | 2020-03-08T23:55:29.298480 | 2016-11-17T14:31:25 | 2016-11-17T14:31:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 109 | h |
#ifdef PLATFORM_ESP8266
#endif
#ifdef PLATFORM_PIC32MZ
#include <sys/drivers/platform/pic32mz/dma.h>
#endif | [
"jolive@iberoxarxa.com"
] | jolive@iberoxarxa.com |
2c4715c256e1acd056b89f1c44e75b69d2f841bf | 0cbaa1ca3f94b10afaa25286a7696f86342dffb2 | /libft/srcs/ft_putstr.c | c2d276d6d823c752be1e64337bf3d0e9e7790e78 | [] | no_license | ArthurBK/42_malloc | 582359fdea9fa8823b587f26b8bc19d8484748a5 | ee216ad84e4ab90cab2acd018bcee15275a203ec | refs/heads/master | 2021-01-20T03:11:59.040320 | 2018-02-15T18:05:21 | 2018-02-15T18:05:21 | 88,180,199 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,010 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: ... | [
"abonneca@student.42.fr"
] | abonneca@student.42.fr |
87e74c55f759f71e58c0809056b230e2f4015a76 | 16e6dfbf2528b4c597e3ae449eb9e23fcbc91882 | /src/vulkan/render_pass/render_pass.c | d41a82a842ed2d5e1ce814ca0a5aa6b0bc308f1e | [
"MIT"
] | permissive | jammymalina/vkpixelcollision | 5c5c0fd1f1fc80312b07d3e689666e4eacc5268e | 249ffdaa90cbce690058cfdf124ff70597d74805 | refs/heads/master | 2021-12-16T10:10:01.222313 | 2021-10-24T23:11:18 | 2021-10-24T23:11:18 | 186,556,463 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,701 | c | #include "./render_pass.h"
#include "../functions/functions.h"
#include "../tools/tools.h"
void render_pass_init_empty(vk_render_pass *rp) {
rp->handle = VK_NULL_HANDLE;
rp->device = VK_NULL_HANDLE;
}
bool render_pass_init(vk_render_pass* rp, const vk_render_pass_create_info*
rp_info)
{
render_pass_i... | [
"jakub.jantosik@gmail.com"
] | jakub.jantosik@gmail.com |
72c89a4f77c947f25e03b7e6fbe7de330caae8e1 | fd2837aef61176323fb6d8eb647b20debe7995f5 | /CSAPP/sa-bAbi/working/add5692b21.c | e9936268ada39a7737844d33790243e163269254 | [] | no_license | callMeBigBen/CourseWork | b0ef17b5cfe07ba61404abd68812d2b56393db87 | 41d68c07f7b1411dbca7dc7d5e2efeceb9edee27 | refs/heads/master | 2020-04-10T08:18:21.617984 | 2019-05-22T05:26:38 | 2019-05-22T05:26:38 | 160,902,512 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 499 | c | #include <stdlib.h> // Tag.OTHER
int main() // Tag.OTHER
{ // Tag.OTHER
int* entity_7; // Tag.BODY
int* entity_1; // Tag.BODY
entity_7 = new int(rand()); // Tag.BODY
int entity_6; // Tag.BODY
entit... | [
"33094628+callMeBigBen@users.noreply.github.com"
] | 33094628+callMeBigBen@users.noreply.github.com |
b9830259993eb19c1bc7a06a45bea2cfde331b96 | ac2529383cd8592c98b810f6bee0b192404980c8 | /src/cartesian_trajectory_msgs/build/cartesian_trajectory_msgs/rosidl_generator_c/cartesian_trajectory_msgs/msg/cartesian_trajectory__type_support.h | 8cb8c678a4fcf9718d4c7a2b7ac4231ceb062cde | [] | no_license | Surfacerobot/crs_application_sizen | 3ff1fa79ad6e9b2f065699e9fab28a3ed458feeb | 6864fc42be96c514fc3d1fac7b77386781764471 | refs/heads/master | 2023-08-23T20:44:08.862661 | 2021-10-17T06:18:47 | 2021-10-17T06:18:47 | 416,222,005 | 1 | 0 | null | 2021-10-17T06:18:48 | 2021-10-12T07:03:52 | C++ | UTF-8 | C | false | false | 994 | h | // generated from rosidl_generator_c/resource/idl__type_support.h.em
// with input from cartesian_trajectory_msgs:msg/CartesianTrajectory.idl
// generated code does not contain a copyright notice
#ifndef CARTESIAN_TRAJECTORY_MSGS__MSG__CARTESIAN_TRAJECTORY__TYPE_SUPPORT_H_
#define CARTESIAN_TRAJECTORY_MSGS__MSG__CARTE... | [
"shizeng007@gmail.com"
] | shizeng007@gmail.com |
b5494f4a542b39a3e4592e69dbaa30252bc7f205 | 1bac7772f7555b251dd267a8e7c98bcef23514e0 | /Ejemplos y Utilidades/ejemplos mikroC/blink/LED blink.c | 2678bcd01af60ad9c157e1d45b9e95680331ca46 | [
"CC0-1.0"
] | permissive | 2BRobots/ThunderBolt | a184ef00da1779cdb55e083b2d74582171d39899 | f90425804e11b0c067ee20675033f12cd3fe45c2 | refs/heads/master | 2021-06-08T16:21:14.307503 | 2016-12-17T02:21:28 | 2016-12-17T02:21:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 394 | c | #pragma orgall 0x1000
//mas informacion sobre las directivas org en http://download.mikroe.com/documents/compilers/mikroc/pic/help/goto_statement.htm
//el bootloader termina en la direccion de memoria ox1000, escribir el codigo a partir de aqui.
void main() org 0x1000
{
TRISC = 0b00000001;
PORTC = 0b00000000;
w... | [
"dafrelectronics@outlook.com"
] | dafrelectronics@outlook.com |
36d83a80a216e707ca6b04622f814d4935ea6006 | bc92c4595876f2dcbd916d2e071213caa5f60c90 | /a3/main.c | 1e64afaf43e8bd8dea171535681091a496cd2451 | [] | no_license | aleale98/esercizi_lab_SO | 1cb6b214ecd4a0e6ba601a3c6033fd657ed8abd9 | 1f67293a8621df6670638b508bdd9e95c0d7feb1 | refs/heads/main | 2023-01-24T09:02:37.103940 | 2020-11-21T14:14:25 | 2020-11-21T14:14:25 | 308,759,777 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 337 | c | #include <stdio.h>
#include <stdlib.h>
int main(){
char c;
printf("Inserisci un carattere: ");
scanf("%c", &c);
if((c>='a' && c <= 'z') || (c>='A' && c<='Z')){
printf("Lettera");
}else if(c >= '0' && c <= '9'){
printf("Numero");
}else{
printf("Non è alfanumerico");
}... | [
"alessio.mungelli@edu.unito.it"
] | alessio.mungelli@edu.unito.it |
b6c05a376e7a6fa96aca346f5f810a6a7856f3c9 | 0408c17fe304dd00aa3784d084af05d3f7358147 | /lib/oem/cert/weos/client10.key.c | 4ff105e506d1faaff8d7893fd2160de5b039d449 | [] | no_license | ljf10000/bigap | 43a17804198a28e5b3f2e0c58d00bf0af30f2436 | 06a661594def31f4c19492d33686a7bf5bcc820b | refs/heads/master | 2021-12-02T08:25:28.593189 | 2019-10-25T04:23:16 | 2019-10-25T04:23:16 | 18,519,195 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,561 | c | #undef OS_CERT_client_key10
#define OS_CERT_client_key10 \
"LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlTS1FJQkFBS0NCQUVBbk5xTmpHNUVU" \
"ZFdRcHNPVkdFb3RmbjNsdVdhSWg5MWY3dWVGUGM5b3k4c0syRUpFCnIwb005Qmt5TEhWdStGNisv" \
"d281ajRYeEw1TXRFNTIwWTNWSlA2VXMwbEJZTlIybXk0d09rTDZNYnFidFBNYjgKWWhOOXR3UU44" \
"Z... | [
"l_j_f@163.com"
] | l_j_f@163.com |
eec5518fda4834d0cd2a3c0a44d15f7e69de534e | 9b3474aa8f54e2095d65fe5289d54ade5e8796f8 | /Tools/efficiency_comparison/efficiencyComparisonPlots.C | ac753ca41857e3be0bf05df7138e77bc6cf0392c | [] | no_license | battibass/MuonPOG | ecda4b28f8de4cbe4c76b506b9691f69def1b963 | e2018508ad81d6e4289d60c466798f9ea18b0b07 | refs/heads/master | 2020-04-06T05:29:13.452068 | 2016-04-24T13:28:03 | 2016-04-24T13:32:17 | 38,169,554 | 0 | 8 | null | 2016-06-02T09:21:50 | 2015-06-27T17:51:21 | C | UTF-8 | C | false | false | 38,988 | c | #include "TROOT.h"
#include "TRint.h"
#include "TStyle.h"
#include "TFile.h"
#include "TCanvas.h"
#include "TLine.h"
#include "TH1F.h"
#include "TH2F.h"
#include "TProfile.h"
#include "TEfficiency.h"
#include "TGraphAsymmErrors.h"
#include "THStack.h"
#include "TLegend.h"
#include "TTree.h"
#include "TBranch.h"
#includ... | [
"carlo.battilana@gmail.com"
] | carlo.battilana@gmail.com |
ab7d7e3008cde45c5312e5688f58253c53c6f17f | 499ffc5a97f6422cb473e9ddd4c5701d701d469c | /Internet/udp.c | 1796eba28bea7662cba57c3eb58b23fd0aa6fee0 | [] | no_license | alexandrmiee/train-test | 0b3d4923c8b798407f12f1cd7ba363a9be429297 | f671b6fcfc531c64343df79fdf68434106b896e7 | refs/heads/master | 2020-08-06T02:18:37.298242 | 2019-10-05T22:35:35 | 2019-10-05T22:35:35 | 212,797,959 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,845 | c | /*
* udp.c
* Autogenerated code from TrainFramework
*
* Created on: 2019-10-04T07:59:49.434Z
* Author: AL
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include "core-train.h"
#include "core-routes.h"
#include "core-utils.h"
#include "udp.h"
#include "json.h"
#include "f... | [
"alexandr.lukovnikov@whenspeak.ru"
] | alexandr.lukovnikov@whenspeak.ru |
f14bd865f1bb18c858e6d75fb8897f550e30d117 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/1764e584-603f-4823-af88-7afe89f2536a.c | 21ce147989e42794984c935bb5345f8a3e3d9e0e | [] | 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 | 253 | 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 = i/j;
l = i/j;
l = i%j;
l = l%j;
j = i-j*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
3cd81efd3e3ffcdadaea4055616e6f7f9519f852 | d37dbdf72bfa4a54897574d7443221389cfb551d | /os/practice/week9/print_mutex.c | 1133eb52a1d1656507366043f97cb233c9bc2964 | [] | no_license | SonMinWoo/hanyang3-1 | e5f989a9ab1601818d89915d1e5641b5c0e1ca2c | f3204deaf69ca703ab6372f3fed8ec9cecf51486 | refs/heads/main | 2023-05-31T21:15:19.114203 | 2021-06-24T08:18:38 | 2021-06-24T08:18:38 | 379,580,596 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,742 | c | /*
* Copyright 2021. Heekuck Oh, all rights reserved
* 이 프로그램은 한양대학교 ERICA 소프트웨어학부 재학생을 위한 교육용으로 제작되었습니다.
*/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define N 3
#define KNRM "\x1B[0m"
#define KRED "\x1B[31m"
#define KGRN "\x1B[32m"
#define KBLU "\x1B[34m"
i... | [
"mwson98@naver.com"
] | mwson98@naver.com |
f0aea25375b11bd2b03c4076bcb6d18dbf6ac423 | 9fb09695186a07861a569873e8915c57a23c3f5b | /hedyattack/cc1111_vcom.c | 9c04a0f792afa7b54e789b07b3817e0e37420e21 | [] | no_license | cutaway/hedyattack | bf94aad7749eea784352a9ef6b6b9d7990944683 | 465101ce84ecd6d5ff8ba69473aa0c15bb6c8477 | refs/heads/master | 2020-05-31T15:54:30.938200 | 2015-03-22T19:18:49 | 2015-03-22T19:18:49 | 32,690,627 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 10,735 | c | /*
* CC Bootloader - USB CDC class (serial) driver
*
* Adapted from AltOS code by Fergus Noble (c) 2011
* AltOS code Copyright © 2009 Keith Packard <keithp@keithp.com>
*
* 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
... | [
"don@inguardians.com"
] | don@inguardians.com |
9972985998b51ad254790f37b6db5f2ece0b4233 | 84a0ca000a704eff334b632d3ea996d870580f05 | /0x14-bit_manipulation/holberton.h | c42dda3ecd024a1f2062b81406f3b6609d41a80c | [] | no_license | Miguelro123/holbertonschool-low_level_programming | 6f6cd789491ce4702f0923a9fe4013bfa0896f4a | cccebd11cee192f26deae5b922f975d90a5ee385 | refs/heads/master | 2021-08-20T08:14:37.923248 | 2020-06-07T18:39:18 | 2020-06-07T18:39:18 | 192,715,344 | 2 | 3 | null | null | null | null | UTF-8 | C | false | false | 474 | h | #ifndef _HOLBERTON_M
#define _HOLBERTON_M
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int _putchar(char c);
unsigned int binary_to_uint(const char *b);
void print_binary(unsigned long int n);
int get_bit(unsigned long int n, unsigned int index);
int set_bit(unsigned long int *n, unsigned int index);
int... | [
"969@holbertonschool.com"
] | 969@holbertonschool.com |
f881780416dfaf55e660c9a24d0579bc1b92a306 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/AssemblyU2DCSharp_NgInterpolate_U3CNewTimerU3Ec__Iterator2DMethodDeclarations.h | d5921db0078619cc0236271fcdf347d0514c9bc6 | [] | 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 | 2,399 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// NgInterpolate/<NewTimer>c__Iterator2D
struct U3CNewTimerU3Ec__Iterator2D_t5034;
// System.Object
struct Object_t;
// System.Collections.IEnumerator
struct IEnumerator_t67;
// System.Collections.Generic.IEn... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
26d7295ad3bcb675e0d88eb7f68be4a674f56229 | 448bd1525eb2e4cc6ecaf63b20a057809f1fa2ac | /Homework/2078-02-14/program2.c | b2291f98332cc052457a2983b893e2b0fe9fb5e9 | [] | no_license | iamkaushalkb/BEI_CPROGRAMMING | 452ea3bf6d45cc1092ad213786fb3c04e9917c55 | 343f5a42e049eb8f3d21309727c27dee5c1798c2 | refs/heads/main | 2023-07-26T20:21:07.930390 | 2021-09-13T06:49:26 | 2021-09-13T06:49:26 | 363,627,811 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 422 | c | // Program to check prime numbers using function
#include <stdio.h>
#include <conio.h>
void main()
{
int num,res=0;
clrscr();
printf("\nENTER A NUMBER: ");
scanf("%d",&num);
res=prime(num);
if(res==0)
printf("\n%d IS A PRIME NUMBER",num);
else
printf("\n%d IS NOT A PRIME NUMBER",num);
getch();
}
int prime(i... | [
"noreply@github.com"
] | iamkaushalkb.noreply@github.com |
e8bd97d0f47bfaeccb8df7c5e04a07ddcda783e9 | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/NTOS/NDIS/PCIMAC/CM_CHAN.C | ac0e680be521fe43717a90806037b73fc4772feb | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,453 | c | /*
* CM_CHAN.C - channel allocation (for incoming) code
*/
#include <ndis.h>
#include <ndismini.h>
#include <ndiswan.h>
#include <mytypes.h>
#include <mydefs.h>
#include <disp.h>
#include <util.h>
#include <opcodes.h>
#include <adapter.h>
#include <idd.h>
#include <mtl.h>
#include <cm.h>
CM_C... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
2753daf568e2d4dd6d6c19103932f9e508770152 | 89c25077d2c34f4860e416d90bcaa73259090a66 | /src/virtualAnnotationDefinitions.h | e0588eea868af47521a183cb220bcea614e56eee | [] | no_license | edkazar/STARMentorSystem | 7ec3ccd7d2bfc730aaa681157e2adc8ce233d34a | 52c3997c701915293196e3a93ccf76bb2846f744 | refs/heads/master | 2016-08-11T09:01:01.689255 | 2016-03-04T23:57:10 | 2016-03-04T23:57:10 | 52,998,032 | 2 | 0 | null | null | null | null | ISO-8859-10 | C | false | false | 14,163 | h | ///////////////////////////////////////////////////////////////////
/*
* Mentor System Application
* System for Telemementoring with Augmented Reality (STAR) Project
* Intelligent Systems and Assistive Technology (ISAT) Laboratory
* Purdue University School of Industrial Engineering
*
* Code programmed by... | [
"edtec217@gmail.com"
] | edtec217@gmail.com |
0b4700e98c7ca76ea80686dac81eeb66338a5fc1 | 64ec5bd0a9ffcb83335c1e2866840f8e28cf4d22 | /gitsrc/xe/xefcmd7.h | 2e7d6ceb1ec126f7d305cfd5e8b0d433a6c3fe06 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | Axellarator/XE | 252f8cbfd6225fed3ef8321ba1056f96cffbfcc7 | a32f644fa268cd2bb906380852e032e865e9323d | refs/heads/master | 2023-06-07T15:21:07.505843 | 2022-12-15T01:25:07 | 2022-12-15T01:25:07 | 418,605,277 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,408 | h | //CID://+vba2R~: update#= 6; //~7710I~//~vba2R~
//**************************************************************** //~7710I~
//*xefcmd7.h //~7710I~//~vba2R~
//**************************************************************** /... | [
"sakachin2@yahoo.co.jp"
] | sakachin2@yahoo.co.jp |
5cd320cd2b00a615cb6fcc5285b469d91197ecfb | fc987ace8516d4d5dfcb5444ed7cb905008c6147 | /third_party/perl/c/i686-w64-mingw32/include/isysmon.h | 8ffd031e8488b43055236cbd83db4abe4eda3395 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-public-domain-disclaimer"
] | permissive | nfschina/nfs-browser | 3c366cedbdbe995739717d9f61e451bcf7b565ce | b6670ba13beb8ab57003f3ba2c755dc368de3967 | refs/heads/master | 2022-10-28T01:18:08.229807 | 2020-09-07T11:45:28 | 2020-09-07T11:45:28 | 145,939,440 | 2 | 4 | BSD-3-Clause | 2022-10-13T14:59:54 | 2018-08-24T03:47:46 | null | UTF-8 | C | false | false | 742 | h | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _INC_ISYSMON
#define _INC_ISYSMON
#if (_WIN32_WINNT >= 0x0600)
#ifdef __cplusplus
extern "C" {
#... | [
"hukun@cpu-os.ac.cn"
] | hukun@cpu-os.ac.cn |
10f9335234f2bcfb615a1c9dd4e2e44d524da64d | 42557c79692ca0466ecfff1acb14ea11e2b87530 | /POURLEBRO/libft/ft_putendl.c | 65eeaebcc1873a446a8ea5759f0aee3c76b557e9 | [] | no_license | beateur/libft | f3f8fd111476db1f9b0b82ec46a4479d1b94ad52 | b2b45fe05f1f2b55b0a18602cff2aad20b2e9e7d | refs/heads/master | 2020-04-06T10:03:21.595272 | 2019-05-05T17:58:05 | 2019-05-05T17:58:05 | 157,366,317 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 995 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: ... | [
"habilel99@gmail.com"
] | habilel99@gmail.com |
2727b16fecfd53c39f109d014da7461d85a8e028 | cca31b85e964d87d1df2a0c0dd1ee5be223bb648 | /srcs/Sully/C/Sully.c | f97364dc93a40d868615f7c27bf3c1e6492b1ca1 | [] | no_license | bnoufel/dr_quine | 6c50ea1bc46d167fbac6ac98186c89c8a2f1eac0 | c6baa11bb2dd2fe5b1e20423040464ced81d5729 | refs/heads/main | 2023-06-21T04:30:47.678894 | 2021-07-13T12:28:32 | 2021-07-13T12:28:32 | 385,551,171 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,353 | c | #define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#ifndef R
#define R 0
#endif
int main() {
int fd;
int i = 5;
if(i <= 0)
return 1;
char *p;
char *b;
char *c;
char *n = "Sully_";
char *s = "#define _GNU_SOURCE%1$c#include <stdio.h>%1$c#include <stdlib.h>%1$c#inc... | [
"benjamin.noufel@gmail.com"
] | benjamin.noufel@gmail.com |
f6dc53740999980bb7887c4159083cbf1cb00d3f | c2f5dda2610c496f776702ec2acce400e5d16e9b | /lab_5/wall_clock_MSP_EXP432P401R_nortos_ccs/uart_functions.c | 33f56a56fae478b77738f97d9b238c7f072073dd | [] | no_license | NickSica/ECEC204 | d7bcfcc8a40b844fa6fe83acec0d436a1e4c5372 | 8b5e811610c7779279bcae7d241a3604131e58bf | refs/heads/master | 2020-06-12T22:48:43.425263 | 2019-09-06T20:33:08 | 2019-09-06T20:33:08 | 194,451,501 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,915 | c | /* Contains basic functions to read/write integer, floating-point and
* string data types from/to the UART.
*
* Created on: Jun 22, 2019
* Author: Naga Kandasamy
*/
/* DriverLib Includes */
#include <ti/devices/msp432p4xx/driverlib/driverlib.h>
/* Other includes */
#include <stdio.h>
#include <stdlib.h>
#inclu... | [
"Xoepe@hotmail.com"
] | Xoepe@hotmail.com |
4cea35a18fcc8c12bfa1c3f063383010113131d5 | fd2837aef61176323fb6d8eb647b20debe7995f5 | /CSAPP/sa-bAbi/working/b73ad3d0e4.c | 699fb24ad71637e976d260b55ed1d56e882013a7 | [] | no_license | callMeBigBen/CourseWork | b0ef17b5cfe07ba61404abd68812d2b56393db87 | 41d68c07f7b1411dbca7dc7d5e2efeceb9edee27 | refs/heads/master | 2020-04-10T08:18:21.617984 | 2019-05-22T05:26:38 | 2019-05-22T05:26:38 | 160,902,512 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 499 | c | #include <stdlib.h> // Tag.OTHER
int main() // Tag.OTHER
{ // Tag.OTHER
int entity_3; // Tag.BODY
entity_3 = rand(); // Tag.BODY
int* entity_4; // Tag.BODY
entity_4 = new int(rand()); // Tag.BODY
int* ... | [
"33094628+callMeBigBen@users.noreply.github.com"
] | 33094628+callMeBigBen@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.