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
a9030339ba2544966660298a296fe75f7fae8b64
462dd6c5f663fcf0b3bcc7352bf5ce62dbdd496a
/lazyass.c
fc46f73eac1df5e4d187b562b6faca1d5f4f1b55
[]
no_license
driedfruit/SDL_lazyass
1c272fe570139b0371cebdbf31a45435ec416f99
d057834017d3cede4d390a3e2f4725f861bdf7bf
refs/heads/master
2021-01-10T19:51:33.404962
2013-06-10T20:48:45
2013-06-10T20:48:45
9,519,495
2
0
null
null
null
null
UTF-8
C
false
false
11,340
c
#include "lazyass.h" #include "hash/hash.h" static hash_t textures; static hash_t surfaces; static hash_t sounds; static SDL_Renderer *use_renderer = NULL; static SDL_Thread *loader_thread = NULL; static SDL_mutex *queue_mutex = NULL; ASS_Sound *ASS_LoadSound_RW(SDL_RWops *ops); SDL_Surface *ASS_LoadSurface_RW(SDL_R...
[ "driedfruit@mindloop.net" ]
driedfruit@mindloop.net
acde70ca3cf498ddb1ed3ce9c94fecaa3e5b806b
aad2c373f51fd5cc4907e11a6ed74a8235019c4f
/arc.c
6cdb0e4fb5d8308d1c9f732d22d6de5fb6a89438
[]
no_license
wuxb45/libtrace
2743fe669e209a3a32d645015229487453b716b3
2d714adb054e10a0189399667dc4567a8e0fedb0
refs/heads/master
2020-07-31T19:54:54.302419
2017-10-21T03:16:25
2017-10-21T03:16:25
210,736,261
0
0
null
null
null
null
UTF-8
C
false
false
602
c
/* * Copyright (c) 2015 Wu, Xingbo <wuxb45@gmail.com> * * All rights reserved. No warranty, explicit or implicit, provided. */ // Run arc replacement algorithm with 2-30 trace format. #include <stdio.h> #include <stdlib.h> #include "arc.h" int main(int argc, char ** argv) { (void)argc; (void)argv; if (ar...
[ "wuxb45@gmail.com" ]
wuxb45@gmail.com
177c300708ea3bbe7c4fecab39c9943ba24e92fc
fde96fde4fa24586bc68719e034cbe040927f5e9
/0x04-more_functions_nested_loops/1-isdigit.c
1b6d5de3475ed253a0cf031daf5f4ea56920f7cc
[]
no_license
mauricioolarte/holbertonschool-low_level_programming
0f4f5178a4cd7fd96fcdbef4d2b25647e3e8b31d
bcfb3d91b9ea7982ac833b1e609253f8ed203420
refs/heads/master
2020-12-29T07:24:16.094860
2020-08-28T00:19:58
2020-08-28T00:19:58
238,510,531
0
0
null
null
null
null
UTF-8
C
false
false
255
c
#include "holberton.h" /** *_isdigit - this function ckeck if the character is digit. * *@c: is a character. * *Return: 0 is no is digit, 1 is digit. */ int _isdigit(int c) { if (c >= 48 && c <= 57) { return (1); } else { return (0); } }
[ "reneolarte@yahoo.com" ]
reneolarte@yahoo.com
c7222a53ff53c6cbcf6287518f964105f07c0bb3
fd3bf701514f36ffcefb599b4bba3342d4f89b09
/turbine/SIP.h
ec5d6013f053f2fc30d925a095b524134e5c5d8a
[]
no_license
ccdwt/WindTurbine
0004f85424cbe1093c4ca08c8f94692312c77609
8a62ee776874d1853810fc8d5b4697565f7b7bf0
refs/heads/master
2021-01-20T06:57:39.381163
2014-03-10T20:39:33
2014-03-10T20:39:33
null
0
0
null
null
null
null
UTF-8
C
false
false
7,669
h
#ifndef __SIP_H__ #define __SIP_H__ #define bit(x) (1 << (x)) #include <stdint.h> #include <stdbool.h> #include "SIP_Event_Codes.h" typedef struct { uint16_t SoftwareRev; // The inverter Software revision uint16_t OPVersion; // The Version of this list of values uint32_t Time; // s The inverter t...
[ "prm5@students.calvin.edu" ]
prm5@students.calvin.edu
4a15edfa2e64c2fce11047c08f3419bb46fdf952
190c2ad6c67f1c25550dbf9dd61085f4ad3cff50
/bsp/oled.c
e2410d8c3cf053a40e72d4f23b977aa96f950b94
[]
no_license
LucasAlvaro-MEA/NXPCUP
0a2ac4c2ccd2290671718b838a739c524fc76e77
328836069e6d9369a744135741af02efe065531d
refs/heads/master
2023-01-07T02:34:35.026978
2020-11-07T15:59:57
2020-11-07T15:59:57
310,878,874
1
0
null
null
null
null
UTF-8
C
false
false
5,714
c
/* * oled.c * * Created on: 7 mars 2019 * Author: Laurent */ #include "MKL25Z4.h" #include "main.h" #include "font.h" static void OLED_SPI_SendByte (uint8_t byte); void BSP_OLED_SPI_Init() { // OLED SPI Pins // SPI1_SCK -> PE2 (AF2) // SPI1_MOSI -> PE3 (AF5) // D/C -> PE0 (AF1 = GPIO) // CS ...
[ "lucal711@student.liu.se" ]
lucal711@student.liu.se
d75edd6780cdcc5d158a754a21e49e128d1b1199
f0ec4781179786656101512ca6238dad43355370
/cdemo/iteration.c
096b267a1290848a9168f8e26b7a1a8de02e273b
[]
no_license
PusateriL0319/apcsp-pidev
8b9f73b90f6096539ceff8536d84f5d1dae34251
d4eff70dbee12910bb398569d7699109b0c0f99a
refs/heads/master
2020-05-25T15:32:28.837047
2019-06-06T15:09:33
2019-06-06T15:09:33
187,870,324
0
1
null
null
null
null
UTF-8
C
false
false
284
c
#include <stdio.h> int main() { int div = 3; for (int i = 0; i<100; i++) if (i %div==0) { printf("%d is divisible bby %d\n", i, div); } else { printf("%d is not divisible by %d\n", i, div); } }
[ "noreply@github.com" ]
PusateriL0319.noreply@github.com
f115b9cefe6dd270d9dae90de8f0b809e07d4ea2
561588907a0191b9d0a3cf18204a2159ffa13eac
/apps/source/source_avrcp_msg_handler.h
8265b2aa3928900920230b18fa0acd6c839c5242
[]
no_license
symeen/Qualcomm-_ADK4.4
bbe9388de0efc4bfdb3f790f5be3d908b85fca26
f06d5c0e4a23dd94f968b1bd112178ba31710c0b
refs/heads/master
2022-03-22T13:31:14.498281
2019-11-30T17:17:05
2019-11-30T17:17:05
null
0
0
null
null
null
null
UTF-8
C
false
false
1,549
h
/***************************************************************** Copyright (c) 2011 - 2015 Qualcomm Technologies International, Ltd. PROJECT source FILE NAME source_avrcp.h DESCRIPTION AVRCP profile message handling. */ #ifndef _SOURCE_AVRCP_MSG_HANDLER_H_ #define _SOURCE_AVRCP_MSG_HANDLER_H...
[ "gongdezhi900220@outlook.com" ]
gongdezhi900220@outlook.com
de1957333404c99db9fb3d9b8b017b4d133138ac
ba312976974bf90496f22671cf994edcec190bc2
/Client Mode/lcd_graphics/emstatus.h
bc42b1818f8bbf783dd280d514067f274d9adf1c
[]
no_license
hpreshit/BLE-Health-Monitoring-System
b64ad8351e3e095a5536ea7978d3fc41bbee0ac8
4606fa036bacb5b6119ef2727d6cad7d76cf0ea5
refs/heads/master
2020-03-27T05:38:49.100512
2018-10-29T23:49:49
2018-10-29T23:49:49
146,036,995
4
0
null
null
null
null
UTF-8
C
false
false
1,315
h
/**************************************************************************//** * @file emstatus.h * @brief EMSTATUS definitions. * @version 5.3.5 ****************************************************************************** * # License * <b>Copyright 2015 Silicon Labs, Inc. http://www.silabs.com</b> *****************...
[ "noreply@github.com" ]
hpreshit.noreply@github.com
b1c97a5a1a30cb86dd8618147de192c4e96c831c
063800668ccde505c9ea9f01a3466d6141b85bc5
/main.c
149ff12cb2df8f148192af68a935fb07633fc5ed
[]
no_license
cartola/Quadricoptero-PIC16F1829
0d9c7b7eac5dd7716c786a4e0a4408b1079e8f7f
fd9f8481a89bd0e35b936a835f12180ab2ba532c
refs/heads/master
2016-09-06T13:22:03.818840
2014-04-17T04:13:44
2014-04-17T04:13:44
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
9,789
c
/* * Author: Eduardo Camargo * Controlling a quadricopter */ #include <xc.h> #include <stdlib.h> // Funções matemáticas básicas como abs #include <stdio.h> // Funções de I/O para o RS-232 #include "config.h" // Configurações iniciais do PIC #include "globals.h" // Constantes globais #include "control.h" // Funçõ...
[ "cartola@gmail.com" ]
cartola@gmail.com
3fe13052dc46fafa92792106f54b584c00617e39
a889ca901f43f60c7b105e0a6cdf2abf76980698
/dominion/mutants/mutant100560_dominion.c
7f9efe87bf8c6370e3878f5dc1133c8a993ce1cf
[]
no_license
cs362sp16/cs362sp16_berezam
cd21fb143531fed76d68f1cb71b08dff4c440de9
b44a43198f23932f015abe6379b1ac2fdebe053b
refs/heads/master
2016-09-12T21:10:55.700141
2016-06-08T04:56:07
2016-06-08T04:56:07
56,246,014
0
0
null
null
null
null
UTF-8
C
false
false
33,431
c
#include "dominion.h" #include "dominion_helpers.h" #include "rngs.h" #include <stdio.h> #include <math.h> #include <stdlib.h> #include <string.h> //for memset int compare(const void* a, const void* b) { if (*(int*)a > *(int*)b) return 1; if (*(int*)a < *(int*)b) return -1; return 0; } struct gameState* newGam...
[ "berezam@flip3.engr.oregonstate.edu" ]
berezam@flip3.engr.oregonstate.edu
d3626998a567dd89e937cf81f38a6ae194052143
881fcebec3f5b70668eb950dba281a7d7e5c0bd7
/扩展版破解/vc/faddr2maddr/StdAfx.h
97b57783e56719a8499a60a34ed2bef5cc9c0120
[]
no_license
xiziyunqi/EncodeIATfunc
f3eec4dedca17ac39b397596ca422341d0f2ee90
1a32071ec6e1d6b94a496ff6784bede01e58e2a7
refs/heads/master
2021-04-03T06:49:18.342701
2018-03-10T13:02:15
2018-03-10T13:02:15
124,655,620
1
0
null
null
null
null
UTF-8
C
false
false
769
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__ADCC93FA_7784_4DA6_9AF6_75EFE2029580__INCLUDED_) #define AFX_STDAFX_H__ADCC93FA_7784_4DA6_9AF6_75EFE2029580__INCLUDED_ ...
[ "1276551882@qq.com" ]
1276551882@qq.com
2792de21494f571425bfb98beb2cd2ad3f428e2d
cb43cf4e2d49031d56aa5eb3dad1bfca4e0cc177
/ipnc_mcfw/mcfw/src_linux/mcfw_api/ti_vdis.c
c22f1131686e52ac9a56051504986ea8bc82aba9
[]
no_license
fdovila/ipnc_rdk
ea1fdea985efb0913cf000e959b2854d157c9c04
04fdabc671787eee5e9c53ec965078fc20186c49
refs/heads/master
2022-01-02T18:03:35.079534
2018-03-05T01:32:21
2018-03-05T01:32:21
null
0
0
null
null
null
null
UTF-8
C
false
false
90,080
c
/*============================================================= * @file: ti_vdis.c * * @brief: Video Display function declare. * * @vers: 0.5.0.0 2011-06 * *============================================================= * * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * ...
[ "glamorousdd@sina.com" ]
glamorousdd@sina.com
6f907f27c63257f4d33147f41925b10df2f3d19d
cc4374b3f2c62a39f5b509ecf393ebaede71210d
/1-dts/3_for_each_matching_node_and_match/dts.c
a1b4a9afd39f38fe6705457eab71fb74494e963b
[]
no_license
zzb2760715357/learn-note
3ed706d157b421e24fb88f878765ef77c1bee660
67356054a4596f9e83d7a31f38ca9680efcb24c2
refs/heads/master
2020-05-25T03:35:59.004014
2020-03-27T06:11:03
2020-03-27T06:11:03
187,606,905
0
0
null
null
null
null
UTF-8
C
false
false
1,299
c
#include <linux/init.h> #include <linux/kernel.h> #include <linux/of_platform.h> #include <linux/module.h> /* define name for device and driver */ #define DEV_NAME "DTS_demo" static const struct of_device_id DTS_demo_of_match[] = { { .compatible = "DTS_demo", }, { .compatible = "DTS_demoX", }, { .compat...
[ "zhuangzebin@wingtech.com" ]
zhuangzebin@wingtech.com
b220a16055aa7f18103a45a86672b7190c1fa55b
5c529642b31766c90038d59d748158ba3d0151f4
/code/src.lib/base/graphic/fbuffer.1.06/src/ppm.c
f70fd5a757e7b6c508cb2e936b4ec9a231fdd55b
[]
no_license
horit/RST2.10_stel
3ca50cfdf128709c0f22cd693b11c4a682e42f3e
60da58e952c452a8ccfc5fd43aea367220fd8556
refs/heads/master
2016-09-06T02:45:16.567584
2014-10-23T05:27:28
2014-10-23T05:27:28
25,215,211
0
0
null
null
null
null
UTF-8
C
false
false
7,835
c
/* ppm.c ===== Author: R.J.Barnes */ /* Copyright 2004 The Johns Hopkins University/Applied Physics Laboratory. All rights reserved. This material may be used, modified, or reproduced by or for the U.S. Government pursuant to the license rights granted under the clauses at DFARS 252.227-7013/7014. ...
[ "horit@stelab.nagoya-u.ac.jp" ]
horit@stelab.nagoya-u.ac.jp
349a239e04bbf34ededbb09128e790c5843e419e
695e8238bdca3dd9f46e05e2bb27fa9e784f1a64
/MPC电脑版/c/tt/BookView.h
969dcafcbdce070c2e29a2c81b0011cf565ec088
[]
no_license
vmrp/mpc
1e33edefaf81028a00371f4ade0404188b1ec660
abb104daf1c07e0d9eac4d3c2e5e1b67eedaee40
refs/heads/master
2022-01-23T00:48:18.942941
2021-12-30T09:03:29
2021-12-30T09:03:29
176,777,432
3
3
null
null
null
null
GB18030
C
false
false
4,219
h
/* * BookView(简单文本浏览器) * By:天天 * QQ:643552878 * Date:2012.8.29 * 接口: 初始化 BVInit(char *FileName); 按键 BVEvent(int type,int p1,int p2); * 说明:退出自动保存阅读进度、此源码仿自龙魂噬心、 * 帮助:左(4)、右(6)键翻页、0键切换皮肤、*键跳置开头、#键跳置结尾(有bug)、1键消乱码 */ //阅读字体 #define BFONT 1 //阅读记录文件后缀 #define SNF ".mark" struct BView { char *name;//文件名 char *SekName...
[ "zengming00@qq.com" ]
zengming00@qq.com
78ae324ad5cc59b14c886127973f840e541414c0
5d841680b3aaf3d3f31dbc218a232420dc3c56fc
/12_FileHandling_in_C/12_07_fprintf_function.c
8255ba8f32ab98a7074ba60201c1380fa9011ac5
[]
no_license
anujprj143/C_programming
ffbaf84bcf535e8530db7ae2548bd4383ce9cdbb
c57e52da59f98fa01b09a2564197b668f430ef1e
refs/heads/master
2021-11-18T01:13:56.652089
2021-09-03T17:09:35
2021-09-03T17:09:35
247,411,264
1
0
null
null
null
null
UTF-8
C
false
false
397
c
/*12.7 Program to understand the use of fprintf()*/ #include<stdio.h> #include<stdlib.h> int main(void) { FILE *fp; char name[10]; int age; if( (fp = fopen("rec","w"))==NULL) { printf("Error in opening file\n"); exit(1); } printf("Enter your name and age : "); scanf("%s%d",name,&age); fprint...
[ "dharmrp.143@gmail.com" ]
dharmrp.143@gmail.com
0756822240841b569a5ad49716cdfe767d16e8fb
d91e8f1af377f08b1b70bcd280b281c5968ee22a
/librabbitmq/win32/threads.c
edf2d2d70303c4eb428d3544b8e3cec88a636134
[ "MIT" ]
permissive
postmates/rabbitmq-c
6c97abd3bc8c6f98d31feea39f3069d84c369e52
6460efed571a4629abead4e7da148b0557ca697d
refs/heads/master
2021-08-19T01:17:44.924777
2020-08-03T19:34:41
2020-08-03T19:34:41
210,893,348
0
0
NOASSERTION
2020-08-03T19:34:43
2019-09-25T16:40:08
C
UTF-8
C
false
false
1,711
c
/* vim:set ft=c ts=2 sw=2 sts=2 et cindent: */ /* * Copyright 2012-2013 Michael Steinert * * 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 limitati...
[ "alan.antonuk@gmail.com" ]
alan.antonuk@gmail.com
bebbd5cdda7339f7b97974b4702f426112137fb9
496becfabf22f022a79fcf5754275f6375455990
/Vivado_Projects/TARGETC_Prototype/sdk/SerialRegCtrl/src/TARGETC_RegisterMap.h
c96432ea9d08b0e7e577d2106e9005ae39861ce7
[]
no_license
sventurag/WATCHMAN
61706cb4c365e1d72b7c7eaec82801ba7fe0e7be
c9cf74ea3cd9c9a06a9ff9fa0ed413709c0f96eb
refs/heads/master
2020-04-27T15:30:19.050066
2019-03-14T23:21:06
2019-03-14T23:21:06
174,448,596
0
0
null
2019-03-08T01:36:33
2019-03-08T01:36:33
null
UTF-8
C
false
false
3,930
h
#ifndef TARGETC_REGISTERMAP_H /* prevent circular inclusions */ #define TARGETC_REGISTERMAP_H /* by using protection macros */ #include <stdio.h> #include "platform.h" #include "xil_printf.h" #include "global.h" //#include "interrupt.h" /*** Definition of Registers ****************************************/ /...
[ "jhendrik@hawaii.edu" ]
jhendrik@hawaii.edu
95a5e83314272d2a8fa28d0fc023bde30c9b2722
a7e31c5bc371f6163fe0d90272f87b9c7d1b7991
/week 3/3/main.c
33b40b960568a6305ceebf74845601df932d4931
[]
no_license
Kamila-Khamidullina/OS
3fc60c15cd664273b4e4fa4bd917e298e65fb2e2
72a137f509ec21f4181650bc60a0a32ff324f786
refs/heads/master
2023-01-14T23:59:54.156913
2020-11-10T15:53:35
2020-11-10T15:53:35
288,763,065
0
0
null
null
null
null
UTF-8
C
false
false
1,471
c
#include <stdio.h> #include <stdlib.h> typedef struct node{ int data; struct node* next; } node; node* head = NULL; void print_list(node* current){ printf("The list:"); while (current != NULL){ printf(" %d", current->data); current = current->next; } } void insert_node(node** hea...
[ "noreply@github.com" ]
Kamila-Khamidullina.noreply@github.com
0853e55e9e362d98918aa0016d19e6a737e70d5f
f4944e36948ac13902a387248937276129b2ceea
/pwnable/tiny_easy/wrap.c
abd554b13f1783aea0ee37632eae83c2ec6c61e3
[]
no_license
rot256/Wargames
b96deee8670dfdbfc6d7e9624297a88b97e773b5
7a78db7b5fb5a5b8c8868fc4efaa9725eea97c71
refs/heads/master
2017-04-29T02:59:21.766265
2017-04-17T19:36:44
2017-04-17T19:36:44
42,874,386
5
4
null
null
null
null
UTF-8
C
false
false
317
c
#include <sys/types.h> #include <unistd.h> #include <stdio.h> // ret @ 0x55 55 7a 19 char *params[] = { "\x19\x7A\x55\x55", "\x6a\x68\x68\x2f\x2f\x2f\x73\x68\x2f\x62\x69\x6e\x89\xe3\x31\xc9\x6a\x0b\x58\x99\xcd\x80", NULL }; int main(int argc, char* argv[]) { execve("./tiny_easy", params, NULL); }
[ "rot256@pivot" ]
rot256@pivot
a3e38a1343ad5b9407b6a0d4d1d6eb8ac44b7563
7774f5fa84edbe372df5bbb536e8b07b51306681
/Temp/StagingArea/Data/il2cppOutput/t63.h
bf5f8683bf62e007f607a14c055a0b46f08b8888
[]
no_license
1jeffcohen/Mr-Turtle-Breaks-Free
677f4792b30ac3041e1454e6027a64478ec18a05
360506196b46e3b8234cf732230b266e655975e1
refs/heads/master
2016-09-01T16:24:29.294516
2015-10-08T21:46:23
2015-10-08T21:46:23
43,917,971
0
0
null
null
null
null
UTF-8
C
false
false
271
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> struct t291; struct t47; struct t181; struct t182; struct t14; #include "t179.h" #include "t18.h" struct t63 : public t179 { };
[ "1jeffcohen@gmail.com" ]
1jeffcohen@gmail.com
fc9e1d6d62b2a3256223082562314ae3dd0e142e
f7250ad9b7a691e098bc278b06d2ad59937fd2fe
/727-1_oea-2-1.c
bb982c8cc48ea7af3cfe8aab9f3c0ee7dc15ba80
[ "BSD-3-Clause" ]
permissive
Mr-Goga/timp-727-1_oea
6e7f10cf50b83a31fd8375ff99d46b9aa2d48b2e
4ed434146484daa5a4a164adeef92117d078f539
refs/heads/master
2020-05-22T17:37:44.431971
2019-05-17T13:35:48
2019-05-17T13:35:48
186,454,268
0
0
BSD-3-Clause
2019-05-17T13:35:50
2019-05-13T16:08:40
C
UTF-8
C
false
false
187
c
#include<stdio.h> int main (){ int n,k=0,x; scanf("%d", &n); for(int i=1; i<=n; ++i) { scanf("%d", &x); if(x>=0) {k++;} } printf("%d\n", k); return 0; }
[ "727-1_oea@36411.cloud.hosted-by-virtualdc.ru" ]
727-1_oea@36411.cloud.hosted-by-virtualdc.ru
6d94574ab183745d5cf27897a1dd617fcd13033b
957be2e89c2ddf40fe15885129a78de3ed21d6db
/sampleFiles/SampleProgram/fmp/fmp_trace_log_sample.c
57e3becf3153ce844c12e6891ef407aaabf1d32c
[]
no_license
YixiaoLi/tlv4mc
1495fd25371e089df35b914506ef1da9f83dc5a4
b8af0770ba25bfbd59a578c6d70742abc47cc887
refs/heads/master
2021-01-10T14:37:43.055098
2013-05-14T11:16:23
2013-05-14T11:16:23
54,563,248
0
1
null
null
null
null
EUC-JP
C
false
false
29,371
c
/* * TOPPERS/FMP Kernel * Toyohashi Open Platform for Embedded Real-Time Systems/ * Flexible MultiProcessor Kernel * * Copyright (C) 2000-2003 by Embedded and Real-Time Systems Laboratory * Toyohashi Univ. of Technology, JAPAN * Copyright (C) 2004-2010 by Embedded and R...
[ "ertl-rmiwa@eaa9bad3-1b54-4b84-9a43-5f6ba101aebc" ]
ertl-rmiwa@eaa9bad3-1b54-4b84-9a43-5f6ba101aebc
cc9f6726c3ffe651b9222ebb8f181c2f403757df
f094a667041cbc52b03dad7621e3204d772b7a1d
/sw/driver/allplay_driver/liballplaymcu/src/target/linux-uart/aj_net.c
b5f4fb713b05d62350f749477280639ff1e001e1
[]
no_license
zhan92/Hendrix_M_Lite_GD
7ea027041269ceb845a13e6737d48246fd1f9fa0
d16a151d841ad12e9f3b36170dca4b5c157c47a5
refs/heads/master
2023-08-14T17:59:44.228451
2021-09-03T12:00:31
2021-09-03T12:00:40
null
0
0
null
null
null
null
UTF-8
C
false
false
2,235
c
/** * @file */ /****************************************************************************** * Copyright 2012-2013, Qualcomm Innovation Center, Inc. * Copyright (C) 2015, Qualcomm Connected Experiences, Inc. * * All rights reserved. * This file is licensed under the 3-clause BSD license in the NOTICE.txt...
[ "Edmond.Sung@tymphany.com" ]
Edmond.Sung@tymphany.com
6c244790e722e3f6b425d26dfec617a40c914e8d
0c262faca6ab3a4cb6b16e714266c13b7b9b2b09
/metamod/mutil.h
f291cc952a9d60171cda4f2764ea301471f3a0c1
[ "BSD-3-Clause" ]
permissive
APGRoboCop/jk_botti
1aaabbfd2f24ad9c9e7f37c2e8e7e2cb7a59423a
2d4f6bab4177ab2889ca7f07cd8a5f556e52da72
refs/heads/master
2023-08-09T03:00:22.571130
2023-07-23T00:45:34
2023-07-23T00:45:34
249,285,579
3
2
NOASSERTION
2020-03-22T22:37:31
2020-03-22T22:37:30
null
UTF-8
C
false
false
5,505
h
// vi: set ts=4 sw=4 : // vim: set tw=75 : // mutil.h - prototypes for utility functions to provide to plugins /* * Copyright (c) 2001 Will Day <willday@hpgx.net> * * This file is part of Metamod. * * Metamod is free software; you can redistribute it and/or modify it * under the terms of the GNU Genera...
[ "jussi.kivilinna@mbnet.fi" ]
jussi.kivilinna@mbnet.fi
8faa3f498c1e5ed50dacdd721ba8b61c9739fda1
bd1696904464d772caba2704b38f4859d7b7cec7
/pa1_Intro/third/third.c
1ebad92e4bf41b1f0a7cb3c387374d217c473c7d
[]
no_license
tjloftus15/CS206
f87221c4d20360d6c6ff563f4d70e55911f9476c
287d623300dbee906c3aab7be3786b7d650b75ee
refs/heads/master
2020-06-01T14:52:26.375159
2019-06-07T23:09:15
2019-06-07T23:09:15
190,821,828
0
0
null
null
null
null
UTF-8
C
false
false
3,803
c
#include<stdio.h> #include<stdlib.h> void insert(int); void search(int); struct node{ //char *key; //char *visit='n'; int value; struct node * next; }; struct node ** table; char * printer; int p=0; void insert(int num){ int holder=0; if(num<0){ holder=num; num=num*-1; } int k= num%10000; //printf("obta...
[ "tjloftus15@gmail.com" ]
tjloftus15@gmail.com
582a0855671054b20cdd5a5ecc0421299eb27144
b9464d05cfd1c08259c5d9afee1ffbde63c9df40
/c3/test/absa.c
6ebb31ba6c6eca9623210ab454b96bb5b15dc632
[]
no_license
n6il/toolshed
1bbf9a8a3aefecc644204fde04c356892c80a369
ab6fef5d98faa12ddaaa3bdecb77bbed33d36134
refs/heads/master
2023-08-10T23:12:56.446459
2023-07-29T15:05:47
2023-07-29T15:05:47
220,066,353
6
5
null
2023-07-29T15:01:42
2019-11-06T18:45:32
C
UTF-8
C
false
false
541
c
/* Test: absa.c Simple test of the abs(). */ int main(argc,argv) int argc; char **argv; { int a=-5; int b=2; int c=-560; int d=8029; int e=-31854; if( abs(a) != 5 ) return 10; if( abs(b) != 2 ) return 20; if( abs(c) != 560 ) return 30; if( abs(d) != 8029 ) return 40; if( abs(e) != 31854 )...
[ "coco@toughmac.com" ]
coco@toughmac.com
985e5ca7bac9ee527e7938bb7168f080e38b9145
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/x86/kernel/cpu/hypervisor.c
6af334dc1a9358728f2f6ad651d17e379b030eed
[]
no_license
weilaidb/PythonExample
b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466
798bf1bdfdf7594f528788c4df02f79f0f7827ce
refs/heads/master
2021-01-12T13:56:19.346041
2017-07-22T16:30:33
2017-07-22T16:30:33
68,925,741
4
2
null
null
null
null
UTF-8
C
false
false
293
c
static const __initconst struct hypervisor_x86 * const hypervisors[] = ; const struct hypervisor_x86 *x86_hyper; EXPORT_SYMBOL(x86_hyper); static inline void __init detect_hypervisor_vendor(void) void __cpuinit init_hypervisor(struct cpuinfo_x86 *c) void __init init_hypervisor_platform(void)
[ "weilaidb@localhost.localdomain" ]
weilaidb@localhost.localdomain
fe4b273bcd22eccbc32548b0740c357a84ede96e
7463848fcde200a3793b32226706c74b81e099fc
/libft/ft_abs.c
28ee8b871e3a436a6eaa677f068122b36d138494
[]
no_license
lmeyre/Fdf
1c0c1e870298f8ed88c3e52c465b8f8273f6c8ce
8c141886cb407b63089b1cc363ade8898952fafe
refs/heads/master
2021-11-11T16:21:10.510802
2021-11-09T00:29:50
2021-11-09T00:29:50
126,724,979
0
0
null
null
null
null
UTF-8
C
false
false
981
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_abs.c :+: :+: :+: ...
[ "lmeyre@e2r6p19.42.fr" ]
lmeyre@e2r6p19.42.fr
c513d5bb0959add8dd789ad148395265784a0d19
4e4bac16f2392ee1be98006ff05149b57d8b82af
/hello.c
669e99b00ef5e64ff8f5a5db0c5db7887b97519c
[]
no_license
NJUPTB18150219LF/hello-world
4ca5dd592dd2b04916c5c8d90604f897d4844e01
7e89671561401b1518dc1961a866962b917e4d96
refs/heads/master
2020-07-31T06:53:51.188320
2019-11-26T05:55:11
2019-11-26T05:55:11
210,521,864
0
0
null
null
null
null
UTF-8
C
false
false
353
c
#include <stdio.h> #include <curl/curl.h> int main(void) { CURL *curl; CURLcode res; curl=curl_easy_init(); if(curl){ curl_easy_setopt(curl,CURLOPT_URL,"http://myip.ipip.net/"); res=curl_easy_perform(curl); if(res!=CURLE_OK) fprintf(stderr,"curl_easy_perform() failed:%s\n", curl_easy_strerror(res)); curl_ea...
[ "noreply@github.com" ]
NJUPTB18150219LF.noreply@github.com
51f069bf4fe85a2aae9e68ed23d9a7133907ad17
d22e5b6a4cbcb18178c859cdf0fcf3b6847a122b
/libft/src/ft_memcpy.c
10449f94cc0bf850d80253bf4a5e159bdfa19aab
[ "MIT" ]
permissive
vomnes/Corewar
4c0873e22c9eedb2b9e9624583659ca32ae1de42
7e56e968ef1f6444b0f951b3f03b775e37858aee
refs/heads/master
2021-03-27T10:08:44.323019
2019-02-26T14:23:03
2019-02-26T14:23:03
88,441,147
5
5
null
null
null
null
UTF-8
C
false
false
1,187
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memcpy.c :+: :+: :+: ...
[ "atrudel@e1r4p21.42.fr" ]
atrudel@e1r4p21.42.fr
1c0faf36b4dee95fbcdc2eea570616cc9d417f38
1db79bfd7acae105ad10d8f8ff388b68cfc64464
/ioboard/event.h
021e92fd4dec59c452b69c81f52cfa544ad60f17
[]
no_license
zevv/doomclock
ab4eebdb4be86df299bbe4ad83c6f5522a9df0c3
97d36c219c740b225578ec93e0a8c4fc6cd6e434
refs/heads/master
2020-06-01T05:20:08.211201
2019-07-03T18:57:21
2019-07-03T18:57:21
190,654,199
0
0
null
null
null
null
UTF-8
C
false
false
475
h
#ifndef event_h #define event_h #include <stdint.h> enum evtype { EV_TIMER, EV_UART, }; struct ev_timer { enum evtype type; }; struct ev_uart { enum evtype type; uint8_t c; }; struct ev_input { enum evtype type; uint8_t pin; uint8_t state; }; typedef union { enum evtype type; struct ev_timer timer; st...
[ "ico@pruts.nl" ]
ico@pruts.nl
ce5ff1584b7576320e9fedc876dc18936985857f
db6903560e8c816b85b9adec3187f688f8e40289
/VisualUltimate/WindowsSDKs/vc7/crt/src/xcosh.c
3ba92e68a65016fa892c9189d9a630a28dabbd89
[]
no_license
QianNangong/VC6Ultimate
846a4e610859fab5c9d8fb73fa5c9321e7a2a65e
0c74cf644fbdd38018c8d94c9ea9f8b72782ef7c
refs/heads/master
2022-05-05T17:49:52.120385
2019-03-07T14:46:51
2019-03-07T14:46:51
147,986,727
4
1
null
null
null
null
UTF-8
C
false
false
791
c
/* _Cosh function */ #include "xmath.h" _STD_BEGIN _CRTIMP2 double __cdecl _Cosh(double x, double y) { /* compute y * cosh(x), |y| <= 1 */ switch (_Dtest(&x)) { /* test for special codes */ case _NANCODE: case _INFCODE: return (x); case 0: return (y); default: /* finite */ if (y == 0.0) return (y); ...
[ "vc6@ultim.pw" ]
vc6@ultim.pw
c0b827a1d845ceb1a04df2588da924ab906b7ace
48654211a8dff5c16cc57ad8cc9d2c495eb83383
/subsurfaceFiltration/runCases/usingPressureFT-LLS/Using2DLES/dynamicCode/sineWaves/allThoseIfs.H
6bff04c238ae83122379fccfb7f3f8da43f02d51
[ "MIT" ]
permissive
edsaac/bioclogging
6be54e5490ee6b7bed4eb2e89c078148e95e59ef
bd4be9c9bb0adcc094ce4ef45f6066ffde1b825f
refs/heads/master
2023-07-05T02:52:06.077922
2021-08-26T17:10:36
2021-08-26T17:10:36
299,431,688
0
0
MIT
2020-12-30T23:42:03
2020-09-28T21:06:21
C++
UTF-8
C
false
false
40,810
h
// Function to get coefficients scalar FFTVals(scalar Xm, scalar t); scalar FFTVals(scalar Xm, scalar t) { // Initialize frequencies stuff static double F[] = {0,0,0,0,0}; static double AmpCos[] = {0,0,0,0,0}; static double AmpSin[] = {0,0,0,0,0}; scalar pi = 3.141592; scalar X = Xm/100.; scalar Result = 0.0; ///...
[ "esaavedrac@u.northwestern.edu" ]
esaavedrac@u.northwestern.edu
c58b68b92b602c3f1c59e11a48f9cec048178640
1ed88142bbda5076c1611629a0a2ef27b9e3ac5e
/fibbonacci_large.c
a33eceb67561037d73dbe883057fa97251479280
[]
no_license
pbhatu/Coursera-s-Data-Structures-and-algorithms-Course-s-codes.
a6a5cb2bd401bd62bc355636c86867ca6c958ad1
75b848bfd27708055d84b521021d12b263f8d41e
refs/heads/master
2021-01-21T13:33:57.022892
2016-04-22T17:37:50
2016-04-22T17:37:50
55,045,132
0
0
null
null
null
null
UTF-8
C
false
false
510
c
#include<stdio.h> #include<iostream> #include<map> using namespace std; map<long,long> F; long f(long long int n,long long int M) { if (F.count(n)) return F[n]; long k=n/2; if (n%2==0) { // n=2*k return F[n] = (f(k)*f(k) + f(k-1)*f(k-1)) % M; } else { // n=2*k+1 return F[n] = (f(k)*f(k+1) + f(k-1)*f(k)) % M; }...
[ "bhatnagar.parth18@gmail.com" ]
bhatnagar.parth18@gmail.com
5784efff9877403930c38bf2b3428e0eeb858ccd
d5ba13b3e63c45092e28c219ab41b415a95aa75b
/NumberOfDigitOne.c
f4ece3c18b3be02198fa6b60a35a3ae37e5ecaec
[]
no_license
wojiaoguowei/jianzhi
2d8ccd2da145a1101dc7bb9988fa08dca492a525
64402d14781d94f0b5a6ad86f14fd3ac917ef29c
refs/heads/master
2020-04-02T16:55:20.666491
2018-12-14T06:45:19
2018-12-14T06:45:19
154,634,984
0
0
null
null
null
null
UTF-8
C
false
false
3,375
c
/*题目描述 求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数(从1 到 n 中1出现的次数)。 2134 依此类推,从 1 至 10i,在它们右数第二位中,数字1出现了10 ^ (i - 1)次。 对于 n = 2134,要找到从1 ~ 2134这2134个数字中所有1的个数。我们可以对2134进行逐位分析: (1)在个位上,从1~2130,包含213个10,因此数字1出现了213次,剩下的数字21...
[ "winner-guowei@163.com" ]
winner-guowei@163.com
e54ac05ac3c94abc34b6b637680dcaa1c3fb3374
1006b3dab7ad764b144f983b1bf6a9fa1b1662ac
/gtk_stuff.c
dab7505200850cf3ebf602170809397da04e3cd4
[]
no_license
Kaeffchen/SirTed
e7e4708f7b309b9a992864c8b2de6a2782476b59
d40101d17a99d0e65e505d55bf92083ff707f1fa
refs/heads/master
2021-01-18T13:54:33.734000
2015-09-25T22:53:56
2015-09-25T22:53:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,133
c
/*window setup*/ GtkWidget *window = NULL, *grid = NULL, *button = NULL, *drawing_area = NULL; void create_window(void) { window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_title( GTK_WINDOW (window), "Window" ); gtk_window_set_position( GTK_WINDOW(window), GTK_WIN_POS_CENTER ); g_signal_connect(windo...
[ "legojonas@gmx.de" ]
legojonas@gmx.de
f9ce6a6807b13b846dffac25c849b5c1610bdb45
bc716e11c182a5f3bd92fc99b6c30161193c5501
/consumer.c
9ac064b6aee12b8c7911bf44bb6fcf0d7519fa4f
[]
no_license
nadine-amin/Producer-Consumer-Using-IPC
94f8926df1ec2adc0ef38ea145a5ba6a768342ca
992ca7b30f473011b88c7447473739837a7166ff
refs/heads/master
2022-10-08T08:32:22.257176
2020-05-23T14:50:43
2020-05-23T14:50:43
null
0
0
null
null
null
null
UTF-8
C
false
false
7,051
c
#include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> #include <string.h> #include <stdlib.h> #include <stdio.h> #include <ctype.h> #include <signal.h> #include <unistd.h> #include <sys/stat.h> #include <sys/file.h> #include <sys/shm.h> #include <sys/sem.h> #include <time.h> // Struct for the buffer to be ...
[ "s-nadine.amr@zewailcity.edu.eg" ]
s-nadine.amr@zewailcity.edu.eg
8ccd20cdde4995575baa8c57e274010621159963
ba9092d70c313166be4687934c894bc22b10d74e
/237. Delete Node in a Linked List.c
fcbe009881193d3356ac97ac5c004098c0af6fa6
[]
no_license
vli02/leetcode
8441bf490aa89123f44de26a57305b97488e9c6b
f2956853808f7db641762415231e06cab8a96245
refs/heads/master
2022-10-15T13:33:02.559927
2022-10-12T21:35:20
2022-10-12T21:35:20
100,840,751
48
18
null
2022-03-26T01:22:11
2017-08-20T05:32:09
C
UTF-8
C
false
false
853
c
/* 237. Delete Node in a Linked List Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4 after calling your function. */ /**...
[ "vli02@hotmail.com" ]
vli02@hotmail.com
ab1b375dcb1f71564b85bfdb30c29a91a0ed2aa3
ec785278c41fb8fed76ccc8fcb5e098e777f6405
/basic/line_count.c
1ba2065ee49a8cb89896c7c6f929c6edefae89b7
[]
no_license
YuanRayChang/Data_structures_in_C
dbbb045ec6f3ac50d896e12fe4399e216a1e12fb
fc85d31ef9474cfcbb579741e9c4161f4a3a91e6
refs/heads/master
2020-03-28T11:58:47.162601
2018-11-05T04:47:05
2018-11-05T04:47:05
148,260,961
0
0
null
null
null
null
UTF-8
C
false
false
201
c
#include <stdio.h> int main() { int c, nl; nl = 0; while((c=getchar()) != EOF) //enter ( ctrl + z ) to terminate the while loop if(c=='\n') ++nl; printf("%d\n", nl); getchar(); return 0; }
[ "emanual0426@gmail.com" ]
emanual0426@gmail.com
5949f295a7fa1c48a7d60013caf0a52e707261e5
c6eb2fdb6031bab2f0d1f19ff58aa9502f77a71d
/networking.c
41e28e7dcf5851e66bff5c6d512107fc73c86efa
[]
no_license
ajkannan/DropZone
4ae2065c8df3e4da7632daa1be3edb74504fe542
2285704c000c256967ca91426e23972a44297bb3
refs/heads/master
2021-01-01T17:10:15.155177
2014-10-12T00:10:31
2014-10-12T00:10:31
null
0
0
null
null
null
null
UTF-8
C
false
false
3,125
c
#include <gtk/gtk.h> #include <chipmunk/chipmunk.h> #include "specs/networking.h" #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include "specs/protocols.h" #define LISTENQ 8 /* server_create_socket creates server parameters: po...
[ "ajay.kannan93@gmail.com" ]
ajay.kannan93@gmail.com
210867873d00bdd8b8f6fe73866c9b38c215a4db
f737888c372496e689ab65a2541065ba12cb7a37
/User/Hal_Driver/hal_infrared.c
489092506d47aa07115c6e360d2e7ae8ee8104de
[ "MIT" ]
permissive
gatement/g-tide-mcu
f1a876c19039e54b5982e2d235a0cabfe46256b7
f2bfd3ba727e1ca469e308ec369ca88d0023f3ce
refs/heads/master
2021-01-21T09:56:03.823407
2014-12-13T01:45:21
2014-12-13T01:45:21
27,864,325
0
1
null
null
null
null
UTF-8
C
false
false
2,304
c
#include "hal_infrared.h" #define IR_EXTI #ifdef IR_EXTI void IR_GPIO_Init(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); //开启IO 时钟 /* Configure PA.00 pin as input floating */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12; //设置...
[ "gatement@gmail.com" ]
gatement@gmail.com
6ee9d73295cbaa28050082621ba89ea3a4b2043d
df93ce63155a5ddfd054f8daba9653d1ad00eb24
/applications/test/removeFaces_with_meshPhi_mapping/removeFaces.C
8395e2a2f759481d939df1186ea3698a8dbc67f2
[]
no_license
mattijsjanssens/mattijs-extensions
d4fb837e329b3372689481e9ebaac597272e0ab9
27b62bf191f1db59b045ce5c89c859a4737033e4
refs/heads/master
2023-07-19T20:57:04.034831
2023-07-16T20:35:12
2023-07-16T20:35:12
57,304,835
8
4
null
null
null
null
UTF-8
C
false
false
8,149
c
/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation \\...
[ "mattijs.janssens@gmail.com" ]
mattijs.janssens@gmail.com
3080739d717566bbd48d38d044478fae07bbb03d
0addc5fff540b410e7a2a61b2009ec12767d20c2
/src/exception.c
423c3ce9c2aad75e1c66d493ce3a8b537f06f060
[]
no_license
yomaytk/HariboteOS
6098acac23edc15f26cb05b611a4fc420a0d1a5a
3e232e653c3c0312e012d3947ae1c81e85cb9660
refs/heads/master
2020-07-11T19:40:38.250239
2019-10-16T19:58:00
2019-10-16T19:58:00
204,628,491
0
0
null
null
null
null
UTF-8
C
false
false
698
c
/* ~~~~~ exception process ~~~~~ */ #include<stdio.h> #include<string.h> #include"bootpack.h" #include"mss_libc32.h" int *inthandler0d(int *esp){ struct CONSOLE *cons = (struct CONSOLE *) *((int *) 0x0fec); cons_putstr0(cons, "\nINT 0D :\n General Protected Exception.\n"); struct TASK *task = task_now(); char s[...
[ "ym.atonement.oy999@gmail.com" ]
ym.atonement.oy999@gmail.com
d4187d04068ade4857a5627d289cd699bb2b182c
453094eb4fce0df6375405c879fdc80d2ae86300
/fan_read.c
f12fd679315517313135f65573a5645875ccd5fb
[]
no_license
shengshixiang/pi4new
16e25f7834c6c0f50f67aa7c59a1091551e5fdfe
11c75267966abf80032cbae549c806bcac1b7dab
refs/heads/main
2023-04-25T11:46:40.650545
2021-05-24T06:28:55
2021-05-24T06:28:55
368,127,871
0
0
null
null
null
null
UTF-8
C
false
false
1,722
c
#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <linux/input.h> #include <linux/i2c.h> #include <linux/i2c-dev.h> #include <sys/ioctl.h> int fd; /*定义文件句柄*/ unsigned char i2c_read_data(unsigned int slave_addr,unsigned char reg_addr) //读取预设风扇转速 { unsigned char dat...
[ "1083626403@qq.com" ]
1083626403@qq.com
42c0c3f4e838ebd9ce96ea139ffe345b71e1b720
1e932bd4e8a16081448ed2f6ba457afa455f599f
/libft/ft_isalpha.c
5492a6585e397cdc485185e325096ba692d71313
[]
no_license
bjanik/ft_ssl
35b031b45f19e42febbe6e3b54b80bb96171486f
51e4368a7aae328f3239ddfe253296c2f55ad286
refs/heads/master
2023-03-13T09:02:51.282049
2021-03-05T10:31:00
2021-03-05T10:31:00
153,601,040
0
0
null
null
null
null
UTF-8
C
false
false
995
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: ...
[ "bart@macbook-pro-de-bart.home" ]
bart@macbook-pro-de-bart.home
048b868b310fd44f1c6cf38703e6b1873170f61e
28bd03c256eebeeaddb6fe9eb0e71b6dc167be48
/1355/script_rel/cv_itm_abi_01.c
a9b4c9c59b8dcf137a6d9f656a43ec47ffadd6b5
[]
no_license
Larisho/RDR3-Decompiled-Scripts
c82d1d31b21cd65d074f5382021579d5e08c0614
29a8b449613beaba232a47ffba7a394e0af66077
refs/heads/main
2023-06-17T05:39:24.102078
2021-07-14T10:34:34
2021-07-14T10:34:34
null
0
0
null
null
null
null
UTF-8
C
false
false
415,207
c
#region Local Var var uLocal_0 = 0; var uLocal_1 = 0; var uLocal_2 = 0; var uLocal_3 = 0; var uLocal_4 = 0; var uLocal_5 = 0; var uLocal_6 = 0; float fLocal_7 = 0f; float fLocal_8 = 0f; var uLocal_9 = 0; var uLocal_10 = 0; var uLocal_11 = 0; var uLocal_12 = 0; var uLocal_13 = 0; int iLocal_14 = 0; int i...
[ "kepmehzde@gmail.com" ]
kepmehzde@gmail.com
c9c5b2a730dfcb104500f38243488bd939784ec1
9438da88a1b9cbe71a47d96cd2dbc945a4dad0bd
/parseMork.c
adfcbb5b2a434837ecf30453c7a162becb833c91
[]
no_license
LavaSlider/parseMork
29980cbaebeee317ac25c2bb4b02bdda3183ddd4
c44ce6d3a738fb6124d681c65aa5c79cba37fbd5
refs/heads/master
2016-09-15T21:47:29.454083
2013-09-11T16:35:26
2013-09-11T16:35:26
12,719,134
0
1
null
null
null
null
UTF-8
C
false
false
47,283
c
/*----------------------------------------------------------------------------- * ParseMork.c - Parser for Thunderbird address books (abook.mab) files * * Developed after carful scrutiny of MorkParser.cpp written by * Yuriy Soroka <ysoroka@scalingweb.com> and Annton Fedoruk * <afedoruk@scalingweb.com> ...
[ "stockton@wowway.com" ]
stockton@wowway.com
ec0d70247f797e6f8fa2b4b02aba4f818e83ded6
46a3f45e77d88a949cb85ca3ab77b916b7558752
/suspension/suspension/YR.c
8bdfb21d016d92e0751165dbecd6829b0ab612c5
[]
no_license
mahdieh-ahmadi/suspension_system_c
fbd0b5af302177904b2e60d975e89d5b54dcc71a
6b4cbfc36440c221c569ef194bf44c946edcec33
refs/heads/main
2023-01-08T18:36:13.305610
2020-11-04T20:09:42
2020-11-04T20:09:42
310,106,849
0
0
null
null
null
null
UTF-8
C
false
false
916
c
/******************************************************* This program was created by the Codelite Project : car suspension system Date : 10/24/2020 Author : Mahdie Ahmadi & Zahra Karimi Company : isfahan university of technology Comments: this function simulatores road fluctuations and ascillations on the car bod...
[ "m119.ahmadi@gmail.com" ]
m119.ahmadi@gmail.com
94d107a98ecab87b618ee4fcced13a82ce0f4bda
3791f9677c013886e9ce186920ba532d5e130354
/raycasting_c/udemy/srcs/hook_funcs.c
34dd8a552b8c24969294395ed4b80847bb5a449d
[]
no_license
sniper-fly/raycasting
fad41e8ca886a6d7674b71629270444bf42644f1
fd9fc0307381cbcff99ff5ca45ee2d80cfff64a8
refs/heads/main
2023-01-11T07:44:50.020017
2020-11-11T04:06:28
2020-11-11T04:06:28
302,578,716
2
0
null
null
null
null
UTF-8
C
false
false
2,059
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* deal_key.c :+: :+: :+: ...
[ "rnakai@student.42tokyo.jp" ]
rnakai@student.42tokyo.jp
ddbcfe3205192b6702d5a4c3437ddaebf70c0e54
dfb59af794367d02891de53923aa3b67f7073472
/src/php/classes/php_pair_ce.c
2c2897bbbc1b238b92d6712cf5a9107df59f8984
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
php-ds/ext-ds
b31df34b05ad14af53a0d23ba7a7a15437f4004a
d42750d69beb684ec3ef7b3da48fba769ce57ffc
refs/heads/master
2023-08-26T11:28:53.328205
2023-07-29T04:04:32
2023-07-29T04:04:32
50,824,235
625
40
MIT
2023-07-29T04:04:33
2016-02-01T08:05:07
C
UTF-8
C
false
false
1,740
c
#include "../../common.h" #include "../parameters.h" #include "../arginfo.h" #include "../objects/php_pair.h" #include "../handlers/php_pair_handlers.h" #include "php_pair_ce.h" #define METHOD(name) PHP_METHOD(Pair, name) zend_class_entry *php_ds_pair_ce; METHOD(__construct) { PARSE_OPTIONAL_ZVAL_OPTIONAL_ZVAL(k...
[ "rudolf.theunissen@gmail.com" ]
rudolf.theunissen@gmail.com
422b00a4c4cc8a5a4920f50632baa5b246dbbca6
227762382eabdf753466e218c9b0361d3a1c3b41
/source/kernel/device/disk/gpt.c
1944e926b05d716e591d8fc2d1b79e335e44e7aa
[ "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
4,080
c
/* * 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
0e54e2437f4a8522fca0efade87a8f8f27346551
f1153b5af62c09e94ab5e5a873b1d39675560991
/cPrograms/002_windowsMessageBox.c
0d6d67be787bca8b6c7fbb93e95a9e6c7458ccc4
[]
no_license
adanto/hackingTips
de69e100e8b295acc82e306d81874791937a2dc3
0a673c6431b7b984d2434437b7d8720e97c59ab6
refs/heads/master
2023-07-06T12:35:39.632275
2021-02-22T16:14:24
2021-02-22T16:14:24
230,793,605
0
0
null
null
null
null
UTF-8
C
false
false
206
c
#include <windows.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK); return 0; }
[ "noreply@github.com" ]
adanto.noreply@github.com
e8743839c8ea9bc5b89916d260a35928e3378525
b034c289fdc7d2b73cc98792759c0252cf8038df
/lesson_17/client.c
05644ed31c98d2a0842d441e7319307619a557cc
[]
no_license
tsurutan/sample_c
ef35392fa0fbbb10d1821ccb615efa641edda7ae
01ef0e6e51bad2eb9134992d218ef68199c80768
refs/heads/master
2020-04-24T13:23:05.257795
2019-06-27T08:17:14
2019-06-27T08:17:14
171,986,046
0
0
null
null
null
null
UTF-8
C
false
false
798
c
#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> int main(int argc, char** argv) { int sd; struct sockaddr_in addr; // IPv4 TCP のソケットを作成する if((sd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { perror("socket"); return -1; } // 送信先アドレスとポート番号を設定する addr.sin_fami...
[ "ishaninaritaina623@gmail.com" ]
ishaninaritaina623@gmail.com
0f088044fe7f83a433ba969e3b7d466a6149e547
70779c88822e4d363e2609ce8da4518260bb466f
/src/drcom.c
b0c5acd62ef007d894f0802f14e675ace481f86e
[]
no_license
libc0607/scutclient
c82d4891640de81980f6d8335dcd3824640154f0
66feb63a08a36112491e65b57bef37034937a8c2
refs/heads/master
2021-01-18T02:52:46.134729
2016-08-20T06:08:10
2016-08-20T06:08:10
57,049,685
0
0
null
2016-04-25T14:42:44
2016-04-25T14:42:44
null
UTF-8
C
false
false
9,557
c
#include "drcom.h" #include "functions.h" typedef enum {REQUEST=1, RESPONSE=2, SUCCESS=3, FAILURE=4, H3CDATA=10} EAP_Code; typedef enum {IDENTITY=1, NOTIFICATION=2, MD5=4, AVAILABLE=20, ALLOCATED=7} EAP_Type; typedef enum {MISC_0800=0x08, ALIVE_FILE=0x10, MISC_3000=0x30, MISC_2800=0x28} DRCOM_Type; static uint8_t crc...
[ "forward619@gmail.com" ]
forward619@gmail.com
8ccc47f6ee3bea4325fa72aa2e3b771f6f2c3b68
9a290c603f296d896a0455334118628f1c654562
/main/includes/sntp_sync.h
ecf1cafd6fda5f834e8e9e1a104711cf1ef15046
[]
no_license
waymousa/TFLite_Voice_Commands
141e54f13d541307c59fa547e7d05d37ebc033fa
9d05aa97ad246ee3e413b3004edddb78e2109508
refs/heads/main
2023-09-05T14:59:36.411613
2021-11-26T13:07:12
2021-11-26T13:07:12
416,687,199
0
0
null
null
null
null
UTF-8
C
false
false
212
h
#include "freertos/FreeRTOS.h" #include "freertos/event_groups.h" #include "esp_event.h" EventGroupHandle_t sntp_event_group; #define TIMESET_BIT BIT0 #define TIME_NOT_SET_BIT BIT1 void sntp_task(void *args);
[ "swaym@amazon.com" ]
swaym@amazon.com
0ac8d5a9fbb4e148f28e2fb768b1f319df37bbc5
387ad3775fad21d2d8ffa3c84683d9205b6e697d
/openhpi/tags/2.6.2/utils/t/el/el_test_033.c
54ddda101601f4b2eb652f81f712f7ceffc92db9
[]
no_license
kodiyalashetty/test_iot
916088ceecffc17d2b6a78d49f7ea0bbd0a6d0b7
0ae3c2ea6081778e1005c40a9a3f6d4404a08797
refs/heads/master
2020-03-22T11:53:21.204497
2018-03-09T01:43:41
2018-03-09T01:43:41
140,002,491
0
0
null
null
null
null
UTF-8
C
false
false
1,160
c
/* -*- linux-c -*- * * (C) Copyright IBM Corp. 2004 * Copyright (c) 2004 by Intel Corp. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This * file and program are li...
[ "renierm@a44bbd40-eb13-0410-a9b2-f80f2f72fa26" ]
renierm@a44bbd40-eb13-0410-a9b2-f80f2f72fa26
6a2b4fc0a51e1d8ec988aa088c507bc962bf3c65
3acdc93781f14d8307f4c51928b18212c38a7837
/header.h
f4395a8ebf262fb4e547cb45b8769c789fb35168
[]
no_license
Echoes3/tp-casse_brique
6333e6a62fd72d19ee14d57d0b82ee5b28fd4708
3cd1490571c79e3c09b42138705331f965672f95
refs/heads/master
2021-04-12T11:17:01.738397
2017-06-16T12:07:59
2017-06-16T12:07:59
94,540,265
0
0
null
null
null
null
UTF-8
C
false
false
1,673
h
#ifndef HEADER_H_INCLUDED #define HEADER_H_INCLUDED typedef struct game{ SDL_Window *g_pWindow; SDL_Renderer *g_pRenderer; SDL_Texture *g_texture; SDL_Surface *g_surface; }game; typedef struct gameState{ int g_bRunning; int left; int right; }gameState; typedef struct coordonne...
[ "b.debabeche@ludus-academie.com" ]
b.debabeche@ludus-academie.com
3bf62970442e31283ecf6c48295b0ab74bf8f28a
3a59a13fd5be0a66b1aed9beb9a55eb60ad61dd0
/lib/vfwprintf_s-vswprintf_s-vsnwprintf_s-vwprintf_s.c
4cbd17119131132283d85a336c4ec5b827bf4986
[]
no_license
takagotch/c1
96274932bb414a84381e848d6f68f53e9c04c2f6
b7f9532a27bfc48fcca1f5c99139510ad9b9bb11
refs/heads/master
2021-05-08T18:31:03.197852
2018-06-13T16:09:20
2018-06-13T16:09:20
119,520,046
0
0
null
null
null
null
UTF-8
C
false
false
594
c
//vfwprintf_s, vswprintf_s, vsnwprintf_s, vwprintf_s //va_start(), va_end() //fwprintf_s(), wprintf_s(), swprintf(), snwprintf_s() //vfprintf_s(), vprintf_s(), vsprintf_s(), vsprintf_s() // #include <stdarg.h> #include <wchar.h> int vswprintf_s(wchar_t* restrict s, rsize_t n, const wchar_t* restrict format, va_lis...
[ "dyaccb@gmail.com" ]
dyaccb@gmail.com
4bd2f7617241ee89681e3d7494171d2cca640ce6
a460fee38d4b19a73ed1f02dcc1672dc4ab38995
/Inc/tim.h
bed3a5841d4e1233f2dfdef255ad27772486c48e
[]
no_license
jakobbak/stm32f4disc_stepper
4d4b58cd2e20694e4ae783bfe810911f1522af2d
4fab91006033c33ce0c3af53663cea003f712f66
refs/heads/main
2023-04-01T10:54:05.438015
2021-03-26T11:31:26
2021-03-26T11:31:26
345,354,883
0
0
null
null
null
null
UTF-8
C
false
false
1,630
h
/** ****************************************************************************** * File Name : TIM.h * Description : This file provides code for the configuration * of the TIM instances. ****************************************************************************** * @...
[ "jakob@polarworks.no" ]
jakob@polarworks.no
a288d6d93e162676c32cbf0b1c5c1b5c070a9bc9
0f731b6e7b7a483f931d0f99ab5333a6ebe66621
/array of N element.c
83afe8d0ef1ff26744bf614f5bcf21cd22897185
[]
no_license
rajarak1/rajarak
f17bd0a27d0f1d3506d489c0f45a2cb46be4f508
dccbff046600b546e73c7b624edeef986aeaffd4
refs/heads/master
2021-05-11T09:31:58.048746
2018-03-26T10:30:22
2018-03-26T10:30:22
118,079,051
0
0
null
null
null
null
UTF-8
C
false
false
446
c
#include <stdio.h> void main() { int n,a[10],i,count=0,j; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&a[i]); } for(i=0,j=i+1;i<n,j<n;i++,j++) { if(a[i]>a[j]) { count=0; break; } else { count=1; } ...
[ "noreply@github.com" ]
rajarak1.noreply@github.com
5cdaf54b898ae72a81cea705b4bf08b35b1bcca6
19eb97436a3be9642517ea9c4095fe337fd58a00
/private/ntos/w32/ntuser/client/perf.c
f45c35435fdc94c1580c8387c4d322e63cce35f9
[]
no_license
oturan-boga/Windows2000
7d258fd0f42a225c2be72f2b762d799bd488de58
8b449d6659840b6ba19465100d21ca07a0e07236
refs/heads/main
2023-04-09T23:13:21.992398
2021-04-22T11:46:21
2021-04-22T11:46:21
360,495,781
2
0
null
null
null
null
UTF-8
C
false
false
14,055
c
/**************************************************************************\ * Module Name: perf.c * * performance timing calls * * Copyright (c) 1985 - 1999, Microsoft Corporation * * History: * 12-Jun-1991 mikeke * \**************************************************************************/ #include <nt....
[ "mehmetyilmaz3371@gmail.com" ]
mehmetyilmaz3371@gmail.com
5558a05da9ec537f3886c4e7c955728fd9367ef4
7d71acdf6e8954452ce0910c229ce866ad373efd
/HAT/LED/main.c
a9ab37daa67e8f53f774ccd4b3d8e9e3959cec10
[]
no_license
cverbitzki/SeniorProject
1a432074634b2695dec4c366853dca6a874fa774
b6896ad9798d25e56267abe36152e82850f4f3d0
refs/heads/master
2020-12-24T07:45:17.606666
2017-03-06T21:58:13
2017-03-06T21:58:13
58,071,607
0
0
null
null
null
null
UTF-8
C
false
false
233
c
/* main.c */ /* Jordan Millett */ /* 19 Sept 2016 */ /* Test main for led.c */ #include <avr/io.h> // For AVR registers #include <util/delay.h> // for delay routine #include <led.h> int main() { LED_T LED; LED = INIT_LED(); }
[ "jordan.millett@maine.edu" ]
jordan.millett@maine.edu
fa073dab6174a39bad00859d4e459fc03e18c520
c4538222a145f7aeb7ba3a3afb3873a8478c56c4
/libft/ft_isgraph.c
b8ee1ec1b3115042538c3adcd0a6645ef0f47d43
[]
no_license
Falcon305/CoreWar
c2913d06e5fcd7bfa7aa75f847c9d3455bb61527
46cfc12c97c40e10ed133bf07de070d1dd822e7b
refs/heads/master
2022-04-09T14:26:36.410636
2020-03-10T18:49:02
2020-03-10T18:49:02
null
0
0
null
null
null
null
UTF-8
C
false
false
1,018
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isgraph.c :+: :+: :+: ...
[ "hrazani@e1r3p15.1337.ma" ]
hrazani@e1r3p15.1337.ma
e878bcd9390a71ff4964deb5facd77b603995288
cfe69fc556729bdecf2118fa5bc329343c42ed80
/10.0.10240.16384/ntoskrnl/Functions/PsQueryStatisticsProcess.c
f9c2ee10e418f8e6fd7a7ad8d2fe18173c2f6bdb
[]
no_license
Myprivateclonelibrary/W10M_unedited-decomp
8e5ec89a20e634ffc53457a40b0fd6d8a9e1757a
67b05851a3e262ff8a5d11ee50db34f28c350f16
refs/heads/main
2023-08-31T06:00:37.303105
2021-05-15T23:53:23
2021-05-15T23:53:23
null
0
0
null
null
null
null
UTF-8
C
false
false
2,968
c
// PsQueryStatisticsProcess // local variable allocation has failed, the output may be wrong! int __fastcall PsQueryStatisticsProcess(int a1, int a2) { unsigned int v4; // r7 unsigned int *v5; // r6 int v6; // r0 unsigned int v7; // r2 unsigned int v8; // r9 OVERLAPPED unsigned int v9; // r10 OVERLAPPED ...
[ "64583248+Empyreal96@users.noreply.github.com" ]
64583248+Empyreal96@users.noreply.github.com
9dbc3f11b2edda0e6c5873e42920f4bcc6ba2863
f20bfba5a94225dd32cc6419f7f7b292eff31d76
/raindrops.c
aa3ae80750af3339ca4c8f81ce7f5b2f7cdd16f9
[]
no_license
KyleMorman/MSP432-Weather-Station
8c5856d0940b08e23db05fa3a8ac82c78b2093c7
4371223d32e8b6a3bc17d492b55461336674bed1
refs/heads/master
2023-03-22T16:33:18.705849
2020-06-17T23:45:27
2020-06-17T23:45:27
null
0
0
null
null
null
null
UTF-8
C
false
false
746
c
/* raindrops.c * Written by Connor McKee and Michael Georgariou * CPE 316 - Spring 2020 * * For use with the MH-RD Raindrops module. */ #include "msp.h" #include "adc.h" #include "raindrops.h" uint8_t RD_read_analog() { return 0; /* TODO */ } uint8_t RD_read_digital() { /* if our digital pin is high, the...
[ "georgariou3@gmail.com" ]
georgariou3@gmail.com
79f0f0432ebbf60605ea8a1cc496a6e44b997cb2
552b74875a4800907e6b45e89759316917df4388
/fungsi.c
12878448abb04a0e5035e54825a4cec418db4cd6
[]
no_license
triwaluyo07/Alpro3BelajarSorting
5a32b5600a068087eebd4e5a8a27f4c931cfb6a7
20b868332c15c522c0048af5c8bd62d07653b908
refs/heads/master
2020-12-09T19:16:18.703054
2020-01-12T13:13:32
2020-01-12T13:13:32
233,394,719
0
0
null
null
null
null
UTF-8
C
false
false
641
c
#include"header.h" void cetakArr(int Arr[],int batas) { int i; for(i=0;i<batas;i++) { printf("nilai dari array ke %d,adalah %d \n",i,Arr[i]); } } void tukar(int *x,int *y) { int temp; temp=*x; *x=*y; *y=temp; } void BubbleShort(int Aray[],int batas) { int idx; int pos...
[ "triwaluyo432@gmail.com" ]
triwaluyo432@gmail.com
f819f2dc4e0ef0f51c10516da80cab72a34cb0f0
6b952cdc72c0503be0ee498b3332189b9f74db36
/world/d/shaolin/shijie7.c
5a63a8c2d14b2d93d72f6a51074e838ccb31ff38
[]
no_license
wwwguess/4321
6d58e58396465ed6403b06b091e846227880a050
2322c6f5f34c594040a3bc352d9d1c63d77f2070
refs/heads/master
2021-01-17T10:52:06.325973
2017-04-28T02:43:35
2017-04-28T02:43:35
84,018,934
1
0
null
null
null
null
GB18030
C
false
false
539
c
// Room: /d/shaolin/shijie7.c // Date: YZC 96/01/19 inherit ROOM; void create() { set("short", "石阶"); set("long", @LONG 石级继续向上延伸,瀑布在脚下越来越小,水声也渐行远去 几位身着灰黄色僧衣的僧人擦肩而过,看他们下山的时後脚步沉 稳,好象是个会家子。往上远眺,似乎可以看到石檐一角。 LONG ); set("exits", ([ "southdown" : __DIR__"shijie6", "east" : __DIR__"shanmen", ])); set("outdoor...
[ "fanjiang008@gmail.com" ]
fanjiang008@gmail.com
8ccdd3a203b960d18706fa3b22342607abbb760b
76e1f6335cbe86d41e2475635a6fabd7e30f5894
/Software/App/Module_NET/Module_tcp.c
cec6eb0ced448e8329c4f7df5234185b39794e6f
[]
no_license
Siqiu/Template_For_uCOS-II
30d1361bcd2c0bdf67b84b34ea3fecdab56a0aef
2eee7cb7fb03b4af2c00350e944d22baa0f39645
refs/heads/master
2016-09-05T19:09:41.158482
2016-02-24T10:40:38
2016-02-24T10:40:38
42,383,436
3
0
null
null
null
null
GB18030
C
false
false
6,450
c
#include "includes.h" #include "lwip/sockets.h" #include "lwip/api.h" #include "cc.h" #include "Module_malloc.h" #include "Module_tcp.h" extern uint16_t debug; static const char send_data[] = "This is TCP Server from RT-Thread."; #if DEBUG #else #define printf(...) #endif #define TCP_PORT 7 uint8_t t...
[ "869637893@qq.com" ]
869637893@qq.com
62bee2374860da80ae6d7853d24c5af7993de820
ee8e71b5de9d59dbe21eed63695460ec56b5ab8b
/PROGRAM/DIALOGS/RUSSIAN/Laurence Bannerman_dialog.h
7921cf53d810d7c58ac9f7e84f0c6a4bf8afc095
[]
no_license
Hammie/new-horizons
04371ac9b553f609351c23fbc48b51366ad3e95f
fd89f556628ab7c541c5b5d8026edb06b1b3694e
refs/heads/master
2023-08-04T01:22:42.052539
2021-09-09T10:55:51
2021-09-09T10:55:51
398,774,841
0
0
null
null
null
null
UTF-8
C
false
false
3,423
h
string DLG_TEXT[46] = { "Рад встрече с Вами, ", ". Я ", ", и я к Вашим услугам.", "Я капитан ", ".", "Рад видеть вас снова, ", ".", "Это опять вы? А я надеялся, что больше никогда вас здесь не увижу.", "И тебе доброго здравия ", ".", "Не дождешься, торгаш, ", "Не хотите ли осмотреть мои товары?", "Было бы не плохо. По...
[ "sam@hammie.be" ]
sam@hammie.be
e190da77b45d42f12146b929c5d30af4219acd1c
2d33e7548fed5e89b2e016c44374ca5e26c36987
/mcc_generated_files/device_config.c
43003dbb8cd8ac54049ea1e01353b9710d086669
[]
no_license
acequoc/EMG
2bc6e1ce0969ae56aa2072c98da4c7e511f9669a
2a53aa94012c59f853253f5d489710542f28c5d0
refs/heads/master
2022-11-30T15:15:44.262942
2020-07-07T17:45:07
2020-07-07T17:45:07
277,883,766
0
0
null
null
null
null
UTF-8
C
false
false
4,860
c
/** @Generated PIC10 / PIC12 / PIC16 / PIC18 MCUs Source File @Company: Microchip Technology Inc. @File Name: mcc.c @Summary: This is the device_config.c file generated using PIC10 / PIC12 / PIC16 / PIC18 MCUs @Description: This header file provides implementations for driver ...
[ "noreply@github.com" ]
acequoc.noreply@github.com
3e6b317e6053dbf58dfacc3e985ddef4e54a9208
9804d38d172052442fc23b18b5c0e24dc99080c9
/plot_neutron_vertices.C
908db20075892d32e6f8921b1b640479d89d2b0c
[]
no_license
marc1uk/wcsim_analysis
2d08069d866df1a01076a285ff07ba2b60bf14a2
45adc331c7ec4f82a11c8de1b614eb3fb1ad3921
refs/heads/master
2021-01-11T19:29:33.698385
2019-01-11T15:45:12
2019-01-11T15:45:12
79,377,727
0
1
null
null
null
null
UTF-8
C
false
false
3,188
c
{ //TFile* f= TFile::Open("/home/marc/LinuxSystemFiles/WCSim/gitver/build/wcsim_0.root"); //TTree* t = (TTree*)f->Get("wcsimT"); //TFile* f= TFile::Open("/pnfs/annie/persistent/users/moflaher/wcsim_particlegun_03-05-17/wcsim_0.root"); TChain* t= new TChain("wcsimT"); //t->Add("/pnfs/annie/persistent/users/moflaher/wcsi...
[ "moflaherty@sheffield.ac.uk" ]
moflaherty@sheffield.ac.uk
ff0e3abc70ee88e6a25dba19dd84a73f7cf312b7
052c3bdcb750e8effbba7eb977350c7cda2b52d4
/12356_ArmyBuddies/prueba.c
65e8c64d0612e2503ec3593cb7f020f4ec3617cd
[]
no_license
juliannieb/UVa
4598cfbcc11d90a5215dc71d5898905668ee7b19
487091adaf49b702e628a43b14b6c887fba0a2fa
refs/heads/master
2020-06-08T18:24:54.646542
2015-04-26T21:29:19
2015-04-26T21:29:19
34,632,291
0
0
null
null
null
null
UTF-8
C
false
false
198
c
#include <stdio.h> #include <stdlib.h> #include <strings.h> int main () { int arr[10]; memset(arr, 0, sizeof(arr)); int i; for (i = 0; i < 10; i++){ printf("%i\n", arr[i]); } return 0; }
[ "juliannieb@gmail.com" ]
juliannieb@gmail.com
339ab45495b7cf8059dca6734a785329190c85a4
8bbb0c57b0e3bf67941623d23463a8a82b2c8b07
/src/ft_read_map.c
5f138f71d4b00bf597a260441ce01afa70572a96
[]
no_license
Darwiinsol/fdf
9d9bf6a744f1059972eb584055c897516347f634
91b92b28719a92c2963eeaccb126b080ae1db2dc
refs/heads/master
2022-06-21T14:44:37.865742
2017-01-27T11:39:31
2017-01-27T11:39:31
80,131,918
0
0
null
null
null
null
UTF-8
C
false
false
1,046
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_read_map.c :+: :+: :+: ...
[ "apissier@e2r11p9.42.fr" ]
apissier@e2r11p9.42.fr
46e2ecec38f842742d97928a20d522bee6fa8f98
576d1fb42b1a99dba18e78da58b352ebeac8fe64
/tests/single_instruction_translation_validation/mcsema/memory-variants/maxss_xmm_m32/test.c
70b182572af83283fca9e65219707ae545f1e03d
[ "LicenseRef-scancode-unknown-license-reference", "NCSA" ]
permissive
mewbak/validating-binary-decompilation-1
b4542919d2e8f4a603cdadeade4dcf7919d6d1d8
e7ae1838e8da7930730d76aaf01f315cf1d966a1
refs/heads/master
2021-01-08T05:33:48.560721
2020-02-12T00:27:01
2020-02-12T18:07:14
null
0
0
null
null
null
null
UTF-8
C
false
false
51
c
void main() { __asm__("maxss -4(%rbp), %xmm1"); }
[ "sdasgup3@illinois.edu" ]
sdasgup3@illinois.edu
3a4da62dc6730beeb23bf1d17ca036999fcdbd1d
4594b2107067712b95b872bfe7ab4475c481f3e5
/Prog2.c
cd10d330d960cc03f2436d0d6da08a0463e0d445
[]
no_license
Frederico-Git/Loops
e88df4106af865d7df3314d1f36da18a08f46cec
6683ed6ce7c08889c9af491ab86ef5cdd48cccda
refs/heads/master
2021-01-05T16:34:41.412962
2020-02-19T18:15:16
2020-02-19T18:15:16
241,076,679
0
0
null
null
null
null
UTF-8
C
false
false
478
c
#include <stdio.h> #include <stdlib.h> int main (void){ int contar,numero; printf("Numero random 0 - 30 \n"); for (contar = 0; contar <= 20; contar++) { numero = rand() % 30; printf(" %d\n",numero); } printf("Apresentar os numeros entre 10-20 \n"); for (contar = 0; con...
[ "noreply@github.com" ]
Frederico-Git.noreply@github.com
f35d5da2c0c138e61662f6ad36b21e379651922a
8058bacc6e5c8f2ecc0786c8063ccb7e75d1d5dd
/ex22/ex22_main.c
c896935deb65a219e28159f57be105cf70e7bfe5
[]
no_license
rahulraghu94/LCTHW
54ee572b829e4fb30db26ed6797620d778c6f3c1
2ef3d533aa72481d2dcdfddf199b45058ddf54e0
refs/heads/master
2021-01-10T21:52:00.575447
2015-06-10T18:18:22
2015-06-10T18:18:22
30,826,394
0
0
null
null
null
null
UTF-8
C
false
false
1,078
c
#include "ex22.h" #include "../ex20/dbg.h" const char *MY_NAME = "Zed A. Shaw"; void scope_demo(int count) { log_info("count is: %d", count); if(count > 10) { int count = 100; // BAD! BUGS! log_info("count in thus scope is %d", count); } log_info("count is at exit: %d", count); count = 3000; ...
[ "rahulraghu94@gmail.com" ]
rahulraghu94@gmail.com
4e5ae58c81bf43d97203732f02c6c47d6c07147c
09c7b95d714386cfd4ff88f89520f4204aeddcc7
/Mithu Assignments/09_ControlFlow/07-DoWhileLoop/05-NestedDoWhileLoop/01-NestedDoWhileLoop_One/NestedDoWhileLoop_One.c
f6a3aa182c49cca0c86553b9cfe365d270ad98d6
[]
no_license
visonavane8/rtrOneEight
45ca78b5d7fc51b8a141d2008cabe019673d767b
0c38a9df25cc4dbf53ece66b4c19cea1c7b94bf9
refs/heads/master
2020-09-02T14:17:04.135799
2019-11-03T08:44:53
2019-11-03T08:44:53
219,239,286
0
0
null
null
null
null
UTF-8
C
false
false
272
c
#include <stdio.h> int main(void) { int i, j; i = 1; do { printf("i = %d\n", i); printf("--------\n\n"); j = 1; do { printf("\tj = %d\n", j); j++; }while (j <= 5); i++; printf("\n\n"); }while (i <= 10); return 0; }
[ "noreply@github.com" ]
visonavane8.noreply@github.com
3ab27bf89f6df30c2996c333e0180b7283be0f07
f1cdf9a99ff7ac3ae4016d0ebd64f51e6c139fd7
/features/FEATURE_LWIP/lwip-interface/lwip/src/include/lwip/apps/mqtt.h
ee880405510ddd3e9dbd10ce11222619bef5b36f
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
tman2018/relocated-mbed-os
0e61399e178bb9eb8c02f3d43524487dca380a90
ca661f9d28526ca8f874b05432493a489c9671ea
refs/heads/mbed-os-5.5
2020-03-19T02:49:55.025546
2017-09-14T10:46:30
2017-09-14T10:46:30
135,665,632
0
1
Apache-2.0
2020-03-08T01:20:32
2018-06-01T04:00:42
C
UTF-8
C
false
false
8,191
h
/** * @file * MQTT client */ /* * Copyright (c) 2016 Erik Andersson * 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 copyright...
[ "mika.leppanen@arm.com" ]
mika.leppanen@arm.com
8f5ccf2c2eeedd021e06c1be5142793503f72e91
2baa619090e455068722e58c927f89ac39c688ab
/Src/html.c
8396e83e900cd6b5ea3678ed053be163c591f0ae
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
egallesio/STk
773c2afcf7acc5a70fcf413ef33a441d818ea24b
4f118ea42676e64ce884ac121af6dd3a853ebf6a
refs/heads/master
2023-04-07T12:30:07.147153
2023-04-02T17:01:16
2023-04-02T17:01:16
218,806,588
6
5
NOASSERTION
2023-04-02T17:01:17
2019-10-31T16:09:21
C
UTF-8
C
false
false
20
c
../Extensions/html.c
[ "eg@unice.fr" ]
eg@unice.fr
b7e79ed198794b6be95f6b1cc77c37c94d5be6e7
5757a02573dcf98a3462acf1050adbf54d816da4
/Scripts/generatordict.h
86517c21b2bb28b3cdd40706b34de03b3fa05041
[ "MIT" ]
permissive
RCARODZ/LPM
bff53ee736868ec86f0e1c35f589a585a2670199
1b1381462dc8de825cfbddce80f7f37218acff4c
refs/heads/master
2021-08-08T22:45:56.000849
2018-12-17T03:58:40
2018-12-17T03:58:40
117,911,429
0
1
null
null
null
null
UTF-8
C
false
false
430
h
/* Define functionality for pgenerator */ typedef struct Account{ int id; //identification number for the account char *name; //account name char *username; //username char *password; //account password }Account, *PAccount; typedef struct LPM{ Account acc; char *por...
[ "ricardocastro@Ricardos-MacBook-Air.local" ]
ricardocastro@Ricardos-MacBook-Air.local
48cc829d27b6896ad1eac4282c19ca9268a7ea22
17b2e003b4dadfa29ef9626fd58944d1db82c3cd
/src/kinect_stream.h
83507f7edbff0963dcdaf06ae32ebf6dcc70ab18
[ "Apache-2.0" ]
permissive
aristizabal95/SinestesIA
1c5b79eff39368a4b48654d1175f8899407cbe9b
41bfda65dc94e9d6e52d14f0a34cbb5729bc9da4
refs/heads/master
2023-04-15T00:25:07.521148
2022-02-10T00:08:58
2022-02-10T00:08:58
139,514,209
1
0
Apache-2.0
2023-04-11T23:08:18
2018-07-03T01:47:03
Python
UTF-8
C
false
false
293
h
#ifndef KINECT_STREAM_H #define KINECT_STREAM_H void prepareMessage(); void *message_threadfunc(void *arg); void depth_cb(freenect_device *dev, void *v_depth, uint32_t timestamp); void rgc_cb(freenect_device *dev, void *rgb, uint32_t timestamp); void *freenect_threadfunc(void *arg); #endif
[ "alejandro.aristizabal24@gmail.com" ]
alejandro.aristizabal24@gmail.com
964c4c55489b5d450e2312403fc96538b5325d5b
fc10ca03da314ec292c178b3c068d17210ab27ec
/repeticao e3.c
0e592d6fc8debdf13c3766a75857f243843f47af
[]
no_license
MykeDrn/revis-o_c
e455fd01bbbbb600b6e33c2562fa0fc91d09864c
f1ed4b967f5bda074ce069ebf5990ff64a421c0a
refs/heads/main
2023-03-16T19:29:30.600006
2021-02-22T23:11:01
2021-02-22T23:11:01
340,363,810
0
0
null
null
null
null
UTF-8
C
false
false
393
c
#include <stdio.h> main(){ int n, i, tab; do { printf("\nTabuada a ser calculada (de 1 a 10): "); scanf("%d", &n); if(n < 1 || n > 10 ){ printf("Numero invalido.\n\n"); } }while(n < 1 || n > 10 ); for(i=1; i<=10; i++){ t...
[ "noreply@github.com" ]
MykeDrn.noreply@github.com
0b8a4c52bd5beb50cdf8633c2bd63a5c488e58b5
f73cfa6822f0feb9f60e74d3859f7d6e6645ea06
/USB/Host - Mass Storage - Simple Demo/Firmware/main.c
688b81932430f7466f628b42919c38a278269f7d
[]
no_license
ikalogic/Microchip
16af7b5b705758251a736ace3c9b2b3219ce32d0
ae5dabf9a9152953ea46f6de11a2b3c185535117
refs/heads/master
2021-01-18T10:30:34.215580
2014-01-08T23:29:04
2014-01-08T23:29:04
51,304,817
0
1
null
2016-02-08T15:07:59
2016-02-08T15:07:58
null
WINDOWS-1250
C
false
false
12,789
c
/******************************************************************** FileName: main.c Dependencies: See INCLUDES section Processor: PIC18, PIC24, and PIC32 USB Microcontrollers Hardware: This demo is natively intended to be used on Microchip USB demo boards supported by the MCHPFSUSB stack. See release...
[ "shay.h.maor@gmail.com" ]
shay.h.maor@gmail.com
b2d7ae4e2bb69d752529d413e6c9b01f78653627
ee20f257fd73cbf58eb9f5903eb93feb8c2cb03e
/Src/bsp_driver_sd.c
8875d728be4ad3d4f1e7287fa544608ef76b78b8
[]
no_license
Naughty1905/WaveformGenerator
8d3c169235689ee2e192dc7426884a67d2049cda
0edd286c02259d37e7629f9207d7e465e9a907e0
refs/heads/master
2021-01-06T02:03:53.588051
2019-05-13T22:25:39
2019-05-13T22:25:39
241,196,556
1
0
null
2020-02-17T20:02:39
2020-02-17T20:02:38
null
UTF-8
C
false
false
11,680
c
/** ****************************************************************************** * @file bsp_driver_sd.c for F4 (based on stm324x9i_eval_sd.c) * @brief This file includes a generic uSD card driver. ****************************************************************************** * This notice applies ...
[ "nicolai.shlapunov@gmail.com" ]
nicolai.shlapunov@gmail.com
459919588dcfd6c4ce9f3f8365e438adc4f5471a
bfccdfc8fa9130a45f9275e91cd6c747ca68548d
/salao_festa.c
9ef32c64d4952eb55832db13207df052dd5a13ca
[]
no_license
karolinavaz/salaodefesta
f64dc9ea512d727aad70269be34fc32fcda61f5d
825acc59170af34132aba383c2ec944dae7d581a
refs/heads/master
2020-06-10T04:08:21.307403
2019-06-24T20:45:55
2019-06-24T20:45:55
193,577,465
0
0
null
null
null
null
UTF-8
C
false
false
19,874
c
#include<stdio.h> #include<stdlib.h> #include<string.h> #include <conio.h> #include <locale.h> #include <ctype.h> void cadastro_cliente(FILE *arquivo); void cadastro_do_funcionario(FILE *arquivo); void cadastro_fornecedor(FILE *arquivo); void cadastro_festa (FILE *arquivo); /*REGISTRO PARA A DATA*/ struct data { ...
[ "noreply@github.com" ]
karolinavaz.noreply@github.com
2a3a2d781375ce86f574bb3af90da95cd40535b8
c690f30db65351fedbb86b76e64a6864c953a2e0
/regression/reference/arrayclass/typesarrayclass.h
901a6aee2b7944d8b595a53d1e8170cb53487a7d
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
LLNL/shroud
7a25871c0398b29c76dbbadef3c51ca69266dfbb
a057e7674b3391d626533d2f72f1193a0f6c1c08
refs/heads/develop
2023-08-30T22:24:29.105023
2023-08-23T23:46:27
2023-08-23T23:46:27
106,583,435
90
9
BSD-3-Clause
2023-09-05T21:22:38
2017-10-11T16:58:45
Fortran
UTF-8
C
false
false
2,920
h
// typesarrayclass.h // This file is generated by Shroud nowrite-version. Do not edit. // Copyright (c) 2017-2023, Lawrence Livermore National Security, LLC and // other Shroud Project Developers. // See the top-level COPYRIGHT file for details. // // SPDX-License-Identifier: (BSD-3-Clause) // // For C users and C++ im...
[ "taylor16@llnl.gov" ]
taylor16@llnl.gov
7518636c16339f821329e5d78ccd60f059734f38
e8e6a2b22033f21a717483655a43d95df7cde532
/learn/only_read/2016/kernel_platform/platform_device.c
1d4c670c771584dcea0fc233f22613a23c0d300d
[]
no_license
yangchaofeng/gittest
491d2f43b373a3635ab88b00da3450862f852a47
a3fba4bcaaa54e950109be3c71555a80692bc338
refs/heads/master
2022-10-29T01:22:20.190062
2022-10-05T14:56:50
2022-10-05T14:56:50
23,999,971
0
0
null
null
null
null
UTF-8
C
false
false
1,901
c
#include <linux/device.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/string.h> #include <linux/platform_device.h> #define S3C2400_PA_WATCHDOG (0x15300000) #define S3C24XX_PA_WATCHDOG S3C2400_PA_WATCHDOG #define SZ_1M 0x00100000 #define S3C24XX...
[ "you@example.com" ]
you@example.com
ec05020875cd167cf6392d88b650c2fe0835ce95
189ce300cd180b48317b9d5b9ad2bcc04055a3f8
/lib/Transforms/COpt/Opt-FunctionInlining/tests/test1.c
4b9bbc1570834f609aeaff57a18c4b65c6d65c6f
[ "NCSA" ]
permissive
LLVMCOpt/COpt
cab946a2f46f500504e4caf809533549355ce2b2
8b3a17452e765729622590d12fa4aa033346f457
refs/heads/master
2020-03-20T15:02:18.914415
2018-08-26T11:05:20
2018-08-26T11:05:20
137,494,332
0
0
null
null
null
null
UTF-8
C
false
false
115
c
int calc_sum(int a, int b) { return a + b; } int main() { int a=5, b=10, sum; sum = calc_sum(a,b); return 0; }
[ "sruthivenkat96@yahoo.in" ]
sruthivenkat96@yahoo.in
d4a050ddaa134a3084aa9ac922ce2170878f29fc
0aef26863f142bef75a0e4aaf7da76fc95e3d8ae
/crypto_encrypt/try.c
59b76a468d8db7d4151739340aa3cbe27dd91681
[]
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
5,578
c
/* * crypto_encrypt/try.c version 20200810 * D. J. Bernstein * Public domain. * Auto-generated by trygen.py; do not edit. */ #include "crypto_encrypt.h" #include "try.h" #include "randombytes.h" const char *primitiveimplementation = crypto_encrypt_IMPLEMENTATION; #define TUNE_BYTES 1536 #ifdef SMALL #define MAX...
[ "github@pureftpd.org" ]
github@pureftpd.org
1ecf593a2b4e1eae795155bdb19996d2f239676d
f4f19cc2d1e821c56f27b2b01fa748eac7046620
/18020569_server.c
11aa08c44cba309ca86ca2572db3ea745d07380d
[]
no_license
SandaliPerera/WebServer
4789f8ae11fa81ba6bc393555f7d7a1efba92a8f
5b44e303527c59536841f03de9c391bf6247347f
refs/heads/main
2023-02-10T02:41:16.880430
2021-01-05T16:58:44
2021-01-05T16:58:44
326,027,942
0
0
null
null
null
null
UTF-8
C
false
false
7,800
c
//Index-Number : 18020569 //Run File : gcc -pthread 18020569_server.c -o 18020569_server.c //Compile : ./18020569_server 8080 / #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/wait.h> #include <netinet/in.h> #include <string....
[ "noreply@github.com" ]
SandaliPerera.noreply@github.com
54e2759f25bbe74e0eecc0822ad826ca9819263b
3cbe53ff29aa20a74dc625bc89a327bf239ce065
/nemu/include/cpu/instr/cmp.h
791b2ed60951229cdfa191ad0b985138bef2571b
[]
no_license
TianxiangHu/pa2018_fall
71d145c60403c2dcee15f3a19dc6b097680550fd
83a70862f3bb376a030266edada2d242522cd11b
refs/heads/master
2020-08-03T13:31:56.728980
2019-09-30T03:33:17
2019-09-30T03:33:17
211,768,413
2
0
null
null
null
null
UTF-8
C
false
false
317
h
#ifndef __INSTR_CMP_H__ #define __INSTR_CMP_H__ make_instr_func(cmp_r2rm_b); make_instr_func(cmp_r2rm_v); make_instr_func(cmp_rm2r_b); make_instr_func(cmp_rm2r_v); make_instr_func(cmp_i2rm_b); make_instr_func(cmp_i2rm_v); make_instr_func(cmp_i2rm_bv); make_instr_func(cmp_i2a_b); make_instr_func(cmp_i2a_v); #endif
[ "41006203+TianxiangHu@users.noreply.github.com" ]
41006203+TianxiangHu@users.noreply.github.com
d13d7b4249d4694d92563d93b25cdba7352fde4d
5c255f911786e984286b1f7a4e6091a68419d049
/code/d167a34d-d30c-41eb-9b60-d229c3a8b3fa.c
25d0a4ddc0ffa10c2efafc23bc87fda12fbc6580
[]
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
254
c
#include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 534; l = 64; k = i/j; l = i/j; l = k/j; l = l/j; l = i%j; l = l-j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
ca2b32e3ddcd639dbb43267704ebeeaeb0eafd2c
ea570eac3a1385db592d2facf5fb9c71c11446da
/ShowString.h
61d6c76d3ade5d91a4c7dcc875688fc423dca9f2
[]
no_license
LichCharlie/StringProject_FileVersion
93d8f6a28da6a9a9246c0bf7df11b53da9ae130c
f7ba35e348b123b31fd787b572e570d1bd703a72
refs/heads/master
2022-06-15T20:09:01.270882
2020-05-11T12:27:47
2020-05-11T12:27:47
263,033,484
0
0
null
null
null
null
GB18030
C
false
false
147
h
#pragma once #include "Definition.h" #include "MyTCHAR.h" #include <stdio.h> //打印所有没有被删除的字符串 void ShowStrings();
[ "noreply@github.com" ]
LichCharlie.noreply@github.com
39f0afea23bbde05776ddde7f659ad10392891b6
8415a5f4a7c38f06cc0563aba4c5830bc9269e3a
/LongDivision_longmultiplication/headers/mul.h
5c20061574f3913b5eebab99839b5a83f55dfcdd
[]
no_license
chetanankola/AlgorithmsCode
ca0b9caeb576da06c48f1ae9d4fc678df41dae37
0341e1d736494ebd0c6ce5577d2fc094e160e4c3
refs/heads/master
2021-01-02T09:33:28.942157
2012-04-22T00:25:00
2012-04-22T00:25:00
2,568,672
1
0
null
null
null
null
UTF-8
C
false
false
228
h
#include "main.h" #define MAXLENOFOUTPUT 30 #define TABSIZE 8 uint64_t LongMul(uint32_t,uint32_t); int getlen(uint64_t); void displayNumber(int ,uint64_t); void displayString(int ,char *); void displayNumber32(int,uint32_t);
[ "chetan.ankola@gmail.com" ]
chetan.ankola@gmail.com
a110f00ef5e783289f030f2f28eb0ba72f346fae
4928b7d4acf2606402f372ab4d640f053ef2c0d2
/02-12_value4.c
588dc3698eb79ce160fe3d70b2f7f78c87860102
[]
no_license
renukadeshmukh/UpAndRunningWithC_DanGookin
b382fc720aa87adb77c14768bf30134c6a75069f
e22382b514700c447f1aa24c096f19398fe08571
refs/heads/master
2021-03-12T20:33:21.146312
2015-08-21T05:48:37
2015-08-21T05:48:37
37,171,428
0
0
null
null
null
null
UTF-8
C
false
false
146
c
#include <stdio.h> int main() { /* If you want to print %, add two percent signs*/ printf("I got %d%% on my C exam!\n",98); return(0); }
[ "renud1988@gmail.com" ]
renud1988@gmail.com
1d64b919b588a2d00c126158ae48a6c3be5f4d45
b60daf3ea19c7c7f29fd659144c6923f3d994769
/source/Draw_Scene.h
158a0fe2d5dfdc9c72cd808a267d4488487bdf2b
[]
no_license
Dmitry7393/OpenGL-Game
45dd788f3803e5524d10e3698af28ba7263cf7a7
18ae95479871f4a1a69c0d85d7a0a36abc4c24e0
refs/heads/master
2020-05-17T12:27:15.077867
2015-08-10T22:40:59
2015-08-10T22:40:59
40,509,400
0
0
null
null
null
null
WINDOWS-1251
C
false
false
17,584
h
#ifndef DRW #define DRW #include "Draw_cube.h" GLuint texture[11]; const float h = 3.0f; char st[32]; float cube_a, cube_b, cube_c; GLvoid ReSizeGLScene(GLsizei width, GLsizei height); void create_level(); void renderSphere( float cx, float cy, float cz, float r, int p ); //void loadTexture(void); AUX_RGBImageRec *Load...
[ "dmitry7373@gmail.com" ]
dmitry7373@gmail.com
a771e286d4318d998602d7274d42f4e36fb4ad02
c7792b5e5ae5e74d643518a5b0644020288fc6da
/mutants/fuzzgoat.mutant.16634.c
23100e48e3e694940d72c1001fa1945c98352504
[ "BSD-2-Clause" ]
permissive
agroce/fuzzgoattriage
0dc99daf2d061aaa0f58ceef3657b6f9ff411613
173c585cc7e87bcb2b82ae22fde56935352cd597
refs/heads/master
2020-07-29T14:49:39.691056
2019-09-20T18:07:19
2019-09-20T18:07:19
209,830,892
0
0
null
null
null
null
UTF-8
C
false
false
32,159
c
/* vim: set et ts=3 sw=3 sts=3 ft=c: * * Copyright (C) 2012, 2013, 2014 James McLaughlin et al. All rights reserved. * https://github.com/udp/json-parser * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1...
[ "agroce@gmail.com" ]
agroce@gmail.com
2a5c282bb93317900931102cb6f6bdc04cf8cd94
b2b27045b0fd451d35f1a410a7a8e0094d85fa95
/scripts/c-like/test_anim.m.C
b6090ccc736f86eaee5eae06089efc4562dd7c78
[]
no_license
connorag/UO-Demo-Decompiled
3fa34b392845bdafbb08faa66c3aac2c6e6b630c
c5aed3fb712ecfdb2b082f8ef6285c3f395bd2bb
refs/heads/master
2023-03-21T03:25:12.890450
2021-02-14T03:36:55
2021-02-14T03:36:55
null
0
0
null
null
null
null
UTF-8
C
false
false
185
c
// Real-C #include "ENGINE.hpp" TRIGGER( use )(obj user) { bark(this, "I should be animating"); doLocAnimation(getLocation(this), 0x10FE, 0x02, 0x14, 0x00, 0x00); return(0x00); }
[ "aaron.schnyder@gmail.com" ]
aaron.schnyder@gmail.com
d48d1af13d4429abf0f1e6a95a6a01ca7a1237d0
292758a2d4028e1594662aa0fed4fb8c13e8b421
/SAMD21/bsp/assert.c
1f234f44fba402bba5921a7adf4d3fd835138957
[]
no_license
rtirapegui/MSE_4Co2019_Proyecto_Final
dd4d8348098b5256bf871a3480c3a16c26f1f2f0
6a5b2ef1f61ea783c7a26a551b02e2833c358bfb
refs/heads/master
2022-12-13T03:48:06.087903
2019-12-01T21:33:57
2019-12-01T21:33:57
189,670,695
0
0
null
null
null
null
UTF-8
C
false
false
3,040
c
/* * -------------------------------------------------------------------------- * * PlatC * ------------- * * Coin-sized programmable multi-sensor node * * PlatC is an open-source, programmable multi-sensor node, * specifical...
[ "rtirapeg@itba.edu.ar" ]
rtirapeg@itba.edu.ar