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
4ff3afa80757d767b84f6e2457cee7332edcec7c
a3ec68c90366998bff51e6d46a2d39cf5814b6e1
/URI/C/PulaSapo.c
6b7c80100fd213e69f8e52821e9e50bb76953b37
[]
no_license
GustavoCunhaLacerda/URI
79a64ffbd968a94bc6fde3aa1c69b24aebbbdf46
e5361d5e9a75bc1afc8ce4b1084d9b5ed9873f1e
refs/heads/master
2020-08-29T00:51:44.506055
2019-12-17T21:07:53
2019-12-17T21:07:53
217,870,844
1
0
null
null
null
null
UTF-8
C
false
false
673
c
#include <stdio.h> #include <stdlib.h> #include <math.h> typedef unsigned int uint; typedef unsigned long long int ulli; //typedef enum Bool { // true = 1, false = 0 //} bool; int main(void){ int salto, qte, canos[1000]; int win = 1, aux; scanf("%d %d", &salto, &qte); for (int i = 0; i < qte; i++) ...
[ "gustavocunhalacerda@gmail.com" ]
gustavocunhalacerda@gmail.com
6e14eaf7633ba821fa9e2f86228e7d77efd4c362
79148a546ea5b12483fa71be4ee923a8e4a8d713
/소수구하기(2021-5-18).c
20818c0d2adf53b10b1cdec66df886a2f78f96ae
[]
no_license
woojae05/promgraming-C
b685b060ab73d8a10ba2a2869a8201866778565f
b673148caf7ed23a7e5224aae028fc81f7d8b1f9
refs/heads/main
2023-06-09T05:30:29.272068
2021-06-22T01:06:45
2021-06-22T01:06:45
364,886,865
1
0
null
null
null
null
WINDOWS-1252
C
false
false
397
c
#include<stdio.h> int prime(int n) { if (n < 2) return 0; for (int i = 2; i * i <= n; i++) { if (n % i == 0) { return 0; } } return 1; } int main() { int n; printf("¼ö ÀÔ·Â: "); scanf_s("%d", &n); int cnt = 0; for (int i = 2; i < 100; i++) { if (i > n)break; if (prime(i)) { printf("%4d", i...
[ "dnwo05@naver.com" ]
dnwo05@naver.com
0a65961a20389c36c69ba37444f92f3d57c2cd1c
ab05a5d42191988a1e801c087a29057081d8c5f2
/confidentiality/mutants/confidentiality_16.c
f77b927f64316d33c75338b4dd4a5362b4db27e1
[ "MIT" ]
permissive
Firobe/metacsl_examples
d7e59d3344b741cb8d5e1ba681e0f27a6ace03df
3de96f910b3b14bf08bfc1a3f5b619cbdbf9cc31
refs/heads/master
2020-04-08T08:54:34.213959
2019-04-29T14:17:22
2019-04-29T14:17:22
159,198,885
1
0
null
null
null
null
UTF-8
C
false
false
8,383
c
/* Generated by Frama-C */ #include "stddef.h" #include "stdlib.h" #include "string.h" #include "strings.h" enum allocation_status { PAGE_ALLOCATED = 0, PAGE_FREE = 1 }; struct Page { char *data ; enum allocation_status status ; unsigned int confidentiality_level ; unsigned int encrypted_level ; }; ...
[ "virgile.robles@protonmail.ch" ]
virgile.robles@protonmail.ch
f8428f922d2fe708574b35e7c3f0e2a5f1ff5bfb
6f078bb79247dfeb56bad8d90744266c6d4c692b
/keil/2--中级实验例程/实验3. 简易门铃设计/main.c
850cc268441cfb0d0cfc4cce0f9cfb375e3e98fe
[]
no_license
hackzhu/stc
5bce4c0fb24ebc0d64c96388aa03bb771a40ae56
b4f7093e651b8a8e79ccfe60b75ca6ea7cf30a2a
refs/heads/master
2023-05-07T16:37:06.516801
2020-08-18T13:15:35
2020-08-18T13:15:35
373,118,552
0
0
null
null
null
null
GB18030
C
false
false
1,689
c
/* 实验说明: 实验接线: 蜂鸣器模块-->单片机管脚 参考蜂鸣器实验接线(开发攻略内在对应的实验章节内实验现象有接线说明) BEEP-->P15 独立按键模块-->单片机管脚 K1-->P31 实验现象: 按下K1键,蜂鸣器发出”叮咚”门铃声 */ #include "reg52.h" //此文件中定义了单片机的一些特殊功能寄存器 typedef unsigned int u16; //对数据类型进行声明定义 typedef unsigned char u8; sbit beep=P1^5; sbit k1=P3^1; u8 ding,dong,flag...
[ "3110497917@qq.com" ]
3110497917@qq.com
88a179b44bf7d2559af1e784e60f111a90d7d52c
3933ab69bc75e04213d5779d3b50e31cffca6fde
/sys/amiga/winproto.h
98e7dd0b283adfca8d64f0987fa23a89d0b5db61
[]
no_license
saihack/nethack313
1de6043e361ee3088588187edd2cd822da6d1e64
d9397e35f45c29e6c3fe00d384ff04049c8fe344
refs/heads/master
2016-09-15T21:31:41.481851
2013-06-16T18:26:45
2013-06-16T18:26:45
null
0
0
null
null
null
null
UTF-8
C
false
false
4,603
h
/* SCCS Id: @(#)winproto.h 3.1 93/04/26 */ /* Copyright (c) Gregg Wonderly, Naperville, Illinois, 1991,1992,1993. */ /* NetHack may be freely redistributed. See license for details. */ /* winreq.c */ void EditColor ( void ); void DrawCol ( struct Window *w , int idx , UWORD *colors ); void DispCol ( struct Window *w...
[ "gmfstore4@gmail.com" ]
gmfstore4@gmail.com
d308127ed227f69bec5376d87db181471357a167
62d26003246dd99190445422c8b225c172143b7c
/ipc_message/msg.c
591017fa221852680fa475a7e6d2d08ec53e5748
[]
no_license
mbharti321/unixLab
c4f048f2c60a9c9decabfe5b951ad1da471876e1
be00a2e253717898653e4f21dd38b8c21ba9a2bc
refs/heads/master
2023-01-01T23:52:52.545796
2020-10-27T04:26:31
2020-10-27T04:26:31
268,746,356
2
0
null
null
null
null
UTF-8
C
false
false
753
c
#include<stdio.h> #include<unistd.h> #include<string.h> #include<stdlib.h> #include<sys/types.h> #include<sys/ipc.h> #include<sys/shm.h> #define SHSIZE 100 int main(int args, char *argv[]) { int shmid; key_t key; char *shm; char *s; key = 9876; shmid = shmget(key, SHSIZ...
[ "noreply@github.com" ]
mbharti321.noreply@github.com
22c7e9d0950eba5ef8271b51afc8194d6fcec0d8
2af584ea155dae5f0c1dd1f1261cd756a248e996
/api-testcases/test-bug-set-top-wrap.c
32ba112490cfc016719573cc0498a2708e5fb151
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sharpglasses/duktape
a0d79bb3e0e4ffa3448b32a24dc4b4d65912f7fa
e71f5defc81423d0c8bb65b3e36e507876da61da
refs/heads/master
2020-12-25T20:21:07.568653
2014-04-05T16:08:39
2014-04-05T16:08:39
null
0
0
null
null
null
null
UTF-8
C
false
false
1,499
c
/*=== top=0 rc=1, result=Error: invalid index: 536870912 top=0 rc=1, result=Error: invalid index: 357913942 ===*/ int test_1(duk_context *ctx) { printf("top=%d\n", duk_get_top(ctx)); /* duk_set_top() uses pointer arithmetic internally, and because * duk_tval is a multibyte structure, it's possible to wrap the *...
[ "sami.vaarala@iki.fi" ]
sami.vaarala@iki.fi
276e66bf4274fff5de7e4c02cb83810f30561425
8ccd0b0a3b72cc30123128f7ab39b0bbe997eea6
/040_040a_Module und Headerfiles/Code/HeaderFiles2/globals.h
3df7ec74f3aeb6427518a944bafa02e3a1ffd682
[ "Unlicense" ]
permissive
hobbyelektroniker/Arduino_Einstieg
d10c43cb02dd5407d4c6aa1d5e70703aaa631ffd
53ff0ecfbedc449008a65385bf4f3a5f0eeea53e
refs/heads/master
2023-06-21T23:31:25.280262
2021-07-29T19:12:56
2021-07-29T19:12:56
320,641,302
4
1
null
null
null
null
UTF-8
C
false
false
158
h
// Makros #define VERSION 100 #define SERIAL_SPEED 9600 // Konstanten const int startAnzahl = 3; // Globale Variablen extern int anzahl; extern int total;
[ "der.hobbyelektroniker@gmail.com" ]
der.hobbyelektroniker@gmail.com
96c21cca28a1c7c3b88e365b27f3dd130476a90d
ce07db7111d2b1a9df918bf39a419dad4d6e1f66
/init.c
bdc85540fa6b4aed9e00e617ac52771a35c786ac
[]
no_license
tikhono/RTv1
599ae655d4d50264865396f7ad6864d862da87f2
b2742407c2567dfeffdb7f3121a0209e3089a378
refs/heads/master
2020-04-20T01:37:32.921447
2019-04-11T16:48:20
2019-04-11T16:48:20
168,550,298
0
1
null
null
null
null
UTF-8
C
false
false
1,440
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* init.c :+: :+: :+: ...
[ "tihonovandrey11@gmail.com" ]
tihonovandrey11@gmail.com
f8bc37205d648c77fd84119b73faf3f207a7f2bb
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE194_Unexpected_Sign_Extension/s01/CWE194_Unexpected_Sign_Extension__fscanf_memcpy_51a.c
03e640a0311cc01333fdfd47e3362f75d158fd20
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C
false
false
2,424
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE194_Unexpected_Sign_Extension__fscanf_memcpy_51a.c Label Definition File: CWE194_Unexpected_Sign_Extension.label.xml Template File: sources-sink-51a.tmpl.c */ /* * @description * CWE: 194 Unexpected Sign Extension * BadSource: fscanf Read data from the console...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
18a06c79772800ef19abf2b6c934082b99643d96
cf1dd5e60fd676b51558d9071fd004890eef07f0
/users.c
f995f1a66fccbbb8a738ae355509288de3edad39
[]
no_license
glambertucci/practice
b8151ec0b5baa994d662446ca07b59e29dc84f3b
840d2c404bf64e9e57f351de4a22efe6221381bc
refs/heads/master
2021-01-20T03:29:06.870476
2017-04-27T22:10:09
2017-04-27T22:10:09
89,542,758
0
0
null
null
null
null
UTF-8
C
false
false
1,926
c
#include <stdio.h> int compare (char *,char *); int main (int argv, char * argc[]) { #define someone (0) #define nobody (1) #define maxuser (3) #define nozero (8) // Variables int is_he=nozero;//needs to be diferent than cero int user_num =maxuser; // arrays // char user1[]="Guido"; char user2[]="Lucas";...
[ "noreply@github.com" ]
glambertucci.noreply@github.com
739b122269ce73b5d705434afe60614890a9b1b0
ad84942705c41e3c58e289d7f01e1eac8b3517a6
/5CH_Code/Source/APP/CanCmd.h
d50b3bfdd725d3a686bedb87a522bd845cc4c97c
[]
no_license
yisea123/5CH_Code
d47d128d7a0b1c07c7b89eb055c07a59e02f3e89
dcf147fdfae651d0901c5f16cfcc2b460c3117af
refs/heads/master
2020-09-22T03:28:18.497756
2019-11-26T07:28:25
2019-11-26T07:28:25
225,032,445
1
0
null
2019-11-30T15:32:37
2019-11-30T15:32:36
null
UTF-8
C
false
false
203
h
#ifndef _CAN_CMD_H_ #define _CAN_CMD_H_ #include "stm32f10x_can.h" #include "DtypeStm32.h" #include "msg.h" #include "sys_time.h" extern UINT16 CanAddress ; void CanCmdInitizeCAN(void); #endif
[ "654653458@qq.com" ]
654653458@qq.com
5bd5b40ddbecfc76ca954e022755457dd04a0f3a
7fe6301d257b3a5e509891eb4781c8e74b8c2ba9
/data_converter.c
84143225c179d99dd093a0600fef505ece005696
[]
no_license
kvzhao/ml-svm
ccdba4d284c8b6f6498a96ad30f565c76631ba82
dd36d3ee6f32a49c2b95def1b928a856597cbcc1
refs/heads/master
2016-09-06T06:09:03.754070
2013-12-07T15:47:02
2013-12-07T15:47:02
null
0
0
null
null
null
null
UTF-8
C
false
false
1,656
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> FILE *fp, *rp; void read_file(const char *filename) { } int main(int argc, char **argv) { char input_file_name[64]; char output_file_name[64]; char line[80]; const char *error_msg; /* File source should more than one...
[ "kevinzhaio@gmail.com" ]
kevinzhaio@gmail.com
d045e51310de78f83a4667246b8e415dcc573782
71ee93e10a94fbfe6375352dc6da5ca2e41e802c
/cmsc313-assembly/proj7-polymorphism/src/AnimalClasses.h
61bf134c4fbb52da74dd44be8c7263cda93b09aa
[]
no_license
dangbert/college
ef25b08bd16bfb48d514d0668354a01342c9e104
b137658af27f86297ca70665ff5c487be06076ac
refs/heads/master
2022-12-15T19:37:46.603666
2021-11-23T19:30:44
2021-11-23T19:30:44
191,094,083
1
0
null
2022-11-22T02:43:47
2019-06-10T04:01:26
C
UTF-8
C
false
false
1,317
h
#define EAT_METHOD 0 #define SPEAK_METHOD 1 #define DISPLAY_METHOD 2 #ifndef ANIMAL_CLASSES_H #define ANIMAL_CLASSES_H /* Animal "class" */ typedef struct { int (**vtable)(void *, char *); /* pointer to array of function pointers */ /* data members for base class: (to be inherited by all derived...
[ "end1@umbc.edu" ]
end1@umbc.edu
c05ee6c665bd7c6eafa2eda2107296459f181802
f253cc3c6a19b43aa1ea4e9141365cd0a19faf99
/src/gdi/paint_device.c
e250711e5ea5b8dd698865bf0c2ad922c8be0ca3
[]
no_license
maliku/gitsvn-test
fbb521447f83fbb2b4596303fd29ea451c2e680b
1327854f1e39acf41564f186752be7515905c1c2
refs/heads/master
2018-12-29T04:44:43.322355
2013-06-26T04:01:21
2013-06-26T04:01:21
null
0
0
null
null
null
null
UTF-8
C
false
false
2,608
c
/*! ============================================================================ * @file paint_device.c * @Synopsis Base PaintDevice Impl. * @author DongKai * @version 1.0 * Company: www.ds0101.net */ #include "MIL_paint.h" CONSTRUCTOR(MPaintDevice) { _private(MPaintDevice)->w = 0; _private(MPaintDev...
[ "0101ds@8f0a55fe-1f8f-11df-90ab-373db8be4c2b" ]
0101ds@8f0a55fe-1f8f-11df-90ab-373db8be4c2b
bbe123bab6b5afacf0dd6a1176cc774fd2146226
d45c2851c41bfac7a169236460a368ebf5032394
/Lab 1/list-graph/EIFGENs/list-graph/W_code/C1/da979.c
859481d3091f11114032d017e8dac8ed1531af71
[]
no_license
GavinSit/EECS-3311-Software-Design
dd549ee44d7404a891e099e79d2545fefa502c57
c762d4a16643c4e9f2ae546a51fdddc9b5d6c952
refs/heads/main
2023-04-26T22:50:12.356097
2021-05-17T16:25:27
2021-05-17T16:25:27
null
0
0
null
null
null
null
UTF-8
C
false
false
17,502
c
/* * Code for class DATE_CONSTANTS */ #include "eif_eiffel.h" #include "../E1/estructure.h" #ifdef __cplusplus extern "C" { #endif extern EIF_TYPED_VALUE F979_7488(EIF_REFERENCE); extern EIF_TYPED_VALUE F979_7489(EIF_REFERENCE); extern EIF_TYPED_VALUE F979_7490(EIF_REFERENCE); extern EIF_TYPED_VALUE F979_7491(EIF...
[ "gavin.sit22@gmail.com" ]
gavin.sit22@gmail.com
98bbcfcbd946be7a9d511dc145b78667eda9c3f9
f5f5c63495de1c009c57fb819d88624e8299a779
/Systeme/projects/example/projet_sockets/projet.c
cebf9782640301a9563e604d15cfc885e9eef807
[]
no_license
firespeed/CNAM2012
f6769ee8e8705e75ea6fe42fc2305a00ebb25c9e
fdaf5c56f77a79282a0f47bb89c141d339794a2a
refs/heads/master
2021-01-10T19:20:54.978928
2013-06-06T13:40:22
2013-06-06T13:40:22
null
0
0
null
null
null
null
UTF-8
C
false
false
1,734
c
/*----------------------------------------------------------- Les tubes ordinaires le pere lit, le fils ecrit -------------------------------------------------------------*/ #include <stdio.h> #include <stdlib.h> #include <sys/wait.h> #include <errno.h> #include <string.h> #incl...
[ "anthony.comtois@gmail.com" ]
anthony.comtois@gmail.com
7157a52cbd1a136f13119c0a42d8d51851a550c3
84876ccd8a35cde5e5414a5d220d4dee4e0594b2
/boards/pi2/SVC_BOOT/uart01/uart01.c
6b7f0ade007ed7b23e9f9327787bcf95bdb85b05
[]
no_license
sarins/raspberrypi
2dc97c0e2c084fa4b6cc120721b9618db5e7bd96
cb2bf4c72b3573d6eb0318f5c5b97325729e1ac0
refs/heads/master
2022-04-24T00:41:04.421071
2020-04-26T16:52:15
2020-04-26T16:52:15
null
0
0
null
null
null
null
UTF-8
C
false
false
3,092
c
//------------------------------------------------------------------------- //------------------------------------------------------------------------- // 2 outer corner // 4 // 6 // 8 TX out // 10 RX in extern void PUT32 ( unsigned int, unsigned int ); extern void PUT16 ( unsigned int, unsigned int ); extern void...
[ "dwelch@dwelch.com" ]
dwelch@dwelch.com
5fc203b4486c4db95fdcb448d6036eb4760c1a88
8336f4d26fd2584fbaf29b755584c0f96d64d0ff
/subversion/tests/libsvn_wc/op-depth-test.c
c385c39fbe22b0cd2e4d6f655e0498ae31206a44
[ "BSD-3-Clause", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "X11" ]
permissive
tux-mind/platform_external_subversion
1fe6b7846ca81367ce3a972eeadcd2ffabb199df
e3e715b637b0b7c6a6a02316f3be48f2c1d5181c
refs/heads/master
2021-01-22T11:38:03.939173
2014-05-30T01:17:58
2014-05-30T01:17:58
20,106,315
0
1
null
null
null
null
UTF-8
C
false
false
121,753
c
/* * op-depth-test.c : test layered tree changes * * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information *...
[ "massimo.dragano@gmail.com" ]
massimo.dragano@gmail.com
da8e925bec918a24994e8b6af3b742c2376bf306
e44b44890504fce4ce3efb09cadd57a0e3d540a4
/src/sources/VorbisInfo.h
1f47fab8178a862fffb08ac3c6d150b6af1787d4
[]
no_license
vincent0629/GoodMedia
273c81a577da5304c621b32470b41d22e36f5e35
336cda318b19e9bb6100b3c636cf2506a54fe97c
refs/heads/master
2016-09-05T22:46:50.062903
2014-06-03T03:08:05
2014-06-03T03:08:05
20,427,934
1
1
null
null
null
null
UTF-8
C
false
false
210
h
#ifndef _VORBISINFO_H_ #define _VORBISINFO_H_ #include "MediaInfo.h" typedef struct _VorbisInfo : AudioInfo { wchar_t *pVendor; int nUserComment; wchar_t **pUserComment; } VorbisInfo; #endif
[ "vincent@cloudmosa.com" ]
vincent@cloudmosa.com
aa982fb500ca2dbf9e67c875eb98bcb2cc4d7001
b4547ab82fea0cc173158506debfdf3a79801a25
/src/input.c
c6b2bdb4a9b1e5379441d1aa71002c20414dea09
[]
no_license
ronald112/simple_survival_2d_shooter
8467db648711ae99a76e43077eadedded2aa28d6
e20098d9df9691694b1e7da902eede09b11487e7
refs/heads/master
2020-07-03T04:17:44.683090
2019-08-16T16:16:49
2019-08-16T16:16:49
201,780,564
0
0
null
null
null
null
UTF-8
C
false
false
2,557
c
#include "header.h" void doKeyUp(SDL_KeyboardEvent *event, t_app *app) { if (event->repeat == 0 && event->keysym.scancode < MAX_KEYBOARD_KEYS) { app->keyboard[event->keysym.scancode] = 0; } Mix_Pause(7); } void doKeyDown(SDL_KeyboardEvent *event, t_app *app) { if (event->repeat == 0 && event->keysym.scancode <...
[ "ronald112@.github.com" ]
ronald112@.github.com
ece5a3efa8896d6ece867f772e84da73b5403aca
c77bf232db06d71473f05da411d48a0492ac8300
/printf/src/conv_csp.c
65a5ea5633883cc9f39993ddd21d32c07759c3e0
[]
no_license
voder3/42
cc7c0ad0eefd5ee83201da6a29582ee77715c668
c5e70235382a2c810160bd5c23bbbbebb59c41c5
refs/heads/master
2022-03-01T23:47:20.719196
2022-02-09T13:58:47
2022-02-09T13:58:47
165,717,586
0
0
null
null
null
null
UTF-8
C
false
false
3,156
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* convcsp.c :+: :+: :+: ...
[ "arthurvoder@gmail.com" ]
arthurvoder@gmail.com
783503e2e44cb1d166aab80053b0325b8e9921c1
7a875fc13215c60c0270f1f213cfc2a784872777
/appseed/tsmf-client/channels/rdpsnd/client/ios/rdpsnd_ios.c
bd98373b643db35d46cd96ccbeac830bbe77d549
[]
no_license
ca2/third1
bef97986fc92ad6467ce11f86b4682809b2ab56a
b27557f90493234b5f288a1be0750bc0cba6512f
refs/heads/master
2021-09-27T01:44:49.722906
2018-11-05T12:36:49
2018-11-05T12:37:03
null
0
0
null
null
null
null
UTF-8
C
false
false
7,856
c
/** * FreeRDP: A Remote Desktop Protocol Implementation * Audio Output Virtual Channel * * Copyright 2013 Dell Software <Mike.McDonald@software.dell.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtai...
[ "camilo@ca2.email" ]
camilo@ca2.email
a14f37e726ded039e1bcebdddcfcf629c38dbd16
6b4bb1db19b378ca3df31717ab96d62151a714e1
/examples/arrayc.c
5755038fee9e2e704c7f44b3cc2ca83b7674badd
[ "MIT" ]
permissive
lee-naish/Pawns
68efa390eded68d4806f995ac7d9e104c5afc5b6
5676d78cd2179370672a01167a47573145418c3a
refs/heads/master
2023-06-10T05:39:30.397410
2023-06-03T05:33:51
2023-06-03T05:33:51
40,703,929
11
1
null
null
null
null
UTF-8
C
false
false
1,220
c
// prototype array support for pawns // Old - use array.pns now (though no inline pragma) #include "array_adt.h" #include <stdlib.h> #include <stdio.h> #include <stdint.h> // (generic) arrays are pointers to a block of words (void*), the first // is the number of elements, the rest are the elements of the array // m...
[ "lee@unimelb.edu.au" ]
lee@unimelb.edu.au
a8c90f01a9777c8bc59e323d7927bd58499928d0
6435ade8cce3ca13b52769cfa564786a7aae86b9
/3d-srld_mpp/MPP/BOARD/usart.c
fb057137a1bf266f266968d7662e859bbfd5024d
[]
no_license
oleksa-oleksa/STM32_ARM_Cortex_Practice
fe65ce0fbd87d8c9d9e9d1c5c0c4d4dd4e609a20
a607bf4c3681b467596a7a55ef6fb18555cf4490
refs/heads/main
2023-03-03T02:14:40.085450
2021-02-09T23:30:05
2021-02-09T23:30:05
314,328,370
0
0
null
2021-01-14T13:18:00
2020-11-19T17:56:38
C
UTF-8
C
false
false
7,092
c
#include "usart.h" char usart2_tx_buffer[USART2_TX_BUFFERSIZE]; char usart2_rx_buffer[USART2_RX_BUFFERSIZE]; char uart2_RX_zeichen = 0; unsigned char usart2_running = 0; // Sendet void usart2_printf(const char* format, ...) { if (format) { // Warte, bis der letzte Transfer abgeschlossen wurde whi...
[ "oleksandra.baga@gmail.com" ]
oleksandra.baga@gmail.com
3651e6da79873c084805769af0e03fa162bf77df
238efa0acd0b77d51a0da7d0692ab905c8c39aae
/clib/adisCube16405.h
700a05c52c4e29f584debf2d09d77b26c97f8c27
[ "MIT" ]
permissive
devnullgit/SLUGS
c2b9e7f8cf89ae6c2cf5e3b94c14e5414d1257f1
93f6fe65d9607a0dada71a5f3908a0018591dc03
refs/heads/master
2021-01-21T01:17:45.333411
2011-01-23T16:12:05
2011-01-23T16:12:05
null
0
0
null
null
null
null
UTF-8
C
false
false
6,541
h
/* The MIT License Copyright (c) 2009 UCSC Autonomous Systems Lab Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
[ "malife@gmail.com" ]
malife@gmail.com
69dc695126b1908754d0f79c85e8cfaf97aba75f
bc67a627eed32788951d839acf32f541d949523b
/unity-samples/iOS/Roll-A-Ball-Ios/Classes/Native/UnityEngine_UnityEngine_TextAnchor.h
09478a112ba5ee49bab85e9e83fd9a39b4ccb027
[]
no_license
alonkrifcher/appboy-unity-sdk
dd6c8e6dfbd28dda5782514149520058c03c9946
8670b5f567f1027a14dee2878cda801e79012226
refs/heads/master
2021-01-18T18:56:49.214651
2015-07-14T16:16:34
2015-07-14T16:16:34
41,434,938
0
0
null
2015-08-26T15:53:33
2015-08-26T15:53:33
null
UTF-8
C
false
false
286
h
#pragma once #include <stdint.h> // System.Enum #include "mscorlib_System_Enum.h" // UnityEngine.TextAnchor #include "UnityEngine_UnityEngine_TextAnchor.h" // UnityEngine.TextAnchor struct TextAnchor_t719 { // System.Int32 UnityEngine.TextAnchor::value__ int32_t ___value___1; };
[ "wenzhi@appboy.com" ]
wenzhi@appboy.com
584335daaccee1cf9787cd9e29dc302d34ca367a
57f735c72321f7b8be1fbaa200a9ae503b5781a0
/e7/堂上练习/统计不同数字个数.c
fde37a69741ba5b9b7ec0f78c1a458db4fa47046
[]
no_license
SeraphinaLiang/oj_code
7db22bd9e6163c77e0d9e1519b10c5c131c6b70a
022864167c4de201de68001f13fb563e29722ca6
refs/heads/master
2023-05-04T04:30:58.930490
2021-05-18T14:11:29
2021-05-18T14:11:29
331,895,048
0
0
null
null
null
null
UTF-8
C
false
false
294
c
#include "stdio.h" main() { int num[1000],t,c=0; for(int i=0;i<1000;i++) { num[i]=0; } for(int i=0;i<20;i++) { scanf("%d",&t); num[t]=1; } for(int i=0;i<1000;i++) { if(num[i]==1) c++; } printf("%d",c); return 1; }
[ "1010814876@qq.com" ]
1010814876@qq.com
501d64128903b0fd3de3a9de6a6a8bc023a42e28
db6903560e8c816b85b9adec3187f688f8e40289
/VC98/Include/LOADPERF.H
eea83294c2d5861ef96143c42f7250b591a0ec99
[]
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
1,405
h
/*++ Copyright 1995 - 1998 Microsoft Corporation Module Name: loadperf.h Abstract: Header file for the Performance Monitor counter string installation and removal functions. Revision History 16-Nov-95 Created (a-robw) --*/ #ifndef _LOADPERF_H_ #define _LOADPERF_H_ // fu...
[ "vc6@ultim.pw" ]
vc6@ultim.pw
350d79602dc7e63401e2d637201d98245b9c2bfe
a2cfeb6d89c32dfecabb7b3453d817b7e0fc70ab
/testcase/game/src/nemu-pal/unused/midi.c
d3477b6865a9094293f09c39e3cd74e586ad50d9
[]
no_license
NJU-CS-SYS/NEMU
e0b90214b3f4c6c4624b0b94acbf46eeedd89a96
d2e549960dea27283901c564187fc4436c63ac57
refs/heads/master
2021-01-21T04:31:16.072180
2016-07-11T11:14:54
2016-07-11T11:14:54
52,498,215
1
1
null
2016-05-09T10:42:18
2016-02-25T05:02:41
C
UTF-8
C
false
false
1,341
c
/* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */ // // Copyright (c) 2011, Wei Mingzhi <whistler_wmz@users.sf.net>. // All rights reserved. // // This file is part of SDLPAL. // // SDLPAL is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public...
[ "huizhewang@outlook.com" ]
huizhewang@outlook.com
9c32f536ef9c9d9f9911a7d09aec9ef7399dbe56
8c24e4cd1dd8b4771d568d28c0a873f0d5b68941
/code/fibonacci.c
8ef51edf9d08f9d8368bb47cca94c5ef689fe103
[ "MIT" ]
permissive
andrelimabessa/tcc
885594ab4966210bc1942b94a6609183e74e2c76
ed9d000e80050c699976db20ca8769d0bf093284
refs/heads/master
2020-03-30T00:03:31.320651
2018-09-26T23:53:07
2018-09-26T23:53:07
150,503,203
0
0
null
null
null
null
UTF-8
C
false
false
114
c
int fibonacci(int n) { if (n == 1 || n == 2) { return 1; } return fibonacci(n - 1) + fibonacci(n - 2); }
[ "andrebessa@gmail.com" ]
andrebessa@gmail.com
9deda8ab385b6dc65da87d377535e7b0ca680254
8011fb04b54f068764a9e5276c7b5fe16e4d5599
/liste.h
37bc2fade5583ca00c548cdfeaa614066d937430
[]
no_license
kodunaJJ/Projets_Info_s2_graphe
ac95cc9f9c4856e78695d69720474074dde4b33f
06c850bec2207ac1ea8d637e2ec5c888919b19d0
refs/heads/master
2021-01-01T03:31:56.077763
2016-05-08T19:26:09
2016-05-08T19:26:09
57,596,861
0
1
null
null
null
null
UTF-8
C
false
false
460
h
#ifndef _Liste #define _Liste #include "carte.h" struct cellule { CARTE val_carte; struct cellule* suiv; }; typedef struct cellule Maillon; typedef Maillon* Liste; Liste creer_liste(void); int est_vide(Liste l); void visualiser_liste(Liste l); Liste ajout_tete(CARTE c, Liste l); Liste supprimer_tete(Liste l) ...
[ "m-t.jordan@live.fr" ]
m-t.jordan@live.fr
365223726d8626d1a5a88f6dcfd10b401df689ec
b9e29bbf7979625c5b8c9e1c88dc97c26422ee2d
/display/ILIxxxx_parallel/fontx.h
74584bfa620ec5aad37fd91ef62bf3955024534f
[]
no_license
BM45/iRadio
76bfdbccbe4e3497d6969cc58d32ad8d849ad84b
f65c9fc6b10f43b639f51b9e369d0f54715ae353
refs/heads/master
2023-03-09T13:02:35.943643
2023-02-23T08:43:23
2023-02-23T08:43:23
176,723,009
23
2
null
null
null
null
UTF-8
C
false
false
1,045
h
#define FontxGlyphBufSize (32*32/8) typedef struct { const char *path; char fxname[9]; bool opened; bool valid; bool is_ank; uint8_t w; uint8_t h; uint16_t fsz; uint8_t bc; FILE *file; } FontxFile; void Fontx_addFont(FontxFile *fx, const char *path); void Fontx_init(FontxFile *fxs,const char *...
[ "mbernhard1945@gmail.com" ]
mbernhard1945@gmail.com
4c53c3d244e0b341689d31300cad15294cb1126f
d24ebd1fd3f42da9274c4eb45a77742dc8d1982f
/C/6월 16일/7장/07번/07번.c
d95168aa460acf4b9d0302bcbe1f28967b8b6a6f
[ "MIT" ]
permissive
mongbro/TIL
951dcceaf5ca39db402c7316907813971eab1449
f8604bdaabe4671db4c969fa49b308de4e7f96d4
refs/heads/master
2021-09-09T14:45:04.815490
2021-08-29T16:29:17
2021-08-29T16:29:17
187,811,725
0
2
null
null
null
null
UHC
C
false
false
734
c
#include<stdio.h> int main() { int count, j; for (int i = 2; i <= 100; i++) //2에서 100 사이의 수까지 탐색한다. { count = 0; //약수의 갯수를 세는 변수 for (j = i; j >= 1; j--) //i부터 시작해서 1이 될때까지 하나씩 빼면서 약수인지 검사한다. { if (i%j == 0) count++; //약수라면 0으로 시작했던 count의 값을 증가시킨다. } if (count == 2) //약수가 2개일때 즉,...
[ "whd4607@naver.com" ]
whd4607@naver.com
3eae2a6cf095f114e2a5a0484c99949659972448
76133934b1dd287273a9bfa0c801d10d08a21b21
/src/script/kenfmcoinconsensus.h
d6ae943f2329b4a2aa7436cfff0c717376d934b3
[ "MIT" ]
permissive
kenfmcoin/kenfmcoin
d8783b34fcb3ae01067e8d1b33e3a73e3b82b1f9
1fa48487593233f2066757dc54f48b2349e2d9db
refs/heads/master
2020-03-10T17:53:31.569229
2018-04-14T12:28:55
2018-04-14T12:28:55
129,511,375
0
0
null
null
null
null
UTF-8
C
false
false
3,766
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The KenFMcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef KENFMCOIN_KENFMCOINCONSENSUS_H #define KENFMCOIN_KENFMCOINCONSENSUS_H ...
[ "37983255+spineinhalb@users.noreply.github.com" ]
37983255+spineinhalb@users.noreply.github.com
1e11a79012bffcddbf32d5c53b72f937c1c1797e
53c4bc0fe4c2b54db9effc74508bc751ed4fc38a
/Transmission/Serial3/Serial_FL.h
b84d0d6c6680a23d6af635ef071a6d0552bb2dd9
[]
no_license
KamiGoku/Polysectoid
f2e1a589a0f2d169db843a4490afd69e6a9c4324
a1a673d67370dd18fe07490b7671b1a9c49618b3
refs/heads/master
2020-03-28T22:31:14.268752
2019-07-01T09:39:38
2019-07-01T09:39:38
149,238,918
0
0
null
null
null
null
UTF-8
C
false
false
165
h
#define PACKET_SIZE 14 void sendData(AltSoftSerial &serialTwo, char packet[PACKET_SIZE+1]); void readData(AltSoftSerial &serialTwo, int &read_flag, RingBuf *buf);
[ "raiyanac@gmail.com" ]
raiyanac@gmail.com
ca3afdc09bccd974e0c36c0603e6f8c33100a3e6
79bfe308fad48f19a63814bb668367b4539c70b9
/libk/src/stdlib/alloc.c
3277ab35e37fcb5be76ca9a330420e8384cc1564
[]
no_license
Zoreno/OS5
642f010aba32ea23b49c1167d449c8f442de6e91
f8853ca98afde8bcf45991e444c4bd231e23bc80
refs/heads/master
2021-01-22T21:12:49.354010
2018-02-10T20:34:52
2018-02-10T20:34:52
100,679,974
1
0
null
null
null
null
UTF-8
C
false
false
1,749
c
/* alloc.c --- * * Filename: alloc.c * Description: * Author: Joakim Bertils * Maintainer: * Created: Sat Feb 10 00:50:48 2018 (+0100) * Version: * Package-Requires: () * Last-Updated: Sat Feb 10 00:51:38 2018 (+0100) * By: Joakim Bertils * Update #: 2 * URL: * Doc URL: * Keywords: ...
[ "metallica317@spray.se" ]
metallica317@spray.se
d3c752386b406e2c70a6b15785ee9d8fa0cf71a3
626f6fa934cf6c875a436491dfbcda1304aee79e
/Windows/basic_echo/win_client.c
1f5acfd7b03bf16d174820f91393fe9b3b1753c7
[ "MIT" ]
permissive
QGrain/Socket
53dc8b50dc5651a9371c01005e3b4aa1d43853c6
f43a25eab80f8432bf855350dec3009c83380e97
refs/heads/master
2020-06-02T00:41:38.382167
2020-03-13T13:09:57
2020-03-13T13:09:57
190,982,065
4
0
null
null
null
null
UTF-8
C
false
false
1,213
c
#include <stdio.h> //#include <winsock2.h> #include <Ws2tcpip.h> #pragma comment(lib, "ws2_32.lib") int main() { WSADATA wsaData; SOCKET Client; SOCKADDR_IN ServerAddr; int port = 10472; char recver[100]; if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) { fprintf(stderr, "WSAStartup fail...
[ "zhiyuzhang1999@163.com" ]
zhiyuzhang1999@163.com
3fb267a2b264745b481f3c9ec5803b58587702ba
bcee6898c2a60d6d1339b8e3eadc2f7a0778ee14
/globalfunctions.c
a9b62b470fb8cc0e886746f152d1d284af33bc02
[]
no_license
krisztinagy/libella
1be81eded5d9df9ccc6d4c2b72315d1ad575e31e
bd5eb776a84862a8cda1a9dbd4023a1607c49de5
refs/heads/master
2021-01-23T04:09:51.396300
2014-10-28T19:23:40
2014-10-28T19:23:40
null
0
0
null
null
null
null
ISO-8859-2
C
false
false
487
c
#include "stm32f4xx.h" int sys_delay = 0; //****************************************************************************************** // @leírás: SysTick megszakító rutin csökkenti a sys_delay értékét. // @paraméter: ms: várakozási idő us-ban. //***********************************************************************...
[ "nagy729krisztina@gmail.com" ]
nagy729krisztina@gmail.com
5de789da5aae22ef89d9cf02018f90d21fc88f4a
f478f0046779784b2be438c05b4ebddeeefbc709
/src/commands/ctx_vcfcov.c
f36df079f1c62587277addb77a256469a6be7b45
[ "MIT", "LicenseRef-scancode-public-domain" ]
permissive
Phelimb/mccortex
28e951320ed3a68f53c91970986b6ec84eac8949
86b4ffe64521e1fe3ac437ea007f668e5d3171af
refs/heads/master
2021-01-22T04:33:57.918200
2016-03-20T21:12:33
2016-03-20T21:12:33
46,926,157
3
3
MIT
2019-10-11T10:45:59
2015-11-26T12:42:22
C
UTF-8
C
false
false
12,340
c
#include "global.h" #include "commands.h" #include "util.h" #include "file_util.h" #include "db_graph.h" #include "graphs_load.h" #include "gpath_checks.h" #include "vcf_coverage.h" #include "vcf_misc.h" #include "htslib/vcf.h" #include "htslib/faidx.h" #define SUBCMD "vcfcov" const char vcfcov_usage[] = "usage: "C...
[ "turner.isaac@gmail.com" ]
turner.isaac@gmail.com
725b62a6bd38042dbdaa21aa626c3869553b0617
0a9282e0832291af874c563e04452ce779daacad
/include/nuttreeset.h
7fe09545a59476604b90329d786ae50177055d8c
[]
no_license
gale320/nuttk
9e4792f89c2bd34d71db6c9c04fc8349b0aded69
f9354c7d1488339e37bc9248eb063793530e9626
refs/heads/master
2020-12-10T03:37:38.261583
2020-01-13T02:04:13
2020-01-13T02:04:13
233,491,434
0
0
null
null
null
null
UTF-8
C
false
false
2,486
h
#ifndef __NUTTREESET_H__ #define __NUTTREESET_H__ #ifdef __cplusplus extern "C" { #endif #include "nutcommon.h" #include "nuttreetable.h" /** * An ordered set. The lookup, deletion, and insertion are * performed in logarithmic time. */ typedef struct nut_treeset_s TreeSet; /** * TreeSet configuration structure...
[ "gale320@gmail.com" ]
gale320@gmail.com
9f892069f305566d946b7f8cecc57968b1465f71
4827ebf296687762061f7df9e6ea131b6cf74a93
/Decoration.h
ebb77dfb6a0e0a2dfc674753f2754183f6855e9f
[ "MIT" ]
permissive
AthenaADP/MHP3-ASS
c84d03cb6c30195fc8968b02330c7f7f96dbe15b
a22f3ac23e401bd1e1b1df505ebbc5c7590a75b2
refs/heads/master
2021-08-19T12:40:08.957789
2017-11-26T09:33:06
2017-11-26T09:33:06
112,071,834
5
4
null
null
null
null
UTF-8
C
false
false
1,045
h
#pragma once #include "Common.h" #include "Skill.h" ref struct Query; ref struct Decoration { System::String^ name; unsigned hr, elder_star, slots_required, rarity, difficulty, index; bool is_event; List_t< AbilityPair^ > abilities; List_t< MaterialComponent^ > components, components2; bool IsBetterThan( Deco...
[ "hownottobeseen@gmail.com" ]
hownottobeseen@gmail.com
743ee74916c75bd6bb467f1e97d2a246eab598f0
2be746b41ca1fd0a4c609f00064ad8321485f86d
/Lang_C/chap3/2.c
5a2c0689c656d1d8f486893b1be0a0e7b4ed3ef8
[]
no_license
susielau/ForPrac
5aa7f195abebda06f1b303b757bd5a885485ea93
a6a99559dc0009702e1aa6163945d1d76dd31ebb
refs/heads/master
2021-07-14T04:49:43.553925
2018-10-25T01:24:22
2018-10-25T01:24:22
115,300,970
1
0
null
null
null
null
UTF-8
C
false
false
450
c
//Problem NO.2 #include <stdio.h> #include <math.h> int main(){ float p1,p2,p3,p4,p5; p1=1000*(1+5*0.0585); p2=1000*(1+2*0.0468)+1000*(1+2*0.0468)*(1+3*0.054); p3=1000*(1+3*0.054)+1000*(1+3*0.054)*(1+2*0.0468); p4=1000*(1+0.0414)+pow(1000*(1+0.0414)*(1+0.0414),5); p5=pow(1000*(1+0.072/4),4*5); ...
[ "susielau1998@outlook.com" ]
susielau1998@outlook.com
92150a357c624f023cd5703c1f6b635f8fe64346
bdb86d72be26f0d2d4d72d692f0875887fd11402
/BCC102/include/windows/sdk/winver.h
c44a6258cd978e2e633679872dd0dbb79adce999
[]
no_license
KaarthicPulogarajah/Battleship
28168359e4209a36b12e855668105ab31f7121f3
a216169e28c7b54c730df23d61ab07d25d487c05
refs/heads/master
2021-01-12T04:23:33.630829
2019-08-21T01:37:39
2019-08-21T01:37:39
77,579,201
0
0
null
null
null
null
UTF-8
C
false
false
8,645
h
#pragma option push -b -a8 -pc -A- -w-pun /*P_O_Push*/ #include <winapifamily.h> /*****************************************************************************\ * * * winver.h - Version management functions, types, and definitions ...
[ "kaarthicp@hotmail.com" ]
kaarthicp@hotmail.com
3e9e0f66387b297fd4c95e9e29c35a4a433416aa
cd71ff07588f49a6957a221138c1db2a67432b32
/tcl8.4.5/generic/tclClock.c
77e349461268e853832f94c4eea80cce947b862b
[ "TCL" ]
permissive
soohyunc/USN
1f87c63181dfa7ff811810c27be677d5fcb92711
f27e0c8af84698d0b5aca58e24e1dfc1ad6d9f55
refs/heads/master
2021-01-06T20:42:36.949756
2010-12-09T16:40:33
2010-12-09T16:42:06
null
0
0
null
null
null
null
UTF-8
C
false
false
10,093
c
/* * tclClock.c -- * * Contains the time and date related commands. This code * is derived from the time and date facilities of TclX, * by Mark Diekhans and Karl Lehenbauer. * * Copyright 1991-1995 Karl Lehenbauer and Mark Diekhans. * Copyright (c) 1995 Sun Microsystems, Inc. * * See the file "license.terms...
[ "soohyunc@corona.cs.ucl.ac.uk" ]
soohyunc@corona.cs.ucl.ac.uk
5d814a660b9db34480127de86a5aaec9c0b06984
5eff7a36d9a9917dce9111f0c3074375fe6f7656
/lib/mesa/src/amd/common/sid.h
73693c26935f650ceb0c21c4c79ae613832bcd8b
[]
no_license
openbsd/xenocara
cb392d02ebba06f6ff7d826fd8a89aa3b8401779
a012b5de33ea0b977095d77316a521195b26cc6b
refs/heads/master
2023-08-25T12:16:58.862008
2023-08-12T16:16:25
2023-08-12T16:16:25
66,967,384
177
66
null
2023-07-22T18:12:37
2016-08-30T18:36:01
C
UTF-8
C
false
false
17,918
h
/* * Southern Islands Register documentation * * Copyright (C) 2011 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including witho...
[ "jsg@openbsd.org" ]
jsg@openbsd.org
573c94b06bacecd4bea477c7fd1c90a669fd7fa8
e006a9059f14bd35cd7f4184da6508775ffaa5b9
/error.c
e2f18309fe85601c2827b6f6afbd01eb086e3db8
[]
no_license
moneytech/harbour-lang
be398581c856ec24db8ff862c0679de8d7b3c896
b79a86a946350adc89916477d8811f90d2022f61
refs/heads/master
2020-11-27T07:39:58.100719
2018-10-23T22:13:08
2018-10-23T22:13:08
null
0
0
null
null
null
null
UTF-8
C
false
false
298
c
#include "error.h" #include <stdio.h> #include <stdlib.h> void fatal(const char * str, ...) { va_list args; va_start(args, str); // Print error fprintf(stderr, "FATAL ERROR:\n\t", str); vfprintf(stderr, str, args); fprintf(stderr, "\n"); // Exit with error code va_end(args); exit(1); }
[ "t1000.pixlark@gmail.com" ]
t1000.pixlark@gmail.com
2287955f627fe1c82846f4ed52b7efaa1998d74b
a05d8c25372be7327348b32091cfa8658cfb3764
/Corewar/asm/include/struct.h
2fd4dd4815e9471d6359b5be66bb2c27ccb1c136
[]
no_license
SheItoon/school_projects
bc6f117a24db25a10be2d99520315115d2f52291
5ff6b6a7e576b0d208d31712208ba0feef127552
refs/heads/master
2023-08-25T13:26:12.521147
2021-10-25T23:00:24
2021-10-25T23:00:24
394,038,804
0
0
null
null
null
null
UTF-8
C
false
false
1,195
h
/* ** EPITECH PROJECT, 2020 ** struct.h ** File description: ** project structs */ #include "lib.h" #include "istl/utility.h" #include "istl/list.h" #include "istl/iterator.h" #include "istl/common_types.h" #include "istl/hash_table.h" #include <stdbool.h> #ifndef STRUCT_H #define STRUCT_H typedef long long int ptr_...
[ "Shelton@localhost.localdomain" ]
Shelton@localhost.localdomain
0d4d681d556e3484ea6c0dc3a02d799a4a8ea965
8c460478578764eebfc39fdb089aef3f4ff4e456
/carCode/include/header/leds.h
a4f631e2ab16e6a2d8ff07fffbb809bba3daf7bf
[]
no_license
baloch2m/alibaloch
4677c611355219b3ef54217c54a664f4ab608ea4
c51ca18f5dc2d44c657a796e1159ec0acf3a1ab4
refs/heads/master
2020-05-02T16:33:59.353707
2019-03-27T21:15:25
2019-03-27T21:15:25
178,072,701
0
0
null
null
null
null
UTF-8
C
false
false
80
h
#ifndef leds_H #define leds_H #include "main.h" void setupLeds(void); #endif
[ "baloch2m@uregina.ca" ]
baloch2m@uregina.ca
2853098e31a00b6dbd45d4502749da251726fc4c
7ec55fea6eb20b6f66957810bf44425b7932bc19
/PROGRAM PRACTIOCE/practice/end-of-list.c
1154d2bd560bcb3e9d65662f118416b3623dacf0
[]
no_license
rsherlocks/Problem-Solving
8e9ffd5b35fa1634af83175a89db1a43330e1171
8d876cddf638d470eeff3f2c51521de2716202fe
refs/heads/master
2022-10-07T18:49:15.876057
2020-06-04T11:19:38
2020-06-04T11:19:38
269,339,357
0
0
null
null
null
null
UTF-8
C
false
false
1,135
c
#include<stdio.h> #include<stdlib.h> typedef struct Node { int a; struct Node*next; } node; node *head = NULL; node *current = NULL; void insert(int x) { node*new_node=malloc(sizeof(node)); new_node->a=x; new_node->next=NULL; if(head==NULL) { head=new_node; } else {...
[ "hasan15-7482@diu.edu.bd" ]
hasan15-7482@diu.edu.bd
cf4d31d317ac0de3be307e2f114a96a353a80bec
014f31f3d0d293266412b41bcca4c71884174e4b
/External/freetype-2.8/Source/winfonts/fnterrs.h
0b0dca0a4747dbffc52326e6637623c7b8864458
[]
no_license
overspirit/Pharos2
b17cbbeb0d011a02d6deba185f8a818e0f5e2fdb
bda8651e9df36161a562f351e4eb7f6742bc3798
refs/heads/master
2023-04-28T17:01:06.697069
2018-05-18T06:01:09
2018-05-18T06:01:09
254,036,779
2
0
null
null
null
null
UTF-8
C
false
false
1,966
h
/***************************************************************************/ /* */ /* fnterrs.h */ /* */ /* W...
[ "xiaowenzhang@autohome.com.cn" ]
xiaowenzhang@autohome.com.cn
b40ca8d3d4360a1fd5431f306d30dbd9fc9c4b85
4f4ddc396fa1dfc874780895ca9b8ee4f7714222
/src/tools/BullseyeCoverage/sample/calc2.c
5d733602b840558a72627d7da1e2fea6b5345c1c
[]
no_license
UtsavChokshiCNU/GenSym-Test2
3214145186d032a6b5a7486003cef40787786ba0
a48c806df56297019cfcb22862dd64609fdd8711
refs/heads/master
2021-01-23T23:14:03.559378
2017-09-09T14:20:09
2017-09-09T14:20:09
102,960,203
3
5
null
null
null
null
UTF-8
C
false
false
6,154
c
/* Simple infix expression calculator * * Reads one line at a time from standard input and evaluates it as a * C-style infix expression and prints its value. */ #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #undef isspace /* the error status 1=okay, 0=error */ static...
[ "utsavchokshi@Utsavs-MacBook-Pro.local" ]
utsavchokshi@Utsavs-MacBook-Pro.local
f131f5cda3e974cee1dc70181c3069967fdcec3c
0367994de4b476b829c8b26f632acb67d934b9c8
/leetcode/AddTwoNumbers/AddTwoNumbers/main.c
2b3315541327db487f2ed02b59f182dfa23b10cb
[ "MIT" ]
permissive
mingyuefly/leetcode
c8e5ed21511e6964beeccaf06a1c0d907fa45240
0ab82c160f61c8f0a8f205dbd62d3c5426f1be15
refs/heads/master
2023-08-23T23:51:18.696903
2023-08-07T15:19:19
2023-08-07T15:19:19
230,093,153
0
0
null
null
null
null
UTF-8
C
false
false
1,111
c
// // main.c // AddTwoNumbers // // Created by Gguomingyue on 2017/11/15. // Copyright © 2017年 guomingyue. All rights reserved. // #include <stdio.h> #include "AddTwoNumbers.h" int main(int argc, const char * argv[]) { struct ListNode *list1 = createListNode(2); push(4, list1); push(3, list1); ...
[ "mingyuefly@qq.com" ]
mingyuefly@qq.com
bcc87db6241be23d0aab4daec7c6a8d31a3d878a
8da129128f9c3973d1b4daa9beca3d1ac760365b
/analyPartialKarinMC.C
8409c682102f77c53813658f69978e5d4c2c90c6
[]
no_license
jhualberta/useful_codes
178f86af347b9181003844df4d91a31515d8d8dd
1ef0ef841039b2d646be016795735a5bafdd8f20
refs/heads/master
2023-06-17T11:59:25.040598
2023-06-09T21:23:08
2023-06-09T21:23:08
185,683,288
0
0
null
null
null
null
UTF-8
C
false
false
55,501
c
//For Rat-v6.2.8 SNOP data //2017-6-25 //#include <RAT/DataCleaningUtility.hh> #include <RAT/DS/Meta.hh> #include <RAT/DU/DSReader.hh> #include <RAT/DataCleaningUtility.hh> #include <RAT/DU/Utility.hh> #include <RAT/DS/Entry.hh> #include <RAT/DS/MC.hh> #include <RAT/DS/EV.hh> #include <RAT/DS/PMT.hh> #include <RAT/DU/P...
[ "jhu9@ualberta.ca" ]
jhu9@ualberta.ca
a19f511f897310c77996e6417c95af06fd8005fb
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/79/1330.c
39d60606fa043f0460574ba3eb0b465cbcf486e6
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C
false
false
1,036
c
int main() { int num[300] = {0};//??????0 int total[300] = {0};//? n int countNum[300] = {0};//? m int n = 1 ; int m = 1 ; int nn = 0 ;//????? while(n!=0&&m!=0) { cin >> n >> m ; total[nn] = n ; countNum[nn] = m ; nn ++ ; } int q ; for(q = 0 ; q < nn ; q++)//???? { n = total[q] ...
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
239ee0dd742f901c0fa83cc14affd4b983c0e773
a013049f26fed2ae5364400e145ea8e5774a5164
/neopixel_hex.c
bac5598623f7c91537ce30379aa4ec9484e99171
[]
no_license
harrydylewski/ws2812-m5-hex-atmega
53191d19d883e31da5df47bf7d5cac51c05534ba
a57dbf42a13aaa38feff52f36639361cb2406254
refs/heads/master
2020-12-04T16:21:39.347027
2020-01-05T21:35:22
2020-01-05T21:35:22
231,835,433
0
0
null
null
null
null
UTF-8
C
false
false
7,684
c
#include "neopixel_hex.h" void hex_writeOutmostCircle(uint8_t *color, neopixel_hex *hex ) { uint8_t x,y; for(y=0;y<3;y++) { for(x=4;x>0;x--) { hex->first[x][y]=color[y]; hex->seventh[x][y]=color[y]; } hex->second[0][y]=color[y]; hex->second[4][y]=color[y]; hex->sixth[0][y]=color[y]; hex...
[ "hdylewski@hotmail.com" ]
hdylewski@hotmail.com
40dc68d6de79371cb9ade810b1af63d4579a09c1
6bc6795fb6eb8d7be15bd5d5799218d5ccc12773
/src/memline.c
75c17d2ed7e6e5895c45500214c30bb076476c62
[ "Vim" ]
permissive
muniter/vim
a9529d3afe081b06cd606437781a87d9c3992daa
267359902c8792fed13543ddeb56c6df0ae74957
refs/heads/master
2023-07-13T18:26:16.645993
2021-08-08T12:43:22
2021-08-08T12:43:22
393,962,060
1
0
NOASSERTION
2021-08-08T13:18:27
2021-08-08T13:02:48
null
UTF-8
C
false
false
158,568
c
/* vi:set ts=8 sts=4 sw=4 noet: * * VIM - Vi IMproved by Bram Moolenaar * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. * See README.txt for an overview of the Vim source code. */ // for debugging // #define CHECK(c, s) do ...
[ "Bram@vim.org" ]
Bram@vim.org
989158ed067541f3553fac0111c18bfb38f9844c
94e8344ee420ae4d2eb1643e95973845f341a3d2
/spidermonkey_1.6_mutants/mutant100843_jsexn.c
4a4bf9ffcbe182f8fdd665cb126caf8a1d6abcc5
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
39,005
c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sw=4 et tw=80: * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except...
[ "agroce@gmail.com" ]
agroce@gmail.com
fd9f28922ee4fdbc9011853535afc16e38da529e
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/fs/9p/extr_vfs_inode_dotl.c_v9fs_vfs_atomic_open_dotl.c
38e31d5cebe8a0f05de20cbcfb1b8127686c15e2
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
6,667
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
9355cd37a0aff1b59cb46b8b8654cb68d9995c73
e1468ba9083c8391f5053fd7626deab49be0167d
/qca9377-aml/CORE/SERVICES/HIF/PCIe/hif_pci.c
8eea1c235497fee86a6e7fd28b892ad64ab857b2
[]
no_license
gagokatherin/gpl-sources
2e6cf0f10818118c8f2e34780bbea5770e370d1d
fd754bae2ffe5eae88ebbe0a7e7048d86a4ad1e9
refs/heads/master
2023-03-18T10:33:47.852132
2020-12-30T10:02:54
2020-12-30T10:02:54
null
0
0
null
null
null
null
UTF-8
C
false
false
99,427
c
/* * Copyright (c) 2013-2014 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * * * 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 noti...
[ "bot@coreelec.org" ]
bot@coreelec.org
c88b06f7c92c51c9fd6774fad0424713ec5643b7
e6da4c8b6184730c9b6de579e1090a8fbb68f9f9
/stm32f4/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h
d39a8cbf5944ce0bf7f74ec92486eab3b63aa249
[]
no_license
brandonbraun653/STM32HAL_F4
e283b3eaba17dae5ed896befded2a7cd89ffc4aa
4866973b84c1bc148581a33b2a6e9734503b1467
refs/heads/master
2021-07-03T17:53:24.911158
2019-06-07T01:13:16
2019-06-07T01:13:16
144,407,701
0
0
null
null
null
null
UTF-8
C
false
false
169,559
h
/** ****************************************************************************** * @file stm32f4xx_ll_tim.h * @author MCD Application Team * @brief Header file of TIM LL module. ****************************************************************************** * @attention * * <h2><center>&copy; COP...
[ "brandonbraun653@gmail.com" ]
brandonbraun653@gmail.com
3adde49c5e7288b67650b6c68fd695c045d30eae
47971d502548b217629b3116bf70cdef24fb46b8
/3.c
0f054a70acbbaafe2448098c4285e604ad1c85fd
[]
no_license
avinashg8085/C-Programs
5db81bdbfe8d58b1a1e5b3c6d82d3dcc6dd869b4
685ab979803eede38fc0d70cfd0eca39d80a8c98
refs/heads/master
2020-04-05T14:05:27.005138
2017-07-11T08:14:23
2017-07-11T08:14:23
94,764,165
0
0
null
null
null
null
UTF-8
C
false
false
332
c
// To find Quotient and remainder // header file #include<stdio.h> // main calling function main() { // variables int a, b; // Initialize values a = 25; b = 4; // Calculation // OUTPUT // Quotient printf("%d / %d = %d\n", a, b, a/b); // Remainder printf("%d %% %d = %d\n", a, ...
[ "noreply@github.com" ]
avinashg8085.noreply@github.com
147638da94267f4c9ad9244e9f9dae6a9de86c8b
66862c422fda8b0de8c4a6f9d24eced028805283
/cmake-3.17.5/Utilities/cmlibrhash/librhash/sha512.c
a3e681d1f9fc9470e4145ec925c55059c9d2e522
[ "BSD-3-Clause", "MIT", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-free-unknown", "GPL-1.0-or-later" ]
permissive
zhh2005757/slambook2_in_Docker
57ed4af958b730e6f767cd202717e28144107cdb
f0e71327d196cdad3b3c10d96eacdf95240d528b
refs/heads/main
2023-09-01T03:26:37.542232
2021-10-27T11:45:47
2021-10-27T11:45:47
416,666,234
17
6
MIT
2021-10-13T09:51:00
2021-10-13T09:12:15
null
UTF-8
C
false
false
9,960
c
/* sha512.c - an implementation of SHA-384/512 hash functions * based on FIPS 180-3 (Federal Information Processing Standart). * * Copyright: 2010-2012 Aleksey Kravchenko <rhash.admin@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated d...
[ "594353397@qq.com" ]
594353397@qq.com
2c39eeb06c6b99407db0217546b859603f93b812
6d94289f810932c144442339fe8445126106f802
/archive/src_curt5/petsc_stuffs.h
086cc9c269120f282ec907da8974c50da511b3fa
[ "MIT" ]
permissive
ecrc/kfun3d
74c3aed590fd5d967a21bf9c452710c11e8940e2
90d1f221198dbbc980d33532a175127d3735b4e0
refs/heads/master
2022-06-15T03:27:19.488612
2022-06-01T05:51:19
2022-06-01T05:51:19
178,524,776
7
2
null
null
null
null
UTF-8
C
false
false
1,078
h
#include <stdlib.h> typedef struct jacobian { /* previous sqrt(1.0 + || U ||) */ double q_norm; double *w; double *q; } Jacobian; typedef struct csr_t { double *a; int *j; int *i; } CSRTable; typedef struct bcsr_t { int *d; CSRTable *m; } BCSRTable; typedef struct precon_t { int bsz; int bsz...
[ "alfarhanmah@gmail.com" ]
alfarhanmah@gmail.com
b9ebdebba1bed5db691f9195b45b7d149b26e69b
d2e518c397950cc560d3dace3dab6c879f493969
/aulas/vet.c
a271949363893b1eb0448f52685e6cc2543616cf
[]
no_license
MatheusSanchez/ICC2
46f5391027c3189ca23d806cd5ca0e7033a06776
8d40a6b2b8103dabeb69ee42840fbce984f3ecf1
refs/heads/master
2021-05-15T14:47:14.241775
2017-12-18T21:44:12
2017-12-18T21:44:12
107,335,348
0
0
null
null
null
null
UTF-8
C
false
false
459
c
#include "vet.h" int* vet_aleatorio(int n){ // gera um vetor aleatório entre 0 e 1000 (RANGE) int *v = malloc(sizeof(int)*n); for(int i = 0; i < n; i++){ v[i] = rand() % RANGE; } return v; } void print_vet(int *vet,int n){ // printa o vetor for (int i = 0; i < n; ++i){ printf("%d-", vet[i]); } printf("\n...
[ "matheus2.sanchez@usp.br" ]
matheus2.sanchez@usp.br
33d31ac51f3dde7e9cf6ffa8f611742c3677eb31
20b3ece9ce1a9ef2eee9f61787724ddcad221929
/Correlators/lab3_2.c
95e58bf99c834f43f5d08a2a49c489eb7082b10f
[]
no_license
awingray/SignalSystem
3a10564ae17b77689d1f6d7ae77a2c4b06834fe9
cc2390c5956ab228691efdd4d97d96b493a120eb
refs/heads/main
2023-06-16T01:19:04.784934
2021-07-14T22:36:29
2021-07-14T22:36:29
386,091,965
0
0
null
null
null
null
UTF-8
C
false
false
5,094
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> typedef unsigned int uint; uint prime = 40961; uint primroot = 243; /* primitive 8192-th root of unity */ int *readSignal(int *len) { int *x; char c; scanf("%d:", len); x = calloc(*len, sizeof(int)); do c = getchar(); while (c !=...
[ "backend@engineer.com" ]
backend@engineer.com
aa3c6e1c638e1e2dc60055281315dd4c8b9e8540
4fd96fd979c3ab160eedb3c9771f27b60657bb29
/common.h
0c91b8dea959d5f2db2372d8380e424cba364a73
[]
no_license
hamzamuric/clox
90235fd4ca802f8d4835767e83ad191bf2d06f91
5a27090be6bf5ed340e7f49b82547aaaa50bff73
refs/heads/master
2023-03-25T11:32:55.021242
2021-03-15T22:34:56
2021-03-15T22:34:56
348,141,980
0
0
null
null
null
null
UTF-8
C
false
false
114
h
#ifndef CLOX_COMMON_H #define CLOX_COMMON_H #include <stdbool.h> #include <stddef.h> #include <stdint.h> #endif
[ "hamzamuric9@gmail.com" ]
hamzamuric9@gmail.com
b20400868de097f6c6e809a93205a79313234a51
296ad3845d28fe160384bd568b75c3c84109555d
/System/Library/Frameworks/ContactsUI.framework/ContactsUI-Structs.h
6bd79d7012cc131a042cac9cff78507e96d1ec90
[ "MIT" ]
permissive
breakcount/tvOS14Headers
acf5697b0ebad1623826672bd9a63ed8494b4f74
7b5fe0a79b5638cb71536984ef6399a908c2bf93
refs/heads/master
2023-01-05T08:38:17.145009
2020-11-03T19:39:33
2020-11-03T19:39:33
null
0
0
null
null
null
null
UTF-8
C
false
false
836
h
/* * This header is generated by classdump-dyld 1.0 * on Saturday, September 26, 2020 at 1:14:03 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18J386) * Image Source: /System/Library/Frameworks/ContactsUI.framework/ContactsUI * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias L...
[ "kevin.w.bradley@me.com" ]
kevin.w.bradley@me.com
4c6a057565f6db1d86ffa94fbb01f1bf217af50c
9182f0352c96a80fe949990aca2f7dd5998165e5
/resource.h
bba37b414538d3dc56f94fbaa37bbbdb45d69cb7
[]
no_license
GreenHackers/KTV-4
973005de125cb8d59c59ab1d29efd21728a8971d
5d08afb5f6cafa54a88cce5435a44323ce7114ad
refs/heads/master
2020-12-25T00:50:40.732011
2011-04-28T07:27:34
2011-04-28T07:27:34
null
0
0
null
null
null
null
UTF-8
C
false
false
879
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by KTV.rc // #define IDD_KTV_DIALOG 102 #define IDR_MAINFRAME 128 #define IDC_BUTTON1 1000 #define IDC_BUTTON2 1001 #define IDC_COMBO1 1002 #defin...
[ "jianwen.tan@hotmail.com" ]
jianwen.tan@hotmail.com
01db39668c1c3725615c5ffebf2d49d6978456a6
721b8798165ecd451abe77d480f9c5b25551e653
/src/cpu/common.h
c63c7fa769ddfc979d9de1ffb0e4a2df21d86cef
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
BenWibking/hacc-coral
8c7feadcea2961cec8b4ee20b43ff361a7812edc
db1d31b5b9f869672aa90727f8ac5ec7497bbd5e
refs/heads/master
2023-08-18T00:31:16.508542
2023-08-12T00:54:05
2023-08-12T00:54:05
24,764,612
2
0
null
null
null
null
UTF-8
C
false
false
69
h
#ifndef COMMON_H #define COMMON_H #define MAX_N_INTERP 1024 #endif
[ "wibking.1@astronomy.ohio-state.edu" ]
wibking.1@astronomy.ohio-state.edu
f46eb99a64d41ae35407b9dc80a56aada7dcb60e
ff7c1d99f1b7f7100a184e8f2630a97bb6ab11ad
/04 출력변환/33.c
891db4dcafc9630c3924ebe0e7f3aa125edb0b45
[]
no_license
westgyu/C-language-basdic-100
ddb2bef1e15652fd2557e708c4506e7457f9547b
759bf42fe0bf168dad5301f7f06046810c123e94
refs/heads/master
2023-02-11T13:38:10.462445
2021-01-05T01:30:37
2021-01-05T01:30:37
null
0
0
null
null
null
null
UTF-8
C
false
false
151
c
// 10진 정수를 입력받아 16진수로 출력하기 - 2 #include <stdio.h> int main() { int a; scanf("%d", &a); printf("%X", a); }
[ "seomingyu11@gmail.com" ]
seomingyu11@gmail.com
aee89451c49bc2f683d100459dde551b29135f50
b2d48aac47dc3a3050f9cb562808f0e6f19a36e4
/naresh/proj/rpc/unions/connect/client/rpccfop.c
8c6f743f3f828c261c8e47a4eee60e4aa7959b05
[]
no_license
bhagavansprasad/students
7f7df2f4c2350025d58406794a7d94d9c8a9d7be
2822fb81cfb6714d48dea1e4957d6011ffa6198b
refs/heads/master
2023-08-04T04:44:11.346963
2023-07-24T06:09:00
2023-07-24T06:09:00
193,177,404
0
0
null
2022-11-30T23:33:00
2019-06-22T01:21:59
C
UTF-8
C
false
false
2,137
c
#include "stdio.h" #include "fcntl.h" #include <string.h> //#include "rpccreq.h" #include "arpc.h" //#include "rpccfope.h" fopdata_rep preply; int rpcc_fope(fopdata_req *req); int read_from_server(fopdata_rep *preply); int rpccopen(char *fname, int mode, int flags) { //int fd; fopdata_req req; prin...
[ "bhagavan.prasad@blackpeppertech.com" ]
bhagavan.prasad@blackpeppertech.com
96e9ca0ee7469396a0c1fcd00fc740683b2f269e
91e199a6b98be35b2fbcef9ba8c9e38ac633da09
/03_智能手环/common/include/s5p6818_adc.h
efebedb0a4aab22a20585e16d6297205a11f1ca5
[]
no_license
mystretch30/Intelligent-bracelet
b13d1bd9cbc9a8e36b213d51e7c4ce8eea866279
9e93d2e0c0d099eefd4f5955ae4ecf4735f1c92b
refs/heads/main
2023-06-04T19:21:23.165020
2021-03-17T05:15:31
2021-03-17T05:15:31
null
0
0
null
null
null
null
UTF-8
C
false
false
482
h
/* *S5P6818 SFR address define *farsight *2017.10.1 *version: 1.0 */ #ifndef ___S5P6818_ADC_H_ #define ___S5P6818_ADC_H_ #define __REG(x) (*(volatile unsigned int *)(x)) #define uint32 unsigned int /************** ADC ****************/ #define ADCCON __REG(0xC0053000) #defi...
[ "2405596758.com" ]
2405596758.com
3a5a3cadb02a295f90891bb25729a90d9520d71e
1661e6f47e4e5a3afba6f8fc5ce9a105fbd1ec38
/vendor/bundle/ruby/2.4.0/gems/ffi-1.11.1/ext/ffi_c/libffi-x86_64-darwin16/include/ffitarget.h
2239fc8be93d70f8eeb4836ccc7ac9f61fa9cf1c
[ "MIT", "BSD-3-Clause" ]
permissive
yusukeeee28/test
575e7db554057652d656ee535ca317215f74c1c0
5a6cf410a05b9f60ab5e5b980e3b44e6f9dc2af1
refs/heads/master
2022-12-21T15:53:58.152492
2019-05-30T17:33:19
2019-05-30T17:33:19
189,455,700
0
0
null
2022-12-14T05:59:22
2019-05-30T17:32:01
Ruby
UTF-8
C
false
false
112
h
/Users/yusuke/rails_apps/HerokuApp/vendor/bundle/ruby/2.4.0/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffitarget.h
[ "yusuke.runner_28@icloud.com" ]
yusuke.runner_28@icloud.com
529af8af65b9b58b5a91e3571890fdc79a4f4775
7b3e7758dc0ad5ce7aff9c9e19762b722cc6860a
/common/r_studioint.h
9cc6fb759aa565ea22f29b55ebf929b4b200b732
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
bstiffler582/dpb_goldsource
4a952d9b482a1c4c65792682e62f13a61446405c
67c7bed94e27661a7ee70de779c4e97d23969e37
refs/heads/master
2022-04-21T18:38:22.667665
2020-04-24T01:24:27
2020-04-24T01:24:27
258,241,535
0
0
NOASSERTION
2020-04-23T15:02:36
2020-04-23T15:02:36
null
WINDOWS-1252
C
false
false
5,493
h
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ // // Purpose: // // $NoKeywords: $ //============================================================================= #if !defined( R_STUDIOINT_H ) #define R_STUDIOINT_H #define STUDIO_INTERFACE_VERSION 1 typedef struct engine_studio_api_...
[ "kuja@kraln.com" ]
kuja@kraln.com
205f9dc143f6fae0d2404b79bed17d876bea381c
561f96f18b14ce3e733ea6a5727181de1a98cc01
/lib/requests/pbkdf.c
e1fa686115aae563d97a964b47bfea24470344d7
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mikebusa4/acvpproxy
d6ad496fbc67a7a106aa9eeb64153ad1a149538b
aebac7c8d33841e2569426011478632b2d2ad6d6
refs/heads/master
2023-01-24T07:32:19.121964
2020-12-06T10:08:37
2020-12-06T10:08:37
null
0
0
null
null
null
null
UTF-8
C
false
false
3,157
c
/* JSON request generator for SP800-132 PBKDF * * 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 MERCHANTA...
[ "smueller@chronox.de" ]
smueller@chronox.de
b5d403e284dba99bb0c5af7b144f7c042e4b9938
8d218d33b7f7f102dcf65bf5577227ee557420e7
/board/vpb1x.msd/add_on_modules.c
d7e0e163433ce1a4b8d544d437247091aa334f24
[]
no_license
testing-ishita/test2
2b92197e4b190f71d3fc5844e4607e46fdf05a79
27fb9feee816138d8565774e014e59871b9670ae
refs/heads/master
2021-01-10T02:58:30.390230
2015-05-27T14:03:09
2015-05-27T14:03:09
36,441,887
0
0
null
null
null
null
UTF-8
C
false
false
4,701
c
#include <stdtypes.h> #include <stdio.h> #include <errors.h> /* bit/errors.h ? or BIT_ERROR macro */ #include <bit/bit.h> #include <bit/console.h> EXTERN_INTERFACE (AhciInterruptTest) EXTERN_INTERFACE (AhciRegisterTest) EXTERN_INTERFACE (AhciDriveAttachTest) #define E__PFA_DOESNT_EXIST 0x80000001 #define MA...
[ "smileishita25@gmail.com" ]
smileishita25@gmail.com
b73f9dd39abf351fdc948dcaa389241c6c8b45ae
864d6e03aa2a4760b9cf1243bfebc5738df4a58f
/MagicProgrammer/source/stm32f10x_it.c
0a5641209c1b533a32a3bd27cb28b2ed4ea1ac41
[]
no_license
pangpang7/FlasLoade
7590d3442d75bf4ce2bb453d253aa25b2693572f
b2e23634611be514b3ba061476d24e5763bbc59f
refs/heads/master
2021-01-10T05:22:26.709892
2016-03-08T14:33:08
2016-03-08T14:33:08
53,417,947
0
0
null
null
null
null
UTF-8
C
false
false
28,548
c
/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_it.c * Author : MCD Application Team * Version : V2.2.0 * Date : 06/13/2008 * Description : Main Interrupt Service Routines. * This file prov...
[ "pangpang7_83@163.com" ]
pangpang7_83@163.com
fafa383289eaba68b67c3cf0b0a39bc6682a1872
4f635e7a72e59c8f557fe298e08224b2691b1d7a
/Pristine/V/MASK.C
bdfc96d9c9d0b015822857b23cebfdd731f26236
[ "BSD-3-Clause" ]
permissive
Shaah/Animator-Pro
1f52728d57bf6c446cf204506d54442c8bdc9465
94d1e5964b4abbdb322ad0d379f4f28a9f93f779
refs/heads/master
2021-01-11T09:44:25.523434
2013-11-06T23:13:03
2013-11-06T23:13:03
14,251,358
1
0
null
null
null
null
UTF-8
C
false
false
3,328
c
/* mask.c - Routines to maintain and select our screen-sized bitplane used mostly for write-protecting pixels. */ #include "jimk.h" #include "flicmenu.h" #include "mask.str" extern PLANEPTR mask_plane; save_mask(name) char *name; { if (mask_plane != NULL) return(write_gulp(name, mask_plane, (...
[ "zenpsycho@gmail.com" ]
zenpsycho@gmail.com
16472a1ae9acbc46e115bf4013cd4bcb3203ac9c
216f5252a8df73f8547d6a6c831409c916bae3e5
/windows_embedded_compact_2013_2015M09/WINCE800/private/test/net/winsock/22/perf/perf_winsock2/tux_client/tuxmain.h
34952191154aacca21e0c65d137070fd551400ee
[]
no_license
fanzcsoft/windows_embedded_compact_2013_2015M09
845fe834d84d3f0021047bc73d6cf9a75fabb74d
d04b71c517428ed2c73e94caf21a1582b34b18e3
refs/heads/master
2022-12-19T02:52:16.222712
2020-09-28T20:13:09
2020-09-28T20:13:09
null
0
0
null
null
null
null
UTF-8
C
false
false
2,579
h
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft shared // source or premium shared source license agreement under which you licensed // this source code. If you did not accept the terms of the license agreement, // you are...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
cc94bc4ba0078fb131bc99179849ba69a7eaa92f
c2d67a2e3b8c4cbf49cb79a394e9d68b695411cd
/6、7/code/ustc-pl0/bison-examples/include/common.h
8eae7b178b7a25731f68b713be6fabcc293adc3e
[]
no_license
zucc31801061/Compilation-principle-work
c5f08f1325bccc0174a2ecc3f416689222010701
a3198caaa25a7aa1e1fe551ddd2662deecd84b65
refs/heads/main
2023-07-21T01:12:23.876150
2021-09-01T07:59:41
2021-09-01T07:59:41
401,979,708
0
0
null
null
null
null
UTF-8
C
false
false
3,506
h
/* * Common definitions and declarations for compilers * Author: Yu Zhang (yuzhang@ustc.edu.cn) */ #ifndef _COMMON_H_ #define _COMMON_H_ #include "util.h" // operator kinds // You could add more kinds of error messages into op.h enum { #define opxx(a, b) OP_##a, #include "op.h" OPLAST }; //extern char **opname...
[ "617109717@qq.com" ]
617109717@qq.com
0d6c629e6234dcb65a4c0179d9035172289ad16e
c2cedcf36667730f558ab354bea4505b616c90d2
/players/rumplemintz/room/maxim/cell1.c
c3b5a647a8c5a0fe9869a3dd3cd0cd81247f6542
[]
no_license
wugouzi/Nirvlp312mudlib
965ed876c7080ab00e28c5d8cd5ea9fc9e46258f
616cad7472279cc97c9693f893940f5336916ff8
refs/heads/master
2023-03-16T03:45:05.510851
2017-09-21T17:05:00
2017-09-21T17:05:00
null
0
0
null
null
null
null
UTF-8
C
false
false
1,577
c
/* ========================================================================== */ /* */ /* cell1.c */ /* (c) 2005 Rumplemintz ...
[ "rump.nirv@gmail.com" ]
rump.nirv@gmail.com
26c7ea6400aa076a0d0ea97fc88400dcee8c2324
2ee3a0c398cb452fe3b20391c476e8462586dadf
/libIPLAY/libSrc/os_linux27/include/linux/cpuset.h
d47f5503bb95b460391760573b2c1cd82ac749d0
[]
no_license
gradliang/fusion1
a08f8f0b8a15716628db412d6db0fa664eba3f29
07972a0da8cc09faf3ebe801283c87430c71804b
refs/heads/master
2021-07-18T03:00:41.118177
2020-08-11T02:08:30
2020-08-11T02:08:30
203,027,101
1
1
null
null
null
null
UTF-8
C
false
false
4,351
h
#ifndef _LINUX_CPUSET_H #define _LINUX_CPUSET_H /* * cpuset interface * * Copyright (C) 2003 BULL SA * Copyright (C) 2004-2006 Silicon Graphics, Inc. * */ #include <linux/sched.h> #include <linux/cpumask.h> #include <linux/nodemask.h> #include <linux/cgroup.h> #ifdef CONFIG_CPUSETS extern i...
[ "gradliang@live.com" ]
gradliang@live.com
675848df1035a92f7025e494a1a6ab57a5f37485
365913bcc02bfdf6b6f6c246855144663f7e052b
/Code/GraphMol/GraphMol.h
c08757d21e8b63a63df7bdfe46f204ca8fed4145
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
UnixJunkie/rdkit
d8458eadca78ba1714be5c55ba75c8e164fc1479
3ddb54aeef0666aeaa2200d2137884ec05cb6451
refs/heads/master
2021-06-01T22:26:53.201525
2017-08-15T17:00:30
2017-08-15T17:00:30
100,572,461
2
0
NOASSERTION
2019-05-29T00:58:25
2017-08-17T07:03:53
C++
UTF-8
C
false
false
449
h
// // Copyright (C) 2001-2006 Greg Landrum and Rational Discovery LLC // // @@ All Rights Reserved @@ // This file is part of the RDKit. // The contents are covered by the terms of the BSD license // which is included in the file license.txt, found at the root // of the RDKit source tree. // /*! \file GraphMol.h...
[ "greg.landrum@gmail.com" ]
greg.landrum@gmail.com
aa8b432a22aa80a680b3cbba814b8f46ca50314c
a6e16f8b4e3e9dfb7a8b6f323b7e35fb82537222
/C/Christian Andersson/FireNews/windia/win_dia.h
f0c214e3d16a8940ff6fde80d3864724111d6955
[]
no_license
pjones1063/Atari_ST_Sources
59cd4af5968d20eb3bf16836fc460f018aa05e7c
fe7d2d16d3919274547efbd007f5e0ec1557396d
refs/heads/master
2020-09-04T20:21:44.756895
2019-10-30T12:54:05
2019-10-30T12:54:05
219,878,695
2
0
null
2019-11-06T00:40:39
2019-11-06T00:40:39
null
UTF-8
C
false
false
15,019
h
/***********************************************************************/ /* My own dialog in windows rutines */ /* X Open dialogs */ /* X Closing dialogs */ /* X Moving of dialo...
[ "ggn.dbug@gmail.com" ]
ggn.dbug@gmail.com
8e891439759362c0386ced025ac34950194ffb0d
cc27bb92f56af0a1f07be77ad6f5d3c153357e26
/PAT1002/PAT1002/main.c
2072313315a1bcdf32fb449e6978372047e9a806
[]
no_license
viphoenix/ACRecord
e0792eb1b433b0d5c20832b83c3fe562bd5d2fd1
5748eed9de663061356460d28295ac69fbfb9fe6
refs/heads/master
2021-01-09T21:54:19.883906
2016-03-13T15:06:42
2016-03-13T15:06:42
53,789,935
1
0
null
null
null
null
UTF-8
C
false
false
2,267
c
// // main.c // PAT1002 // // Created by 程锋 on 15/8/20. // Copyright (c) 2015年 程锋. All rights reserved. // /** * This time, you are supposed to find A+B where A and B are two polynomials. Input Each input file contains one test case. Each case occupies 2 lines, and each line contains the informa...
[ "phenix1991@126.com" ]
phenix1991@126.com
8df8cdf6028392bb41624f531a13cce66e788e3f
c425afb8bb6b182168fd4c3a46c9b334f4740e60
/data/warcraft/canny.c
f91fd297b8a7885b302a698ee829500d804d2b14
[]
no_license
fluffos/nt7
ceef82b2465cf322549c7ece6ce757eaa8ec31ff
52727f5a4266b14f1796c2aa297ca645ca07282a
refs/heads/main
2023-06-17T10:07:33.000534
2021-07-15T11:15:05
2021-07-15T11:15:05
308,148,401
9
9
null
2021-06-28T14:11:57
2020-10-28T21:45:40
C
UTF-8
C
false
false
509
c
// warcraft.c #include "/clone/npc/warcraft.h" void setup() { set_name("殇月", ({"arr"})); set("gender", "男性"); set("long", "神兽 它是白云飘的魔幻兽。 "); set("race_type", "麒麟"); set("magic/type", "earth"); set("owner",...
[ "i@oiuv.cn" ]
i@oiuv.cn
e6fd3fd7e8b51a745568092e2cf0dfb6a05955dc
34c724b5c149f2bc6dd9f55e97dcc7efea543bea
/APP/gun/bulet_box.c
b721d0001c6b6596b4e969c6dae8ef24f9c17940
[]
no_license
JiuchengXu/J_HK
003fb4eddd1cb400010112b31bf3f34e8df97c7b
25bb7d0504670ce1e8623847bdc6ef2b75709bc2
refs/heads/master
2020-04-06T03:55:14.157183
2017-08-11T14:29:14
2017-08-11T14:29:14
83,102,420
0
0
null
null
null
null
UTF-8
C
false
false
3,563
c
#include "includes.h" #include "libe2prom.h" #include "helper.h" #if 0 #define I2C I2C1 #define AT24Cx_Address 0xa2 #define AT24Cx_PageSize 8 static s8 local_bulet = 100; static s8 bulet_box_online(void) { //return GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_3) == Bit_RESET; ret...
[ "jiucheng.xu@hotmail.com" ]
jiucheng.xu@hotmail.com
2b9ac74877c52d243a8b5af35a626d9692c9b481
c219ad02e37698631732e07a103835da2409e121
/docs/example/STC15系列库函数与例程测试版V2.0/例程/18-模拟串口-读写EEPROM-15系列无串口的MCU使用/EEPROM.h
b8aad238bd67cefffed83b13cb0aef1e963c16cf
[ "Apache-2.0" ]
permissive
byxlk/smart_pjst
04c25743074f4246d39cd91cf30744b695eaca67
50e0e2893376ac5e765b11d065ea4bf99a0a233e
refs/heads/master
2023-03-20T09:51:30.540368
2021-03-06T16:20:40
2021-03-06T16:20:40
296,832,433
0
1
null
null
null
null
GB18030
C
false
false
3,000
h
/*------------------------------------------------------------------*/ /* --- STC MCU International Limited -------------------------------*/ /* --- STC 1T Series MCU RC Demo -----------------------------------*/ /* --- Mobile: (86)13922805190 -------------------------------------*/ /* --- Fax: 86-0513-55012956,5...
[ "lsl@byxlk.localdomain" ]
lsl@byxlk.localdomain
5a5005c7e365917c0058e9e3b44c161f2ed1b6ce
084f23f712424314ba955036897bee71ae4e8eff
/src/p4info/p4info_struct.c
bcc4027c93331505c11767af780034b335497b6f
[ "Apache-2.0" ]
permissive
miyachu/PI
4eff4c279e300e1b1ec6760b13da67764d15e2b9
ece01da781dfa9d9b3d4d77920cc70ba7df4d479
refs/heads/master
2023-08-14T04:18:31.901195
2021-10-03T09:42:24
2021-10-03T09:42:24
412,961,812
0
0
Apache-2.0
2021-10-03T03:00:05
2021-10-03T03:00:05
null
UTF-8
C
false
false
5,956
c
/* Copyright 2013-present Barefoot Networks, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable la...
[ "you@example.com" ]
you@example.com
36cb67c23b57a434fe047babfca7916d17d040e9
1aff83bb59949d69fe7a005afcb2094e4e5bc9ed
/Source/Libraries/lua/ldotNet.h
d728e8619b582829b17307a3843608e2640fc84b
[ "Apache-2.0", "MIT" ]
permissive
HarryCU/QwLua
5d7e11b10d9946968799524c229597a046083698
c0dbba531cd2cdff050949f3f17c46a3b7cc8915
refs/heads/master
2016-09-06T00:44:15.131284
2015-10-16T02:26:00
2015-10-16T02:26:00
34,662,041
8
0
null
null
null
null
ISO-8859-7
C
false
false
6,320
h
/** * Copyright (c) 2015, Harry CU ΗρΤΚΈω (292350862@qq.com). * * 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 ...
[ "292350862@qq.com" ]
292350862@qq.com
713494c0d3caab07b82b63dbe14587e9d20ef581
6ef6213d2fa39d1d0ab7e2373d882b9d263e8c6d
/ti_components/networking/nsp_gmacsw_4_16_00_00/packages/ti/nsp/drv/cslr/include/cslr_gmacsw_wr.h
3ecdc89f891cf96fb50ec3ca60e22ecaa2cdc8d2
[]
no_license
Zhangh2018/PROCESSOR_SDK_VISION_03_06_00_00
9c380d3167b156a11a8f21814e94ac5550cddc87
05c72de5d031006c7565d4234abd53670a926acd
refs/heads/master
2021-10-16T13:43:05.313842
2019-02-11T09:10:44
2019-02-11T09:10:44
null
0
0
null
null
null
null
UTF-8
C
false
false
11,205
h
/* * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice,...
[ "yukichen@otobrite.com" ]
yukichen@otobrite.com
a13f185a865cc36259c4987e06956fd85699f47d
a4f935ff395b7cbba5c97cb16446cc62777f120d
/libft/includes/libft.h
0bc7461f716280fc79bac5873e970c65bc8ae411
[]
no_license
akolvakh/fdf
e910007e5df0dff306959b3145e98db585f3af70
13c046b618f6223b85969ffb81121d24fc086aa4
refs/heads/master
2022-02-25T14:32:57.593851
2019-08-14T11:23:54
2019-08-14T11:23:54
198,298,054
0
0
null
null
null
null
UTF-8
C
false
false
4,288
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft.h :+: :+: :+: ...
[ "a.kolvakh@outlook.com" ]
a.kolvakh@outlook.com
56f4ce586d6fc47bfbb16c1d6e9dc7f72c0f11e7
a7243c6aaa3d11fdfad9ce1726ad2371c1c3eb67
/cub3d/libft/ft_lstadd_front.c
26d56a4e2b33b6ee632000309d1ca915630447ea
[]
no_license
raulkeljr/42SaoPaulo_formation
d4e63ea634d194564c93a6976e546c9951927490
f1940333d0f907c76de7129b7a229f137e154037
refs/heads/master
2023-06-28T10:24:05.495790
2021-07-18T13:58:42
2021-07-18T13:58:42
387,170,342
0
0
null
null
null
null
UTF-8
C
false
false
1,030
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstadd_front.c :+: :+: :+: ...
[ "raulkeljr@gmail.com" ]
raulkeljr@gmail.com
4d3668ce6e649067aac59e2aa0937ce5715aa79e
9d8fe725e79e5856b8b863abf0907a6a5f6f8a3c
/808230C.c
a61fc957d748bfadaf29b22e636404029938d3ab
[]
no_license
camthesaxman/ruby-c
08bb12c3c6662b113f558a2b43a4f232fedcbd91
afb59d795416468362ddf942d4cb1fca638f2bd6
refs/heads/master
2020-12-30T16:45:53.246386
2016-09-11T22:33:27
2016-09-11T22:33:27
91,023,059
0
1
null
null
null
null
UTF-8
C
false
false
909
c
int __fastcall TrainerBattleLoadArgs(int a1, int a2) { int v2; // r4@1 int v3; // r5@1 unsigned int v4; // r0@2 int v6; // [sp+8h] [bp-4h]@0 v2 = a1; v3 = a2; while ( 1 ) { v4 = *(_BYTE *)(v2 + 4); if ( v4 <= 6 ) { switch ( v4 ) { case 0u: **(_BYTE **)v2 = Trai...
[ "shadow962@live.com" ]
shadow962@live.com
f40f7e2e2672a2ebbd6a707d2f8c04b2f91d925f
0641d87fac176bab11c613e64050330246569e5c
/tags/stable-2005-04-01/source/common/unicode/pwin32.h
0e8ad62ccaffa31eddc53b2997a76cf8c14a2c41
[ "ICU" ]
permissive
svn2github/libicu_full
ecf883cedfe024efa5aeda4c8527f227a9dbf100
f1246dcb7fec5a23ebd6d36ff3515ff0395aeb29
refs/heads/master
2021-01-01T17:00:58.555108
2015-01-27T16:59:40
2015-01-27T16:59:40
9,308,333
0
2
null
null
null
null
UTF-8
C
false
false
7,121
h
/* ****************************************************************************** * * Copyright (C) 1997-2005, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** * * FILE NAME : platform.h * * Date ...
[ "(no author)@251d0590-4201-4cf1-90de-194747b24ca1" ]
(no author)@251d0590-4201-4cf1-90de-194747b24ca1
a6213b4b386b71afa8aebf2b98b94c6101959561
c74d3a6586e8eb44fbb7ff8455662554137844a0
/양주종 코딩스쿨 C코드/HOMEWORK123/HOMEWORK123/Source.c
fbf9e9d9d2a9034f181671d30d6a85061b0617a2
[]
no_license
HyungMinKang/C-BASIC-PracticeCode
0a4594828997a2aaa15c84d6469937117efc75c7
55f27343f384621c69cbcc3a4cc038cfc8eb5081
refs/heads/master
2022-04-26T17:37:35.123163
2020-04-29T02:15:02
2020-04-29T02:15:02
259,791,780
0
0
null
null
null
null
UHC
C
false
false
419
c
// goto문 #include <stdio.h> int main(void) { char i = 65; puts("----------------"); puts(" ** goto문 ** "); puts("----------------"); To: putchar(i++); if (i < 91) goto To; puts(" \n---------------------------------"); puts(" To: 이정표이다"); puts(" goto TO; To이정표로 가라"); puts(" goto문은 무조건 분기문이다."); puts("-...
[ "ramkid91@gmail.com" ]
ramkid91@gmail.com
8ef469a3f836c0457c122691a4c2b758d8d81136
26ac40d2bc0dabaca548eba25967e2919b3922cd
/libs/parallel-netcdf-1.9.0/test/nc_test/nc_test.c
f1db14d883bff6a9d7bae6360732c02506bb23a4
[]
no_license
HBPMedical/AnalysisLibrary
eb23ab18b474ef49e300b51d3434b5f91cc46059
361f998916efae8a4ea6df1fa20c678743c9af4e
refs/heads/master
2020-03-11T09:28:08.897729
2018-03-28T10:06:26
2018-03-28T10:06:26
null
0
0
null
null
null
null
UTF-8
C
false
false
21,895
c
/* * Copyright (C) 2003, Northwestern University and Argonne National Laboratory * See COPYRIGHT notice in top-level directory. * * $Id: nc_test.c 3603 2017-12-16 09:19:21Z wkliao $ */ #include <libgen.h> /* basename() */ #include <unistd.h> #include "tests.h" /* * Test driver for netCDF-3 interface. This p...
[ "eabdelha@pserimos.doc.ic.ac.uk" ]
eabdelha@pserimos.doc.ic.ac.uk
449cc83d856054658d89ef4f89a812ebc5c173d5
6c2413a808602618de319f6a7c4352c0f8abab6d
/c/leetcode/167.c
e1cec6f2c54779cf1f5d98b6287760b87391af0b
[]
no_license
zuzy/rubbish-bin
bb3253da2c3634dad77c0061d3b0ae43e8158331
7cbf79d840f2e1fd071ebfaa5f3032189d02fd46
refs/heads/master
2023-08-18T01:15:24.620175
2023-08-08T07:38:58
2023-08-08T07:38:58
167,286,427
1
1
null
null
null
null
UTF-8
C
false
false
1,003
c
#include <stdio.h> #include <stdlib.h> #include <stdio.h> /** * https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/ * 167. 两数之和 II - 输入有序数组 * */ static void _dump_(int* numbers, int numbersSize) { int i; printf("%s:\n", __func__); for(i = 0; i < numbersSize; i++) { printf("\t%d,...
[ "nuaanjzizy@163.com" ]
nuaanjzizy@163.com
7d338eb11d4aaffa28c66a0f40874bbf863b5e45
aaeabd13299fe34df96430619017d3cbd19df343
/thirdparty/geogram/src/lib/geogram_gfx/gui/gui_state_h.h
373602c768fbd0bb688bc60a49b5f07663e7e071
[ "BSD-2-Clause" ]
permissive
AmericaMakes/OASIS-marcwang
8ebb8a4e2640c275c4a909b9226a9627f1e2524b
7aa10040251d7a1b807a773a45d123e1a52faac5
refs/heads/main
2023-03-19T16:01:49.905423
2021-03-02T06:33:21
2021-03-02T06:33:21
327,714,920
1
1
null
null
null
null
UTF-8
C
false
false
5,899
h
// Serialized ImGui windows docking configuration // generated using <geogram_program> gui:expert=true // then Windows->Export gui state to C++ const char gui_state_h[] = { 91,87,105,110,100,111,119,93,91,68, 111,99,107,83,112,97,99,101,93,9, 80,111,115,61,48,44,48,9,83,105, 122,101,61,49,48,50,53,44,55,54, 56,...
[ "marc.wang@uwaterloo.ca" ]
marc.wang@uwaterloo.ca