blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
333
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
113
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
604 values
visit_date
timestamp[us]date
2016-08-02 21:20:34
2023-09-06 10:17:08
revision_date
timestamp[us]date
1970-01-01 00:00:00
2023-09-05 20:12:54
committer_date
timestamp[us]date
1970-01-01 00:00:00
2023-09-05 20:12:54
github_id
int64
966
664M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]date
2012-06-18 16:43:44
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-02-03 21:17:16
2023-07-07 15:57:14
gha_language
stringclasses
121 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
128
17.8k
extension
stringclasses
134 values
content
stringlengths
128
8.19k
authors
listlengths
1
1
author_id
stringlengths
1
143
1b1baf98478f691bbfb56da1fa6044031ccf61a1
9e405df712dc5fdb29fb3bf023fe2ac45ddf61df
/UNIX_net/tcp/str_echo_sum_bin.c
6edab8862e3e4c924543091dbdefd6190c4bc1f4
[ "Apache-2.0" ]
permissive
CPU-Code/linux_network
898161da149d6d7fd252522dc69a1eca50873240
3246a51afe592183b38a6c6d9244525166401e93
refs/heads/master
2022-11-14T16:33:36.693466
2020-05-11T12:19:51
2020-05-11T12:19:51
278,999,565
0
0
null
null
null
null
UTF-8
C
false
false
846
c
/* * @Author: cpu_code * @Date: 2020-05-07 16:54:42 * @LastEditTime: 2020-05-07 17:10:29 * @FilePath: \linux_network\UNIX_net\tcp\str_echo_sum_bin.c * @Gitee: https://gitee.com/cpu_code * @CSDN: https://blog.csdn.net/qq_44226094 */ #include "unp.h" #include "sum.h" /** * @function: 对两个二进制整数求和 * @parameter: ...
[ "923992029@qq.com" ]
923992029@qq.com
1a1905895fcb607516ca8da7915cb12f1659be0d
ce31b73d780c86489b1aa22ff1f2f453296e0ad4
/PACK_Gen/Files/SPL/Devices/Defines/MDRP_LCD_defs.h
a37d84947b6d8a2ce6aa0d3dc4c8394e9633a012
[]
no_license
StartMilandr/MDR_Pack_v6
865b83e983176604fbdf1c8c1ccfb3e26b234bbe
4666aa5d9b18aca08aa10a0ef168fb83e9436cd5
refs/heads/master
2021-06-16T03:04:11.439087
2021-02-14T16:21:21
2021-02-14T16:21:21
150,073,728
9
8
null
2019-10-02T14:10:47
2018-09-24T08:27:06
C
UTF-8
C
false
false
1,903
h
#ifndef _MDRP_LCD_DEFS_H #define _MDRP_LCD_DEFS_H #ifdef __cplusplus extern "C" { #endif //======================= LCD ======================= typedef struct { uint32_t TextBuf[128]; uint32_t DecodeBuf[320]; uint32_t CR; uint32_t Jark; uint32_t RESRVED[2]; uint32_t DivR; uint32_t SR; }MDR_LED_TypeDef; /* B...
[ "Info@StartMilandr.ru" ]
Info@StartMilandr.ru
6542061ba998d62a07deec78709fbbe37377c2af
e4ee4451ff4c0ec30719a834796165471742c027
/0x06-pointers_arrays_strings/5-string_toupper.c
285d5b192bedb1deb89ee40a5b97f0d8f945602a
[]
no_license
Abdebug/holbertonschool-low_level_programming
3f2cc15e2e71d92efba4104d8d4594821ed88f22
d88d3fd6bc69ccdec408adab7fa534c77308bbfc
refs/heads/master
2023-02-15T03:19:01.189799
2023-01-22T19:48:03
2023-01-22T19:48:03
470,286,551
0
0
null
null
null
null
UTF-8
C
false
false
304
c
#include "holberton.h" /** * string_toupper - Changes all lowercase letters to uppercase * @p: The string will be modified * * Return: char var */ char *string_toupper(char *p) { int a = 0; while (p[a]) { if (p[a] >= 97 && p[a] <= 122) { p[a] -= 32; } a++; } return (p); }
[ "monoprosito@gmail.com" ]
monoprosito@gmail.com
81b129451d94c21b04890106cac4d9d267ad8c51
db37dc1540178adbab3ff7eef076cd922e4561d4
/oef123/opg02.c
06cf8b3e3798efbfc15476aa15f956181102fc5c
[]
no_license
dries007/OpenGL
44359719e30e35caeaf117bf5d0ec674b569ed2c
2ea07f617e50cd9bbde8c1b0c4b9bd58b789fff3
refs/heads/master
2021-03-27T20:09:49.620988
2018-05-24T14:27:54
2018-05-24T14:27:54
121,303,615
0
0
null
null
null
null
UTF-8
C
false
false
5,944
c
#include <stdio.h> #include <GL/glut.h> #include <stdbool.h> #include "helpers.h" #define COL_WIDTH 100 #define SPACER (COL_WIDTH/10) #define MARGIN_L (COL_WIDTH/2 + 25) #define MARGIN_R (COL_WIDTH/2) #define MARGIN_T 100 #define MARGIN_B 50 #define YTICKS 100 /* Required globals for coordinate calculation */ int wc...
[ "admin@dries007.net" ]
admin@dries007.net
59c70dc666de9d9658f7472898232853981e5617
c7ead208c55db04354e288aff68756e5e1fb1af3
/暑期练习/11_第一次重复出现的字符.c
e963a5c7819eae51c53a38cfbc36f8a247a50d2c
[]
no_license
BaomingRose/studious-train
bf49c1dbffaadd407e6d126a6e525e425a01c1db
e4d3100110a982e764816db9a0f52e075c69783f
refs/heads/master
2020-05-09T13:06:58.736185
2019-11-03T11:18:02
2019-11-03T11:18:02
181,136,666
0
0
null
null
null
null
GB18030
C
false
false
597
c
//对于一个字符串,请设计一个高效算法.找到第一次重复出现的字符.测试样例:"qywyer23tdd",返回:y #define SIZE 256 #include<stdio.h> char firstNotRepeate(char* str) { char *pHashKey = str; int hashTable[SIZE]; int i; for(i = 0; i < SIZE; i++) { hashTable[i] = 0; } while(*(pHashKey) != '\0') { hashTable[*(pHashKey++)]++; } pHashKey = str; while(...
[ "857135447@qq.com" ]
857135447@qq.com
a8d73f80893814f42e573b56e06bfed5fae12467
3849916f4e39dfaeac07bf725f0c9f255aa2a97a
/libft/ft_atoi.c
3f575650fd05e8b4c4fe333f814ab82dbe280618
[]
no_license
ma-akk/my_little_shell
ba9508d6a8a3043fab85c7b99bc191c2aa237da1
5375cf6d1187243e83ea23d0b947cc9107094d6b
refs/heads/main
2023-04-20T08:14:57.133948
2021-05-15T09:37:39
2021-05-15T09:37:39
367,590,864
0
0
null
null
null
null
UTF-8
C
false
false
1,734
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_atoi.c :+: :+: :+: ...
[ "gtresa@student.21-school.ru" ]
gtresa@student.21-school.ru
f8464d6b04219a810929f54d51eccc7c18ecf77a
33ad62d02ae6e5421c20e857a88e88fd23d6edd1
/pacman1/pacman1/Temp/il2cppOutput/il2cppOutput/UnityEngine_UnityEngine_UnityStringMethodDeclarations.h
482418a7b608acabee3717693f6e76b919ed68c0
[]
no_license
akshayadav/pacmanVRAR
ae18e540da85038d2d14d5df614dfb63f9f40330
97922200890739f9c837eb65f593149623b0c5a7
refs/heads/master
2016-08-12T06:53:23.396650
2016-03-29T21:04:24
2016-03-29T21:04:24
55,010,111
0
0
null
null
null
null
UTF-8
C
false
false
556
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.String struct String_t; // System.Object[] struct ObjectU5BU5D_t151; #include "codegen/il2cpp-codegen.h" // System.String UnityEng...
[ "akshayadav@gmail.com" ]
akshayadav@gmail.com
3cae54881270b4046829c3e2e1c9b375ef315551
4bab98acf65c4625a8b3c757327a8a386f90dd32
/ros2-windows/include/turtlesim/srv/detail/teleport_absolute__rosidl_typesupport_introspection_c.h
00346922ba88012ac06b713fed5d35cc93d449e4
[]
no_license
maojoejoe/Peach-Thinning-GTRI-Agricultural-Robotics-VIP
e2afb08b8d7b3ac075e071e063229f76b25f883a
8ed707edb72692698f270317113eb215b57ae9f9
refs/heads/master
2023-01-15T06:00:22.844468
2020-11-25T04:16:15
2020-11-25T04:16:15
289,108,482
2
0
null
null
null
null
UTF-8
C
false
false
1,931
h
// generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from turtlesim:srv\TeleportAbsolute.idl // generated code does not contain a copyright notice #ifndef TURTLESIM__SRV__DETAIL__TELEPORT_ABSOLUTE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define TURTLES...
[ "aidencfarrar@gmail.com" ]
aidencfarrar@gmail.com
3b2d7744340b31b738f397089a4eaac654682916
7e34099853f87cbfd0ee69d8894d10eaf8e1df94
/implementations/group6/Win64-RC/C3/ws121.c
463b688feb28633dfda417a38afb95497f50d8a8
[]
no_license
Matias-Bernal/dose2014
cc1b973de8ba592ba82b2c8c8efd7749bcd3a033
139376fb884523cf5e0ccd7e9fed152555641a35
refs/heads/master
2016-09-06T03:51:44.566674
2014-12-24T14:49:10
2014-12-24T14:49:10
32,119,587
0
0
null
null
null
null
UTF-8
C
false
false
3,360
c
/* * Code for class WSF_APPLICATION_X_WWW_FORM_URLENCODED_HANDLER */ #include "eif_eiffel.h" #include "../E1/estructure.h" #include "../E1/eoffsets.h" #include "ws121.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #ifdef __cplusplus extern "C" { #endif /* {WSF_AP...
[ "payomaty666@gmail.com" ]
payomaty666@gmail.com
53fc5b8a72c530454e906a15ee441bf0d6b9a6f8
d0519514f2be54b337b07712cde378047a8fb468
/efixo-www/src/tests/test_elseif_evaluation_order.c
f1b4f498a018ee5711c79c688513ab741052b850
[]
no_license
neufbox/misc
726fde2ba7a770cbd4e00d025546f49de9d8c4c7
1a8da7a96f100f641d6f18268446cd34bcb91c92
refs/heads/master
2016-09-16T05:58:29.991616
2011-09-02T15:47:48
2011-09-02T15:47:48
2,314,780
3
0
null
null
null
null
UTF-8
C
false
false
239
c
#include <stdio.h> int main(int argc, char **argv) { char buf[8]; strcpy(buf, "hi"); if (strcmp(buf, "hi") == 0) { printf("hi\n"); strcpy(buf, "bye"); } else if (strcmp(buf, "bye") == 0) { printf("bye\n"); } return 0; }
[ "neufbox.dev@gmail.com" ]
neufbox.dev@gmail.com
d9aa1765675e28b2296cefb885170ac433b5d5c7
a556c07ecfa1031dae46fd3433762941ceca68b1
/d/beijing/xingbuyamen.c
005b0d69be2bc43867419bbf46cf646cd8a0c5ac
[]
no_license
yqzcabao/pkuxkx-utf8
53c3c24f4e3a9125372bca72b6a4b10aa6293a7f
0eaf237c9970795a51aa4cc04b5b762003300cbd
refs/heads/main
2023-04-01T21:16:23.894845
2021-04-09T13:33:24
2021-04-09T13:33:24
null
0
0
null
null
null
null
UTF-8
C
false
false
1,172
c
// Room: /d/beijing/xingbu.c #include <ansi.h> inherit ROOM; void create() { set("short", RED"刑部府衙大门 "NOR); set("long", CYN"走到门前,只见大门紧紧的闭着,周围的青砖围墙足有八、九尺之高, 墙内不时有衙役巡查时发出的声响,夹杂着一阵阵的狗吠声,门外战着的那 两个凶恶的衙役正恶狠狠的瞪着你,看样子像想把你整个儿吞进肚子里似的。\n"NOR ); set("exits", ([ "north": __DIR__"xi...
[ "i@oiuv.cn" ]
i@oiuv.cn
a9c8d435827a70994c68098925f1fb43a3c655bd
bf2da971f5fd8a1852b5a02884817eb662464ff3
/d08/ex03/ex03.c
e7df54d7a630fb656be92293256bc94920382b32
[]
no_license
Hacker-zijoon/42piscine
20d3c0d9bf429e9471db1e7879da1bdb2b381dfb
441d1a508c3e387dcb6ab63a0cf6e754f3df295b
refs/heads/master
2021-01-19T01:05:15.505677
2017-04-27T06:10:56
2017-04-27T06:10:56
87,206,469
0
0
null
null
null
null
UTF-8
C
false
false
991
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ex03.c :+: :+: :+: ...
[ "zijoon@hotmail.com" ]
zijoon@hotmail.com
e86930412b1bb265ba7749b9ad72e71501549bb4
76ef5f1a36a0d401295db2b7d766eb44c6088f82
/middleware/usb/otg/usb_otg_peripheral.h
b0f6589b4223c8d771a7f1e6253549e5ce11c316
[]
no_license
mhcchang/SDK_2.6.0_FRDM-K64F
e93273790a4fcbfdd195d0dd66801fbb526e8493
35d9979b7e2010a2e89149c2fc5d453f7982b9b0
refs/heads/master
2023-03-17T00:40:54.436065
2019-10-12T08:15:49
2019-10-12T08:15:49
null
0
0
null
null
null
null
UTF-8
C
false
false
2,213
h
/* * Copyright (c) 2016, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef __USB_OTG_PERIPHERAL_H__ #define __USB_OTG_PERIPHERAL_H__ #include "usb_otg_config.h" /*! * @addtogroup usb_otg_peripheral_driver * @{ */ ...
[ "gylpm@163.com" ]
gylpm@163.com
b488181710185dca6ea4473ddd928bd7986abf3f
8ec2b43e5be284867fff4af790be459bebeef5d8
/lib/libxenherder/file.h
44d90f68a97ffeb4a275af617bae3ddd81928d2c
[ "BSD-3-Clause" ]
permissive
paulwoodman/xenherder
b3d8ddc8c11cfb65ec3b5dfac0587b0048d9a2b3
0465c2056ad53e72bc4fd532547c0b937c4c6210
refs/heads/master
2021-01-22T11:07:12.886819
2014-02-18T08:10:57
2014-02-18T08:10:57
null
0
0
null
null
null
null
UTF-8
C
false
false
2,122
h
/* * Xen Herder * Copyright (C) 2014 Bindle Binaries <syzdek@bindlebinaries.com>. * * @BINDLE_BINARIES_BSD_LICENSE_START@ * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of so...
[ "syzdek@bindlebinaries.com" ]
syzdek@bindlebinaries.com
8e24489093012c51148f4bc4c11f46d787ca9a90
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/dd0ee5b2-5a55-4aeb-9c3c-e63b5adb8040.c
9573856229752e3dd7edaad097820478366dc0b4
[]
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
561
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=11; int k; int l; j = 53; l = 64; k = i/j; l = j/j; l = i-j; l = l-j; j = -k*i; //variables /* START VULNERABILITY */ int a; long b[52]; long c[88]; a = 0; do { a++; //ra...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
7706a938e14491173d886df2c0efa620f339ef20
a037e1cc32976d4d2cd772d9b866b5c75e9cea9f
/Temp/StagingArea/Data/il2cppOutput/t299.h
564a5dc028544d9cd7d2aa95e967404f493d5fea
[]
no_license
Sojex/BumbleBrigadeWithClickToKill
4e11642e5e4d23d6456ac9add86570e15e28145f
fb7c30ae13a6e10bc388315bc2dc2b6e3cf1c581
refs/heads/master
2021-01-10T15:45:59.727221
2016-03-28T17:15:18
2016-03-28T17:15:18
54,907,861
0
0
null
null
null
null
UTF-8
C
false
false
247
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> struct t298; struct t299; struct t8; #include "t296.h" #include "t122.h" struct t299 : public t296 { };
[ "student@c515-d25hq0s2dhjt-0112012.hostos.cuny.edu" ]
student@c515-d25hq0s2dhjt-0112012.hostos.cuny.edu
4d263a75d3b3435367eaf0cc34af11877423c35e
09c98119a5fbaf5b89891e6ca009d2258028b724
/Projects/STM32446E_EVAL/Examples/FMC/FMC_SDRAM/Src/stm32f4xx_hal_msp.c
50e49c65de2f33142675b2c5e97033aec7532d02
[ "BSD-2-Clause" ]
permissive
koson/STM32Cube_FW_F4
bf20f632625181189ea0b47e96653117a8946cd9
58e9769a397768882632079863e2453803951a82
refs/heads/master
2020-12-05T02:03:49.120409
2019-09-21T06:45:53
2019-09-21T06:45:53
null
0
0
null
null
null
null
UTF-8
C
false
false
6,735
c
/** ****************************************************************************** * @file FMC/FMC_SDRAM/Src/stm32f4xx_hal_msp.c * @author MCD Application Team * @version V1.1.3 * @date 29-January-2016 * @brief HAL MSP module. **********************************************************************...
[ "vuhungkt18@gmail.com" ]
vuhungkt18@gmail.com
2cfd19de21b8d484a6965616ac209d75f453b6d2
f0368efd5dc02f62d57c11ecab9ada35b61f8906
/zoj/vol01/1049.c
755cffb08fe70f623eb5babbc25029cfdf177155
[ "MIT" ]
permissive
ibillxia/acmicpc
95a39c8f27fd60b98825ff65eb3f69413b2c3d14
bf57e46f797f7e328a0f11183c17bcefd1808f2e
refs/heads/master
2021-01-20T11:04:42.514871
2014-05-30T12:51:55
2014-05-30T12:51:55
null
0
0
null
null
null
null
UTF-8
C
false
false
452
c
//runid 2974935 2012-07-24 20:40:57 Accepted #include <stdio.h> #define PI 3.1415926 int t; double x,y; int main() { int i,n; double area; scanf("%d",&t); i=1; while(i<=t) { scanf("%lf%lf",&x,&y); area = (x*x+y*y)*PI/2; n = (int)((area+49.999999)/50.0); printf("Pr...
[ "ibillxia@gmail.com" ]
ibillxia@gmail.com
1ea0bf8855c06f80ceae96213920e784d593e7ae
4de2b914e4607dd0ca7eec60b21026af6b6c4797
/Old_work/valdambrini_cheli_papallo_tarmati/BIPE MATLAB/slprj/_sfprj/ICARO3_Onda_bipe/_self/sfun/src/c100_ICARO3_Onda_bipe.h
6bac68152abb11441ebc1c1bd7136636a4dc229b
[]
no_license
ABiondi12/project_sgn
5203d21f2753dcdf7c53b153324dc75bc1221549
570b7be0b01e7c83cb927945e532d6a2213ebf65
refs/heads/main
2023-06-18T12:59:18.337096
2021-07-21T10:27:08
2021-07-21T10:27:08
307,121,028
0
0
null
null
null
null
UTF-8
C
false
false
1,164
h
#ifndef __c100_ICARO3_Onda_bipe_h__ #define __c100_ICARO3_Onda_bipe_h__ /* Include files */ #include "sf_runtime/sfc_sf.h" #include "sf_runtime/sfc_mex.h" #include "rtwtypes.h" #include "multiword_types.h" /* Type Definitions */ #ifndef typedef_SFc100_ICARO3_Onda_bipeInstanceStruct #define typedef_SFc100_I...
[ "petracci.francesco@gmail.com" ]
petracci.francesco@gmail.com
af4430a891c08428cb663b87cb875ddbf38d416c
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/c-litmus-ARMCBMC/long-ISA2+dmb.ld+data+dmb.ld.c
5394e2889ceb96ec19628c57746c957cd9dc0769
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C
false
false
2,016
c
/* Copyright (C) 2023 ARM-CBMC * This benchmark is part of ARM-CBMC */ #include <assert.h> #include <pthread.h> #include <stdatomic.h> // Memory barriers void dmbld(); void dmbst(); void dmbsy(); void isb(); atomic_long vars[3]; atomic_long atom_1_X0_1; atomic_long atom_2_X0_1; atomic_long atom_2_X2_0; void *t0...
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
e2487f4e221877c0d3989cc0dd2a6d008118b81e
5a561292c876428ed74998c9209e1ecf2ceb6bac
/src/floats/op.c
5b8ea971f627226954111e871c8d0410ba16374e
[]
no_license
spurstp9/ft_printf
7eae3951218e607633f4af98240f0e293e3a9003
9dd73e00f3cb52c2be22a90e6722c4b05dc410ad
refs/heads/master
2020-10-02T01:31:57.133550
2020-02-13T09:24:01
2020-02-13T09:24:01
227,668,371
0
0
null
null
null
null
UTF-8
C
false
false
2,093
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* op.c :+: :+: :+: ...
[ "spurstp9@hotmail.fr" ]
spurstp9@hotmail.fr
5c5cbd690971492816a05ecac25fd2a41bc1f834
63abbe5f046d00f14ea63c3ce6ce6c7ec83d214b
/Projects/STM32469I-Discovery/Examples/I2C/I2C_TwoBoards_ComIT/Src/stm32f4xx_it.c
821518014e5e9083fbeda99937488496494b6bb9
[ "BSD-2-Clause" ]
permissive
osaboh/STM32Cube_FW_F4_V1.16.0
fcc5e315b6c2e2f111640da8d5f2339978c6c81a
b4310a849583cc0067ec93db90b46270b8b20488
refs/heads/master
2021-01-16T00:42:19.401517
2017-08-10T23:00:11
2017-08-10T23:00:11
99,971,011
0
0
null
null
null
null
UTF-8
C
false
false
6,005
c
/** ****************************************************************************** * @file I2C/I2C_TwoBoards_ComIT/Src/stm32f4xx_it.c * @author MCD Application Team * @version V1.1.0 * @date 17-February-2017 * @brief Main Interrupt Service Routines. * This file provides template for all ...
[ "osaboh@gmail.com" ]
osaboh@gmail.com
aa7b8c6b08866654b41dca19a1299b651e516a67
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/d0a26898-9131-4826-8b55-cda9be27bf9f.c
59ce3fd5ecc4a3638a9f30000f34523736f5a885
[]
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
600
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = j/j; l = l/j; l = i%j; l = l%j; k = k-i*i; //variables //random /* START VULNERABILITY */ int a; char b[30]; char c[77]; a =...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
73e3ff869e5ab4e6c7f035990721134aa6a0d506
6247645bcf9e88080f7ae8e85af04cfef17dfc08
/algorithm/push_swap/libft/src/ft_strcmp.c
c4faa6a9ae550b06b2710d99ec3aa1a2e340f800
[]
no_license
mbougrin/42
fad8c61664b0ab8007f19f25877363a88dc67112
10b831d503812650172b8689f7667631fd6060ca
refs/heads/master
2020-04-05T23:28:38.918042
2017-08-01T14:43:34
2017-08-01T14:43:34
71,226,609
0
0
null
null
null
null
UTF-8
C
false
false
1,173
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strcmp.c :+: :+: :+: ...
[ "mbougrin@e3r2p18.42.fr" ]
mbougrin@e3r2p18.42.fr
cb4256c92238757943359282a2e4feffb0a7d5c6
971c5ae1d87cdfbb97723485c3d76c17395b82b0
/x86-semantics/tests/gcc.c-torture/job_601_1465/src/990127-1.c
b96b01b724089849366beca4b9bcc412529f29cb
[ "NCSA" ]
permissive
mewbak/binary-decompilation
7d0bf64d6cd01bfa5f5fc912d74a85ce81124959
f58da4c53cd823edc4bbbad6b647dbcefd7e64f8
refs/heads/master
2020-04-16T06:08:14.983946
2019-01-06T17:21:50
2019-01-06T17:21:50
165,334,058
1
0
NOASSERTION
2019-01-12T01:42:16
2019-01-12T01:42:16
null
UTF-8
C
false
false
637
c
#include "mini_string.h" #include "mini_stdlib.h" extern void abort (void); extern void exit (int); main() { int a,b,c; int *pa, *pb, *pc; int **ppa, **ppb, **ppc; int i,j,k,x,y,z; a = 10; b = 20; c = 30; pa = &a; pb = &b; pc = &c; ppa = &pa; ppb = &pb; ppc = &pc; x = 0; y = 0;...
[ "sdasgup3@illinois.edu" ]
sdasgup3@illinois.edu
8beccf6f5f8bb7084fd6afe340bf5f5c9d92cfc7
d7448af5f60e36cf9a5f805327ab1ac06e51002a
/examples/system/esp_event/default_event_loop/main/event_source.h
f82946a3ce840034973d73416f1b1bbffc5558b9
[ "Apache-2.0" ]
permissive
ebertn/esp-idf-nes
914c5f64464b6da170889a2d47ae7f610aa2bcf0
9dc7e9a258fd378d36408a1348253b373974b431
refs/heads/master
2021-05-17T05:14:03.802569
2020-03-28T23:10:04
2020-03-28T23:10:04
250,642,027
0
0
null
null
null
null
UTF-8
C
false
false
2,030
h
/* esp_event (event loop library) basic example This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or im...
[ "ebertn@purdue.edu" ]
ebertn@purdue.edu
7878c56981de356e9bbffe978cffaed802f85542
0aef26863f142bef75a0e4aaf7da76fc95e3d8ae
/crypto_sign/luov8117404/avx2/parameters.h
f017c1286efc647cd18216e45a756a77c00484ce
[]
no_license
jedisct1/supercop
94e5afadc56ef650d7029774a6b05cfe2af54738
7c27338ee73a2bd642ba3359faaec395914175a2
refs/heads/master
2023-08-02T20:12:39.321029
2023-05-30T03:03:48
2023-05-30T03:03:48
179,046,113
23
2
null
null
null
null
UTF-8
C
false
false
2,803
h
#ifndef PARAMETERS_H #define PARAMETERS_H #include <stdint.h> #include "immintrin.h" /* We define the size of the finite field to use (options are 8, 16, 32, 48, 64 and 80 ), OIL_VARS, the number oil variables and the number of equations in the UOV system, VINEGAR_VARS, the number of vinegar variables, SHAKEVENUM, th...
[ "github@pureftpd.org" ]
github@pureftpd.org
1e72f88a14e6b11f8a7c7d5b1598674f75eb73be
5b7d43971eae9f06b81d4c2ae37a12d667b696b3
/mudlib/obj/food_item/ricecake.c
989e6571424996bd8253937b802336e0ac0932d4
[]
no_license
lostsailboard/fy4
cb6ad743fa0e6dec045e4d5c419b358888fc6a36
b79d809c6e13d49e8bc878302512ad0d18a3e151
refs/heads/master
2021-12-08T06:03:29.100438
2016-02-21T09:03:58
2016-02-21T09:03:58
null
0
0
null
null
null
null
GB18030
C
false
false
493
c
inherit ITEM; inherit F_FOOD; void create() { set_name("饭团", ({ "rice" }) ); set_weight(80); if( clonep() ) set_default_object(__FILE__); else { set("long", "一个香喷喷的大饭团,里面夹着生虾片。\n"); set("unit", "个"); set("value"...
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
8a430ed5f19bffabf120c0ff026849b988e124ac
f64b439eb5eedc1ea5fdc022d967793ef9ffc549
/ft_lstdelone.c
e543f50f81b9c3ae3d8d7a44815d51f6cb838b08
[]
no_license
citizen404/school21_libft
b557312053829540f4b595dcd52c701115bcb39a
f7731e6b73a9fa84a11c8a6e0776bf31c32a29f8
refs/heads/master
2022-11-15T03:24:01.389983
2020-07-11T11:15:33
2020-07-11T11:15:33
277,176,830
0
0
null
null
null
null
UTF-8
C
false
false
1,074
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: ...
[ "kenobi@MacBook-Air-Pavel.local" ]
kenobi@MacBook-Air-Pavel.local
b141794394a9837f1b1d0e07902cc9ca4db2889d
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/fastsocket/kernel/drivers/net/qlge/extr_qlge_mpi.c_ql_write_mpi_reg.c
484f6dd67b672ccfeb9b7a6f5362e84a012fdba7
[]
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
1,314
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
f200f64d2813cc66a072fc81507a9041dda38906
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/88d3ee66-9388-42bc-a4a5-b7590d1195fc.c
583cbbbf173bcb298e99489b35375fbbce0e5bd1
[]
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
601
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=142; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = i/j; l = j/j; l = l%j; l = l-j; j = k-k*i; //variables /* START VULNERABILITY */ int a; long b[53]; long c[58]; a = 0; whil...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
c13d55100cc898cc501e9ca6ec0902bbe44e95a2
a9f66d4a93ff185a353f159758ce9b0095792d67
/src/front-end/inference/reference.h
3403739850cecaecfc09260fcf907f570cd3d024
[ "MIT" ]
permissive
lbrugnara/zenit
9cbe85cb0bce7007f275474e9af5632915e9a2bb
72cf091e8c392c895adaa7ac623320af92a8b452
refs/heads/master
2021-07-21T15:19:54.088234
2020-09-18T18:56:33
2020-09-18T18:56:33
216,094,067
3
0
null
null
null
null
UTF-8
C
false
false
1,737
h
#ifndef ZENIT_INFER_REFERENCE_H #define ZENIT_INFER_REFERENCE_H #include "infer.h" #include "../utils.h" /* * Function: zenit_infer_types_in_reference_node * The reference visitor just visits (pun intended) the referenced expression. The type information of that expression is already present * in the reference t...
[ "leobr6@gmail.com" ]
leobr6@gmail.com
9d16fb59b6437ebd876aa5d543024b40614e966e
14f91cfc4fbcb6b7583c27026150d07e54600a65
/lib/helpers/path_utils.h
82b060c032dff1819688028d257bc21039d916fb
[]
no_license
cbforks/zrt
01b6602c9198d85a45335e49366581eab2aa0d7d
f18db4aaf5c0f0d543844300d61bf6e297f5d3d2
refs/heads/master
2021-05-12T08:33:26.026925
2015-04-03T21:03:01
2015-04-03T21:03:01
null
0
0
null
null
null
null
UTF-8
C
false
false
1,901
h
/* * * Copyright (c) 2014, LiteStack, 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 law o...
[ "yaroslav.litvinov@gmail.com" ]
yaroslav.litvinov@gmail.com
ba3afdd0a14d8995ca8cc5ca2ce9d7352045e649
fd8067a500800958214b7e634af46d0d5c824804
/libft/ft_putchar.c
8847b8434cb5928f409efafc9a28296d05b78af4
[]
no_license
ZY1N/ft_printf
7fc34a38ad15bd000c79a7f92c6b17e757bc9527
138bdd20667ea7d21f9b698cca8d9f8510ec1a6b
refs/heads/master
2020-06-04T11:22:40.365907
2019-06-14T20:23:24
2019-06-14T20:23:24
192,001,429
7
2
null
null
null
null
UTF-8
C
false
false
958
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: ...
[ "yinzhang@e1z2r2p3.42.us.org" ]
yinzhang@e1z2r2p3.42.us.org
cfba325cffebf22fbd81c238cee148f1300c8b74
ff5f025d526622c2ea02cd1e98735eaf9438aa97
/storage.c
8ff29859465605ac8dacc265f7b202c169696ccf
[ "MIT" ]
permissive
shdown/motify-send
ecef27c61ef0509f1ba5519049b0df490ec2f05e
89dc3e2e8f78ec980bade0cc3cf98ecd84bfb94b
refs/heads/master
2020-12-20T19:18:27.185296
2020-06-04T03:27:26
2020-06-04T03:27:26
236,185,081
1
0
null
null
null
null
UTF-8
C
false
false
2,539
c
#include "storage.h" #include <sys/stat.h> #include <sys/file.h> #include <fcntl.h> static const char *DIR_PREFIX = "/tmp/motify-send_"; int storage_open(const char *appname) { int fd = -1; char *dpath = NULL; char *fpath = NULL; const char *login = getlogin(); if (!login) { fprintf(stder...
[ "shdownnine@gmail.com" ]
shdownnine@gmail.com
77ac85eaea6e4893a36947f8dfc5df8e001f8056
fe42a8764e30a6fed424cd4315a03a3f9ff156cb
/svn_common/trunk/common_highflash.h
f3261a56891cd3b7373470de497ad8926af1450b
[]
no_license
GliderWinchCommons/embed
29f62d930d793a86dd7b048d18cedafee46be139
607ca24ab18510a50210008c8b8fd57fa4120cfb
refs/heads/master
2023-08-18T12:48:01.900008
2023-08-17T18:37:41
2023-08-17T18:37:41
75,447,176
0
0
null
2019-04-03T01:36:44
2016-12-03T02:40:51
C
UTF-8
C
false
false
3,894
h
/****************************************************************************** * File Name : common_highflash.h * Date First Issued : 10/15/2014 * Board : * Description : Fixed area in high flash for application calibrations ***************************************************************...
[ "dhaselwood@verizon.net" ]
dhaselwood@verizon.net
4e0abc040248bfa6803f1112bc55cdd8fed328ee
9f4d78761c9d187b8eb049530ce0ec4c2b9b2d78
/GME/Search/SearchDefs.h
6589cfc942f5ce02d17cfc1a243ac60ad9fbb447
[]
no_license
ksmyth/GME
d16c196632fbeab426df0857d068809a9b7c4ec9
873f0e394cf8f9a8178ffe406e3dd3b1093bf88b
refs/heads/master
2023-01-25T03:33:59.342181
2023-01-23T19:22:37
2023-01-23T19:22:37
119,058,056
0
1
null
2019-11-26T20:54:31
2018-01-26T14:01:52
C++
UTF-8
C
false
false
145
h
#ifndef SEARCH_DEFS_H #define SEARCH_DEFS_H #define SEARCH_INITIAL_SIZEX 200 #define SEARCH_INITIAL_SIZEY 320 #endif //SEARCH_DEFS_H
[ "volgy@b35830b6-564f-0410-ac5f-b387e50cb686" ]
volgy@b35830b6-564f-0410-ac5f-b387e50cb686
bd7c5268984408ac23442966a7a4c5546243d2c4
3d0e2d4bf865833c5304792a126801d98f000f40
/sdk/cw/ARM_EABI_Support/msl/MSL_C/MSL_Common/Include/wcstoul.h
1b6039febfd27296ffbf5eee89d94d57e2eb073d
[]
no_license
XLuma/retsam_00jupc
86311fa2927798e45070f9922046ba5e5a9539ae
9859bc2f4b5bedcadc791f39ce1e7c77172194e7
refs/heads/main
2023-07-25T04:24:49.694267
2021-07-30T23:08:09
2021-07-30T23:08:09
393,130,605
0
0
null
2021-08-05T17:56:40
2021-08-05T17:56:39
null
WINDOWS-1252
C
false
false
3,210
h
/* MSL * Copyright © 1995-2006 Freescale Corporation. All rights reserved. * * $Date: 2006/02/08 20:34:34 $ * $Revision: 1.34.2.2 $ */ #ifndef _MSL_WCSTOUL_H #define _MSL_WCSTOUL_H #include <ansi_parms.h> #if _MSL_WIDE_CHAR #include <wchar_t.h> #ifdef __MWERKS__ #if __MWERKS__ >= 0x3200 #pragma implements...
[ "anon@4chan.org" ]
anon@4chan.org
0a8c4499d432543ea394cddcc01a7683ab3ade07
38002ed688af15dc7b051bb4a471d1bab5266d78
/6800/MC6800 C Compiler/pass2.c/testp2/pass2.h
008d0b4e699ba4101f6fb9973b8f491132489604
[]
no_license
douggilliland/Retro-Computers
86063b131591a5b4af2538cb8eabfc505473a050
629461a39351c625f15e13841c6e2b343f05a080
refs/heads/master
2023-06-08T06:57:05.590811
2023-05-28T13:51:05
2023-05-28T13:51:05
79,813,416
41
10
null
2022-10-06T23:01:58
2017-01-23T14:47:16
C
UTF-8
C
false
false
2,665
h
/* * Pass 2 structure definitions */ /* Entry for an operand in the expression matrix */ struct operand { char optype; union { struct { char nclass; int ntype; union { int nampos; char namext[8]; } ndata; } name; struct { char ctype; union { ...
[ "doug@douglasgilliland.com" ]
doug@douglasgilliland.com
250bcedfc9d20e242c440d3e913b68ecf70a7a1e
998203d98ca18e10e4e35e6fd2dc2d681dc80292
/include/matchstick.h
7ded4bba48d5d4da38c9e862eee50e8af8d9c4c6
[ "MIT" ]
permissive
Ydos2/CPE_matchstick_2019
381b601025a915643442f77f7b850c264b1d2942
f23cf325527ba4554a1fc29c816c458fb32f8d41
refs/heads/master
2020-12-20T08:31:45.113078
2020-01-24T16:12:21
2020-01-24T16:12:21
236,016,290
0
0
null
null
null
null
UTF-8
C
false
false
1,739
h
/* ** EPITECH PROJECT, 2020 ** matchstick ** File description: ** matchstick */ #ifndef LS_H_ #define LS_H_ #include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <stddef.h> #include <stdarg.h> #include <string.h> #include <errno.h> #include <time.h> typedef struct map { int *tab; int size; i...
[ "mathias.ressort@epitech.eu" ]
mathias.ressort@epitech.eu
b8672fde3f159b4a6fd6e751ea8e9c2d4afcfed1
d45c2851c41bfac7a169236460a368ebf5032394
/Lab 4/simodyssey/EIFGENs/simodyssey1/F_code/C34/ev1667.c
6bc47485b6717c0626ac83465a25aef23b376653
[]
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
1,171
c
/* * Code for class EV_TOOL_BAR_BUTTON */ #include "eif_eiffel.h" #include "../E1/estructure.h" #include "../E1/eoffsets.h" #include "ev1667.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #ifdef __cplusplus extern "C" { #endif /* {EV_TOOL_BAR_BUTTON}.parent */ EIF_REFERENCE F1673_18806 ...
[ "gavin.sit22@gmail.com" ]
gavin.sit22@gmail.com
5941f312bcdb67924e394e31e7a01c0d68fe6667
ad7c3d00e9036da6a924a97a06b9767ba46cca36
/testone/5-18/sizeof.c
6a60bd720dde02428dfbf5e3592c592b0cc1731f
[]
no_license
liyana/liyana.github.com
4ef5d6fea95c7f3d4e9c15002128aa07c84f4236
c52b9bb92fa98df6370f3bde8c03930b32b6bfad
refs/heads/master
2020-03-26T08:40:23.691757
2011-07-03T10:42:47
2011-07-03T10:42:47
1,653,494
1
0
null
null
null
null
UTF-8
C
false
false
205
c
#include <stdio.h> int main(int argc, const char *argv[]) { float a,b; a=1/3; b=(float)1/3; printf("%f\n",a); printf("%f\n",b); // printf("%d\n",sizeof(double)); return 0; }
[ "liyana880525@163.com" ]
liyana880525@163.com
44b1842029e4f27f7c3dcc427481b93258632cff
192f949d6756a42caa23801af533a90029e63c6d
/kungfu/skill/liehuo-jian/taotian.c
bd9a72d1c80791cdbcf88c310fc5595c8ad006b5
[]
no_license
oliverypf/nitan3
0d03e986a86adf2a219fb38bb046732a0ea9717b
6f6d92fa31b1d4010ee491389ca4b0df7d1f98f5
refs/heads/master
2021-01-18T07:57:11.871927
2016-02-21T10:02:39
2016-02-21T10:02:39
null
0
0
null
null
null
null
GB18030
C
false
false
2,371
c
// taotian.c 烈火剑法 #include <ansi.h> #include <combat.h> inherit F_SSERVER; int perform(object me, object target) { object weapon; int damage; string msg; if (! target) { me->clean_up_enemy(); target = me->select_opponent(); } if (! target || ! me->is_fighting(target)) ...
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
f117ce3752f9b77b84ec909ac6ceb31e99b397c4
5609517afb6bb7be17471184d2dd80a95f844790
/headers/lists.h
97792237449f799c9a136db7d62f8fc908df450c
[]
no_license
alejolo311/shell_v2
f087f027785a071ff992262d7748cd3192c4e883
814813891f9afc901bc85324c5328e8e0e4daef9
refs/heads/master
2022-12-01T02:16:46.527946
2020-08-19T04:25:12
2020-08-19T04:25:12
283,823,088
0
0
null
null
null
null
UTF-8
C
false
false
257
h
#ifndef H_LISTS #define H_LISTS #include "libraries.h" #include "env.h" size_t print_list(lenv_s **head); int delete_node(lenv_s **head, unsigned int index); lenv_s *add_node(lenv_s **head, char *str); void free_list(lenv_s **head); #endif /* H_LISTS */
[ "alejolo311@gmail.com" ]
alejolo311@gmail.com
47c9ded3ef9255b862c5043d6e353d3e6de0649e
9ca2982c77674e905545448c88ab493093eb3aad
/xen/xenbus/xenbus_ver.h
54f1b28c14dfb6c381193ed67dc6f29f54912542
[ "BSD-2-Clause" ]
permissive
dfaggioli/vmdp
cfcc6409c1891ee1847a63eed625f92ba00df20a
cbb319901e9a5443ae648908414dae6e92d48f12
refs/heads/master
2023-01-30T18:53:23.097778
2020-12-09T23:41:48
2020-12-09T23:41:48
null
0
0
null
null
null
null
UTF-8
C
false
false
1,627
h
/* * SPDX-License-Identifier: BSD-2-Clause * * Copyright 2009-2012 Novell, Inc. * Copyright 2012-2020 SUSE LLC * * 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 t...
[ "kallan@suse.com" ]
kallan@suse.com
d6e81f67635de60a7fd0cec89d068e0e9087b0a9
d8c56ab76e74824ecff46e2508db490e35ad6076
/ZETLAB/ZETLibs/libuv/include/uv_auto_link.h
b89f86e46a47b4dc848bbbe1987a7823c62f67ff
[ "BSD-3-Clause", "MIT" ]
permissive
KqSMea8/UtilsDir
b717116d9112ec9f6ee41f4882ad3f52ebb2e84b
14720766a2a60368495681d09676f860ea501df2
refs/heads/master
2020-04-25T17:21:39.538945
2019-02-27T14:36:32
2019-02-27T14:36:32
null
0
0
null
null
null
null
UTF-8
C
false
false
700
h
#ifndef _LIBUV_AUTO_LINK_H_ #define _LIBUV_AUTO_LINK_H_ /**/ #if !defined(_MSC_VER) #error Not supported compiler #endif /* Architecture */ #ifdef _WIN64 #define LIBUV_LIB_ARCH "x64/" #else #define LIBUV_LIB_ARCH "Win32/" #endif /* _WIN64 */ /* Run-Time */ #ifdef _DLL #define LIBUV_LIB_RT "-md" #else #define LIBUV_L...
[ "s-kacnep@ya.ru" ]
s-kacnep@ya.ru
84483717d4885ad47babc8567753bb85c609201d
e9a43e553d1ee3a24682c6ee832daaf24ef0ffc9
/0x0B-malloc_free/2-str_concat.c
20589ac225bbdda0b40f48e9444bb271a478d7cf
[]
no_license
brerickner/holbertonschool-low_level_programming
38f293f6803cd402f833f1f83d3341680dcbd5a3
6ba52b86ae293b2a7398673204191d647fcb231b
refs/heads/master
2023-04-06T11:29:27.169865
2021-04-20T21:03:59
2021-04-20T21:03:59
295,976,260
0
1
null
2020-10-03T04:10:20
2020-09-16T08:48:04
C
UTF-8
C
false
false
350
c
#include "holberton.h" #include <stdlib.h> /** * *str_concat - char *s1, char *s2 * @s1: string added to space allocated * @s2: string added to s2 * description: function that concatenates two strings * Return: NULL on failure. Else pointer with S1 + S2 + '\0' */ char *str_concat(char *s1, char *s2) { (void)s1...
[ "2326@holbertonschool.com" ]
2326@holbertonschool.com
82a4bf11a7a545c5712f8bad94899452b1ea6918
0b12d6110fe8a54ccb3829f69707a229bfb35282
/naruto/u/t/tmr/ch_viewer.c
fb038929142dc5d95bcf2dd815881d06bfe35ae2
[]
no_license
MudRen/mudos-game-naruto
b8f913deba70f7629c0bab117521508d1393e3b6
000f286645e810e1cd786130c52d7b9c1747cae8
refs/heads/master
2023-09-04T05:49:01.137753
2023-08-28T12:19:10
2023-08-28T12:19:10
245,764,270
1
0
null
2020-03-08T06:29:36
2020-03-08T06:29:36
null
BIG5
C
false
false
3,585
c
#include <ansi.h> #include <armor.h> inherit F_FACE_EQ; void create() { set_name("頻道記錄檢視器", ({ "channel viewer","viewer"})); set_weight(3); if( !clonep() ) { set("wear_as", "face_eq"); set("unit", "發"); set("value", 5); set("long...
[ "zwshen0603@gmail.com" ]
zwshen0603@gmail.com
cafddaf2dad8fd1b7c977462a5700e1ac9b0dfb8
07ba7fde9da83edd3744557972b4b411af1b577d
/src/armstrong/src/plugins/buzz2zzub/dsp.h
c57b860b53802234445a2eb9586a0cffa662b2c0
[]
no_license
clvn/buze
d10edad5b319ca62c1401e710acedc22897b9027
4d7d406e87bda3b57b7631149fe63f9bd2ac3eec
refs/heads/master
2021-09-16T01:39:40.697834
2018-01-06T15:45:28
2018-01-06T15:45:28
115,177,320
8
1
null
null
null
null
UTF-8
C
false
false
2,237
h
void CopyM2S(float *pout, float *pin, int numsamples, float amp); void CopyStereoToMono(float *pout, float *pin, int numsamples, float amp) { do { *pout++ = (pin[0] + pin[1]) * amp; pin += 2; } while(--numsamples); } /* void Amp(float *pout, int numsamples, float amp) { for (int i=0; i<numsamples; i++) { pou...
[ "clvn@users.noreply.github.com" ]
clvn@users.noreply.github.com
f72d114d123b4bcef6b5fb20267cf649c704f871
264cc34d1d5322c9c955f351e5ed710836f6a1a5
/cmake_targets/lte_build_oai/build/CMakeFiles/RRC_Rel14/UE-EUTRA-Capability-v1380-IEs.c
fdf5a7244a48f5896c4798028f79dd18ed7d3575
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-generic-cla" ]
permissive
mr-ytseng/openairinterface5g
8d40a768b2046da8c521f58d34c0466226f1c154
54d541c22cdfcb774774089291c93e4e79294a1d
refs/heads/master
2021-10-27T20:56:33.843199
2019-04-19T15:37:55
2019-04-19T15:37:55
177,127,103
0
1
null
null
null
null
UTF-8
C
false
false
3,798
c
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "/home/user/openairinterface5g/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1" * `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/c...
[ "yuchia.tseng@irt-systemx.fr" ]
yuchia.tseng@irt-systemx.fr
dcdfb0540f69203ef6e9a1b16a82190fb7ee892f
903c45082bd0d4fbb0a0d6a289b5294d8d05c314
/sys/lib/libkern/milieu.h
4cc01df2c0470a234f50d34bfc8fd3656d9e6c2e
[]
no_license
tombibsd/netbsd-src
0552d62659412e821163c945c62b7555d1e616d2
7f0f8c8c4b00f7c47700b8260a5cbd627d73fe7c
refs/heads/master
2021-01-21T04:54:21.541793
2016-06-17T00:56:40
2016-06-17T00:56:40
24,783,931
0
0
null
null
null
null
UTF-8
C
false
false
5,631
h
/* $NetBSD$ */ /* This is a derivative work. */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Ross Harvey. * * Redistribution and use in source and binary forms, with or without * modification, are p...
[ "uebayasi@tombi.co.jp" ]
uebayasi@tombi.co.jp
e25cc43a627e1e53e3e7e410461b9bc4df40ecd8
b84fc9021da8a331e0c157a231ea64f6eb207aa1
/include/file.h
e75a36f96fdf40ede342090b7397c0c08299dbb7
[]
no_license
southdy/libvcd
e6ab4925f5cbeb99e6695510c7ad23a657f322f8
2bce6e30984b50403f909eeea9ef70d5d0df3330
refs/heads/master
2023-03-17T07:53:15.226254
2016-04-18T06:47:00
2016-04-18T06:47:00
null
0
0
null
null
null
null
UTF-8
C
false
false
347
h
#ifndef __FILE_H__ #define __FILE_H__ #ifdef __cplusplus extern "C" { #endif void* WAVWriterCreate(BYTE* lpszOutputFileName,DWORD dwChannel,DWORD dwBitPerSample,DWORD dwSampleRate); BOOL WAVWriterProcess(void* pWav,BYTE* lpszBuffer,DWORD dwSize); BOOL WAVWriterDestroy(void* pWav); #ifdef __cplusplus...
[ "root@ubuntu.(none)" ]
root@ubuntu.(none)
b28aafa2c6c2ca79de6bee241de4c6778a864bc9
3c3a828ae523eea159f22de3320f7b8541148dc4
/src/disassembler/sizes.c
7ae396d6c01d2ebf0eea24c728ae98d26e2c8ec5
[ "MIT" ]
permissive
earwig/crater
effe77655b93239347b2f37c909116e3bade16c4
58540ff2f5c92c01a55793a8deabc37231eff8e2
refs/heads/master
2020-04-13T01:04:33.986296
2017-07-12T04:51:43
2017-07-12T04:51:43
21,626,498
20
2
null
null
null
null
UTF-8
C
false
false
3,229
c
/* Copyright (C) 2014-2016 Ben Kurtovic <ben.kurtovic@gmail.com> Released under the terms of the MIT License. See LICENSE for details. */ #include "sizes.h" static const size_t instr_sizes[256] = { 1, 3, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 3, 3, ...
[ "ben.kurtovic@gmail.com" ]
ben.kurtovic@gmail.com
4cf76c27c1841e86705c5a260e4b15a11494f924
5ad190cf69dc478fa27b7d26dc0b8aaa71f8d5cb
/tirtos_simplelink_2_13_00_06/tirtos_simplelink_2_13_00_06_examples/IAR/CC3200_LP/fatsdraw/fatsd_raw_rom_pin_mux_config.c
e2cfa0483e5c4a8b6e4199f8e95d756f3b5be766
[]
no_license
kfurlong/sensortag
57d339d2ad94659bf6338a03a217953fcb62abc3
a339ed2c6d4583b7727d176d0bc2aecbdb907b87
refs/heads/master
2021-01-10T08:20:20.561784
2015-11-20T15:36:55
2015-11-20T15:36:55
46,541,397
2
0
null
null
null
null
UTF-8
C
false
false
3,309
c
//***************************************************************************** // rom_pin_mux_config.c // // configure the device pins for different signals // // Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ // // // Redistribution and use in source and binary forms, with or without // ...
[ "kfurlong@LSR-01-02-0099.lsr.local" ]
kfurlong@LSR-01-02-0099.lsr.local
1558e3d07dc518408e7a64cf1f5fb5549ae47f75
5b7d43971eae9f06b81d4c2ae37a12d667b696b3
/mudlib/d/yinghe/obj/gold_axe.c
63c0a38523be25c0487ff079830e3069c39c7d22
[]
no_license
lostsailboard/fy4
cb6ad743fa0e6dec045e4d5c419b358888fc6a36
b79d809c6e13d49e8bc878302512ad0d18a3e151
refs/heads/master
2021-12-08T06:03:29.100438
2016-02-21T09:03:58
2016-02-21T09:03:58
null
0
0
null
null
null
null
GB18030
C
false
false
974
c
// blade_dan.c // Copyright (C) 1995 - 2001, by FengYun Workshop. All rights reserved. // This software can not be used, copied, or modified in any form without // the written permission from authors. // #include <ansi.h> #include <weapon.h> inherit AXE; inherit __DIR__"yinghe_weapon"; void create() { ...
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
aa37bb47928a94c9ec1e879d4308da5caf168dd7
147fa24bc83a2f6952ce4ae2861f6d8973bbf528
/src/psglib/wetrelayh.c
18e6eaccc69291daff46401ae593c17b07b55a55
[]
no_license
rodrigobmg/ovj3
6860c19f0469b8ddc51bee208b3c3a00e36af27d
ab92686b5d8f1eec98021acdd08688cfee651e7f
refs/heads/master
2021-01-23T13:37:06.107967
2016-02-29T01:13:25
2016-02-29T01:13:25
null
0
0
null
null
null
null
UTF-8
C
false
false
2,419
c
// Copyright (C) 2015 University of Oregon // You may distribute under the terms of either the GNU General Public // License or the Apache License, as specified in the README file. // For more information, see the README file. /* */ /* wetrelayh.c - made from relayh.c (9.2 9/29/94) - relayed cosy, including regula...
[ "timburrow@me.com" ]
timburrow@me.com
eac319a6ca37a3972f3f0f2edfb36ae265a7378c
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/xnnpack/src/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c
cb6155e18bc4b040b2a3421104ce9bef93b1b6ac
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
5,243
c
// Auto-generated file. Do not edit! // Template: src/qs8-gemm/MRx4c2-sse.c.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <smmintrin.h>...
[ "jengelh@inai.de" ]
jengelh@inai.de
6331d38a9cc31c8849df271b43a7f2f45fbb2312
16a76ee66d9b2f59c9beee4a4a0e104ce347e32a
/from_boomerang/stattest/arm64_elf_clang_O1_from_rfalke/by_retdec.c
f37fefafd2d7b3a9928a4ee031a6edf13cc0b153
[]
no_license
rfalke/decompiler-subjects
4cee3263fa9116285b4bc4b6373efd2e4efa925f
7187fa93b285c32325826eecd0128e907a28809b
refs/heads/master
2023-08-10T08:24:27.198393
2023-07-28T19:44:41
2023-07-28T19:44:41
3,725,678
41
12
null
2023-03-15T16:14:41
2012-03-15T06:01:36
null
UTF-8
C
false
false
1,060
c
// // This file was generated by the Retargetable Decompiler // Website: https://retdec.com // #include <stdint.h> #include <stdio.h> #include <sys/stat.h> // ------------------------ Functions ------------------------- // From module: /mnt/from_boomerang/./stattest/source.c // Address range: 0x400640 - 0x40068c /...
[ "i-git-stone@rf.risimo.net" ]
i-git-stone@rf.risimo.net
7a4049e6cb78807c75c062bba8e87330ad2d16d3
c013cf150a7ae728caa1468125f0d42f7a5a52eb
/src/chiabls/contrib/relic/src/pc/relic_pc_core.c
b6d7f35a91a3d24f2007bbc1bbf4f8333249a9d4
[ "Apache-2.0", "ISC", "LGPL-3.0-only", "MIT", "LGPL-2.1-only", "LGPL-2.0-or-later", "LGPL-2.1-or-later", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
PIVX-Project/PIVX
c9d209ea7b8cee627f5ccc1cb63d334b68c454de
7488a2721da8a4defc08d145dadd3c3065e2735d
refs/heads/master
2023-08-19T10:18:31.494805
2023-08-17T03:38:56
2023-08-17T03:40:09
50,740,659
663
1,520
MIT
2023-09-13T06:26:34
2016-01-30T19:20:24
C++
UTF-8
C
false
false
1,972
c
/* * RELIC is an Efficient LIbrary for Cryptography * Copyright (c) 2020 RELIC Authors * * This file is part of RELIC. RELIC is legal property of its developers, * whose names are not listed here. Please refer to the COPYRIGHT file * for contact information. * * RELIC is free software; you can redistribute it a...
[ "fuzzbawls@gmail.com" ]
fuzzbawls@gmail.com
7a67b85b98035cef011e1b4987aab51575242634
1c27e90e2739fb963f1af5e76ddbb06d9cfd9c91
/tcpcli01.c
2587fee1954b44204207df8c756141f4931a4bb9
[]
no_license
sannianji/the_unp1
6e9a1c019af459c36ed97172d5279bc1141a5a3b
86660602a09e06583f440d1370d48c1fa193300b
refs/heads/master
2020-03-06T14:28:28.148530
2018-04-20T04:20:40
2018-04-20T04:20:40
126,936,561
0
0
null
null
null
null
UTF-8
C
false
false
542
c
#include "unp.h" extern void str_cli(FILE*,int); int main(int argc,char **argv) { int sockfd; struct sockaddr_in servaddr; if(argc!=2) err_quit("usage: tcpcli <IPaddress>"); if((sockfd=socket(AF_INET,SOCK_STREAM,0))<0) err_sys("socket"); bzero(&servaddr,sizeof(servaddr)); servaddr.sin_family=AF_INET; serva...
[ "sannianjisansan@gmail.com" ]
sannianjisansan@gmail.com
ee999d94fa78c601ed88cec243424f55d6d75dc9
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/110/979/CWE690_NULL_Deref_From_Return__char_calloc_02.c
bb27a04279bee5e12ac0951e93722c0c42766939
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C
false
false
3,280
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE690_NULL_Deref_From_Return__char_calloc_02.c Label Definition File: CWE690_NULL_Deref_From_Return.free.label.xml Template File: source-sinks-02.tmpl.c */ /* * @description * CWE: 690 Unchecked Return Value To NULL Pointer * BadSource: calloc Allocate data using calloc...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
3c77c17553317ce263497e943656be5b03c3fc20
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/kphp-kdb/search/extr_search-import-dump.c_log_1int.c
c4dbbc4b2a1ff2a875ffa445394a1ede91dec1fe
[]
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
590
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
a99fccb53ff2bf7a0a209c69404ebb241af3d9d7
0882d751f26bd579d2ad8e0fd0895a63e761f1f0
/main.c
6f68de1ecff02820839a2b3cb2d30e664efe504a
[]
no_license
PICmajster/PIC32MM_Tutorial_Part4
ba46187dbb11a882d5e3bdfb3e5b9c6479625dbe
7bc8aabf45cfcb3e5a4d0e0a6e6eb28e5ac81fef
refs/heads/master
2020-05-04T07:39:30.097514
2019-04-02T08:37:11
2019-04-02T08:37:11
179,032,992
0
0
null
null
null
null
UTF-8
C
false
false
2,939
c
/** Generated main.c file from MPLAB Code Configurator @Company Microchip Technology Inc. @File Name main.c @Summary This is the generated main.c using PIC24 / dsPIC33 / PIC32MM MCUs. @Description This source file provides main entry point for system intialization and applicat...
[ "picmajster.blog@gmail.com" ]
picmajster.blog@gmail.com
803e1a1e0c1e70b6cf746374fcd70b786d680b6f
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/atoyatl/tecqumin/obj/draught_flowers.c
dacae39957bd9d75f7ec4f2ea5d09670da5c8bfa
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cherno-SuS/SunderingShadows
5f755fbebb79dc0b9d1c2a0541408be4afeb8b67
c3b4370beb2c4351ecc60826850c94892a42b685
refs/heads/main
2023-04-21T09:52:14.580024
2021-03-23T12:09:55
2021-03-23T12:09:55
349,490,686
0
0
NOASSERTION
2021-03-23T12:09:56
2021-03-19T16:40:12
null
UTF-8
C
false
false
2,798
c
#include <std.h> #include "../tecqumin.h" #define SAVE_D "/daemon/saving_d.c" inherit POTION; void create() { ::create() ; add_id("draught of flowers"); add_id("pink potion"); add_id("purple"); set_obvious_short("%^BOLD%^%^MAGENTA%^A vial containing a pink "+ "potion"); set_short("%^BOL...
[ "law@shadowgate.org" ]
law@shadowgate.org
cf5c1e979e084b35c6226601e77b50b7e679bb98
0023d3d1f47b915cf6d4d2b7e5acd357632ca07d
/BLAS/SRC/scopy.c
416cfbb60f5eab6f5a1f98f50dd88a94dc48ca68
[ "BSD-3-Clause-Open-MPI", "BSD-3-Clause" ]
permissive
ucb-bar/riscv-blas
a5f0d335d3ccabd610ae31301d622e31455cd966
dbbb46a5ededefdf5ec2e0bcf6d678ceb591a4d0
refs/heads/riscv
2021-06-04T11:05:24.385251
2020-04-20T06:51:35
2020-04-20T06:51:35
146,916,194
15
5
NOASSERTION
2020-04-20T06:51:36
2018-08-31T16:21:28
Fortran
UTF-8
C
false
false
4,246
c
/* scopy.f -- translated by f2c (version 20160102). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of ...
[ "jerryz123@berkeley.edu" ]
jerryz123@berkeley.edu
393085a7a4591e0eff2945b3f20e78457afdb02e
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/tharis/barrow/mon/priest.c
89aea3d3d0abba33dba052a52a068ec2d944789e
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cherno-SuS/SunderingShadows
5f755fbebb79dc0b9d1c2a0541408be4afeb8b67
c3b4370beb2c4351ecc60826850c94892a42b685
refs/heads/main
2023-04-21T09:52:14.580024
2021-03-23T12:09:55
2021-03-23T12:09:55
349,490,686
0
0
NOASSERTION
2021-03-23T12:09:56
2021-03-19T16:40:12
null
UTF-8
C
false
false
5,957
c
#include <std.h> #include "/d/tharis/barrow/short1.h" inherit MONSTER; int xx; void init() { ::init(); add_action("no_func","throw"); add_action("no_func","stab"); add_action("no_func","steal"); add_action("no_func","rush"); } void create() { :: create(); set_name("priest"); set_id(({ ...
[ "law@shadowgate.org" ]
law@shadowgate.org
7a9fda24878f3b3aeaeda7967fb0deabc517c604
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/arch/powerpc/include/asm/trace_clock.h
ef70c2f7974d84ee15b3e2a338d5e5b580045cd3
[ "MIT", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
eerimoq/monolinux-example-project
7cc19c6fc179a6d1fd3ec60f383f906b727e6715
57c4c2928b11cc04db59fb5ced962762099a9895
refs/heads/master
2021-02-08T10:57:58.215466
2020-07-02T08:04:25
2020-07-02T08:04:25
244,144,570
6
0
MIT
2020-07-02T08:15:50
2020-03-01T12:24:47
C
UTF-8
C
false
false
372
h
/* SPDX-License-Identifier: GPL-2.0-only */ /* * * Copyright (C) 2015 Naveen N. Rao, IBM Corporation */ #ifndef _ASM_PPC_TRACE_CLOCK_H #define _ASM_PPC_TRACE_CLOCK_H #include <linux/compiler.h> #include <linux/types.h> extern u64 notrace trace_clock_ppc_tb(void); #define ARCH_TRACE_CLOCKS { trace_clock_ppc_tb, "...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
c57701b91fdab19f8f0c0193188b4e65e613c9ec
8e8b4bc696eb088285bdc193b7fe4ec91ac3cd78
/Inc/mc_config.h
8d0a98e3d86a18ccdde514fec7de2939a3d75cac
[]
no_license
shuimuyangsha/SDK52-P-NUCLEO-TBMT-sensor
7e08bb4cab71ff6d00f92980175005bbc8277241
f875e1b1bdf8ee86220badeceff2367df7152ce8
refs/heads/master
2020-12-14T17:43:49.611051
2020-10-26T04:14:27
2020-10-26T04:14:27
234,827,173
1
0
null
null
null
null
UTF-8
C
false
false
4,063
h
/** ****************************************************************************** * @file mc_config.h * @author Motor Control SDK Team, ST Microelectronics * @brief Motor Control Subsystem components configuration and handler * structures declarations. *************************************...
[ "1023178387@qq.com" ]
1023178387@qq.com
ea407839ff2f64abdfbf133e861ebf7d7ebe2189
d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3
/Modules/ThirdParty/VNL/src/vxl/core/vnl/vnl_double_3x4.h
6e84c367d4f3cad6d35ce4ac7da0bc466fc76004
[ "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "NTP", "IJG", "GPL-1.0-or-later", "libtiff", "BSD-4.3TAHOE", "...
permissive
nalinimsingh/ITK_4D
18e8929672df64df58a6446f047e6ec04d3c2616
95a2eacaeaffe572889832ef0894239f89e3f303
refs/heads/master
2020-03-17T18:58:50.953317
2018-10-01T20:46:43
2018-10-01T21:21:01
133,841,430
0
0
Apache-2.0
2018-05-17T16:34:54
2018-05-17T16:34:53
null
UTF-8
C
false
false
708
h
// This is core/vnl/vnl_double_3x4.h #ifndef vnl_double_3x4_h_ #define vnl_double_3x4_h_ #ifdef VCL_NEEDS_PRAGMA_INTERFACE #pragma interface #endif //: // \file // \brief 3x4 Matrix of double // \author Andrew W. Fitzgibbon, Oxford RRG // \date 04 Aug 96 // // vnl_double_3x4 is a vnl_matrix<double> of f...
[ "ruizhi@csail.mit.edu" ]
ruizhi@csail.mit.edu
6261a4acf1e4ca841c05852cc780b28a5d4b762f
6fa6be3e7dcb10d020209f7a73de393a1f24bd45
/u-boot/arch/arm/mach-at91/include/mach/at91_sck.h
ce8e577c331eea7ddfc8945ec82b79a661c106dc
[ "Apache-2.0", "GPL-2.0-or-later" ]
permissive
okshall/v3s-linux-sdk
f9eb73a1e271ebf02320f98befabccdb6c462944
776196306198f14ec6f10c316950a81b7e417886
refs/heads/master
2021-07-07T11:44:34.667911
2021-01-22T04:43:38
2021-01-22T04:43:38
225,315,340
1
0
Apache-2.0
2019-12-02T07:46:23
2019-12-02T07:46:22
null
UTF-8
C
false
false
580
h
/* * Copyright (C) 2016 Google, Inc * Written by Simon Glass <sjg@chromium.org> * * SPDX-License-Identifier: GPL-2.0+ */ #ifndef AT91_SCK_H #define AT91_SCK_H /* * SCKCR flags */ #define AT91SAM9G45_SCKCR_RCEN (1 << 0) /* RC Oscillator Enable */ #define AT91SAM9G45_SCKCR_OSC32EN (1 << 1) /* 32kHz Oscilla...
[ "yeashenlee@163.com" ]
yeashenlee@163.com
61a4125f60dda7a38ea8f3d7353a8be732e6d465
6c58570c2a55db1f883ffe37d8c18097576f85df
/c/20160810-while/t1.c
2d5284018603cfc32fe6ed98e61862db692e5fe3
[]
no_license
floppyfly/books
4f78f83c3d094936985106eb19fd5320d05dbc9b
cd8f0cb7c3e3377e09911191311604b8e7a089b8
refs/heads/master
2021-01-20T20:32:52.689536
2016-10-29T23:51:55
2016-10-29T23:51:55
64,018,535
0
0
null
null
null
null
UTF-8
C
false
false
313
c
#include <stdio.h> int main(void){ int i=1,j=1,sum=0,sum1=0; while(i<=100){ if(i%2==0){ sum=sum+i; } i=i+1; } printf("ou shu de he shi %d\n",sum); while(j<=100){ if(j%2==1){ sum1=sum1+j; } j=j+1; } printf("ji shu de he shi %d\n",sum1); printf("zong he shi %d\n",sum+sum1); return 0; }
[ "floppyfly@outlook.com" ]
floppyfly@outlook.com
b6cf5e0f0fb4b27e5d2f78a7debb3832d53abefa
e97df22359edd6a59d24469663ee22529fe0abad
/11498 (2).c
a4e02f51daf3387c393def9a10da07ce7ab39fd8
[]
no_license
rofi93/UVA
826d8c07a5410638b8843b66176bc1c6a389c129
08f418b11410f142590322451904f260d606e3f7
refs/heads/master
2020-12-10T13:07:50.131831
2018-09-23T18:53:38
2018-09-23T18:53:38
64,331,702
0
1
null
null
null
null
UTF-8
C
false
false
826
c
#include<stdio.h> int main() { long long int m,n,k,a[1000],b[1000],i; while(scanf("%lld",&k)) { if(k==0) break; scanf("%lld %lld",&m,&n); for(i=0;i<k;i++) { scanf("%lld %lld",&a[i],&b[i]); } for(i=0;i<k;i++) { if(a[...
[ "khairul.basar93@gmail.com" ]
khairul.basar93@gmail.com
83e94bd794a5aaddbb09763230dbe0dbfe24416f
7d8f0cd831710fabf9a57c9c71cbed4c04b69707
/video/x86/x86_decode.h
15afdcab9847f0a6977793f4b43127c0001cd297
[]
no_license
sanderv32/milo-2.2
56367ffaec78a46bbc972d9c22145c508e0d34e3
05c0dd82aef21e6f72219fa7c8e1f10122cda5c1
refs/heads/master
2020-12-27T09:19:00.632644
2020-02-02T22:55:27
2020-02-02T22:55:27
237,849,269
1
1
null
null
null
null
UTF-8
C
false
false
2,011
h
#ifndef x86_decode_h #define x86_decode_h #include "sysenv.h" #include "host.h" #include "x86_regs.h" /* Instruction Decoding Stuff */ #define FETCH_DECODE_MODRM(m,mod,rh,rl) fetch_decode_modrm(m,&mod,&rh,&rl) #define DECODE_RM_BYTE_REGISTER(m,r) decode_rm_byte_register(m,r) #define DECODE_RM_WORD_REGISTER(m,r) dec...
[ "sanderv32@gmail.com" ]
sanderv32@gmail.com
95d0df595d582ec6d7496a950517dbdfe9e1f399
9d4bcc99c546b50f0390f983d68c566a13d6acc9
/AirPortLinux/linux5.6.7/include/uapi/asm/intrinsics.h
18c14322df6a2109d37135fd0e7a0dc87b95772d
[]
no_license
a565109863/AirPortLinux
e84fcaeb7a6c3fca780de0cdb3924eea5ef81139
055388d73c6aff759016a172d347240dcb2f7be5
refs/heads/master
2023-03-09T05:31:16.792560
2021-01-29T01:56:57
2021-01-29T01:56:57
316,202,894
0
0
null
null
null
null
UTF-8
C
false
false
3,605
h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Compiler-dependent intrinsics. * * Copyright (C) 2002-2003 Hewlett-Packard Co * David Mosberger-Tang <davidm@hpl.hp.com> */ #ifndef _UAPI_ASM_IA64_INTRINSICS_H #define _UAPI_ASM_IA64_INTRINSICS_H #ifndef __ASSEMBLY__ #include <linux/types.h>...
[ "zhongjingqin@tal.com" ]
zhongjingqin@tal.com
98d7b6c0d54772f3426147d671fd8be655b53920
dcf26a6bcf853a3f8f6f50f9379998ef4d8aad40
/vendor/hisi/hi35xx/third_party/uboot/board/compulab/cm_fx6/common.c
c5802a5e4e64383bc4fc761eb2d0da2f0ea3cdbb
[]
no_license
small-seven/testmem
c5f3202dce1c369e9d84cdaaccc2008b827c16d8
2771460c617439bd1be562ffdc94543ea170a736
refs/heads/main
2023-03-12T22:16:28.824577
2021-03-03T04:24:59
2021-03-03T04:24:59
343,847,762
1
0
null
null
null
null
UTF-8
C
false
false
329
c
#include <common.h> #include <asm/arch/sys_proto.h> #include <asm/gpio.h> #include <asm/mach-imx/spi.h> #include <fsl_esdhc_imx.h> #include "common.h" #ifdef CONFIG_FSL_ESDHC_IMX #define USDHC_PAD_CTRL (PAD_CTL_PUS_47K_UP | \ #endif #ifdef CONFIG_MXC_SPI #define ECSPI_PAD_CTRL (PAD_CTL_SRE_FAST | PAD_CTL_SPEED_MED | ...
[ "huihuigong@users.noreply.github.com" ]
huihuigong@users.noreply.github.com
5db938cf759ab2c1727f216b1c0b4ff55a9b25ee
acb8d4c4f974d872f31997f591fea4d748f94b93
/d/dali/wangfu13.c
cfcf2e8e586adcdf89ae414f8460a2a1461da20f
[]
no_license
MudRen/SZMUD
8ae6b05718b1a83363478469185e0d776b0fda5c
e3b46e6efa6d353f7f0d00ef676f97d5c0ec3949
refs/heads/master
2023-05-27T16:04:35.845610
2021-06-18T12:47:19
2021-06-18T12:47:19
361,736,744
1
2
null
null
null
null
GB18030
C
false
false
775
c
// Code of ShenZhou // Room: /d/dali/wangfu13.c inherit ROOM; void create() { set("short", "书房"); set("long", @LONG 房中当地放著一张花梨大理石大案,案上堆著各种名人法帖, 并十数方宝砚,各色笔筒,笔海内插的笔如树林一般;那一边设 著斗大的一个汝窑花囊,插著满满的水晶球的白菊花。西壁当中 挂著一米襄阳「烟雨图」。左右挂著一幅对联,乃是颜鲁公墨迹 。其联云:烟霞□骨格,泉石野生涯。案上设著大鼎,左边紫檀 著一个白玉比目鱼磬,傍边挂著小槌。 LONG ); set("cost", 1); set("exits"...
[ "i@oiuv.cn" ]
i@oiuv.cn
ed02c46753375c1a6048adcb710ff4abe4e9ffc8
71e5f96a29f5d643ab888b37677d38c33f8d765d
/d/antioch/vale/rooms/waterfall4.c
9753242cdf77a04c557bc297168c792d8cf742b4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Cherno-SuS/SunderingShadows
5f755fbebb79dc0b9d1c2a0541408be4afeb8b67
c3b4370beb2c4351ecc60826850c94892a42b685
refs/heads/main
2023-04-21T09:52:14.580024
2021-03-23T12:09:55
2021-03-23T12:09:55
349,490,686
0
0
NOASSERTION
2021-03-23T12:09:56
2021-03-19T16:40:12
null
UTF-8
C
false
false
4,758
c
//hades added terrian 1/12/10 #include <std.h> #include "../vale.h" inherit ROOM; void create() { ::create(); set_terrain(NAT_CAVE); set_travel(RUTTED_TRACK); set_property("indoors",1); set_property("fill waterskin", 1); set_property("light",1); set_property("no sticks",1); set_short("Behind the...
[ "law@shadowgate.org" ]
law@shadowgate.org
fa6b9e1f76de5f4811469c94b59f5f90464e818e
249c0213fec656ccfe2e4d4b7cf47c99d778984a
/kernel/include/vxmod.h
fd6c1e2ad485efaf16e750dd61aca5143315ecef
[ "BSD-3-Clause" ]
permissive
agrigomi/vx-1
b25bf92b7979070b8d0ab8ca37bd50427cb97867
a63f931b434b41c0204a8666b8de4c5cb8ef9682
refs/heads/master
2020-03-12T02:41:32.183557
2018-09-30T10:21:03
2018-09-30T10:21:03
130,408,856
0
0
null
null
null
null
UTF-8
C
false
false
2,689
h
#ifndef __VXMOD_H__ #define __VXMOD_H__ #include "mgtype.h" #include "compiler.h" #ifdef _CORE_ #include "startup_context.h" extern _core_startup_t *__g_p_core_startup__; #endif #ifdef _EXT_ #include "ext_context.h" extern _ext_startup_t *__g_p_ext_startup__; #endif /* section name for all module descriptors */ #def...
[ "agrigomi@abv.bg" ]
agrigomi@abv.bg
772681d1f6241be7d07a7bb1bbe7491509a6dbd9
a52bfb54bda7604534487c2744642da30f634b3b
/ROMOSMAP/SRCS/tos306de/alcyon/orig/libsrc/signal.c
f7add73606afc0259267b361d102ff077c381b0c
[]
no_license
Kochise/atari-docs
292ac844dd951065d7d68d91725d013455b8d3c3
51bbffce0b9930c1d349219b9a4c1d60e53f813f
refs/heads/master
2021-01-22T19:49:13.763992
2017-03-29T18:18:13
2017-03-29T18:18:13
85,242,308
1
1
null
null
null
null
UTF-8
C
false
false
3,428
c
/****************************************************************************/ /* */ /* S i g n a l F u n c t i o n */ /* ----------------------------- */ /* */ /* The "signal" function allows a routine in C to catch a 68000 */ /* interrupt, and service it with a C functio...
[ "david.koch@9online.fr" ]
david.koch@9online.fr
608ef981ff311bfed496285625755f9127a07178
f410a440b8578d6db81ca8ba4297fa1d93f2d473
/User/usbh_mass_storage/usbh_usr.c
6fd131d985536b7d53ed09a6a6f399f42aa0a5e6
[]
no_license
neoyong/H7-TOOL_STM32H7_App
6e0d34191735095117e41229d33829dd283b0643
33f54adcfd2e4d3dc93b9da57927bc97e8365a4e
refs/heads/master
2020-08-31T09:41:48.047062
2019-10-27T14:43:08
2019-10-27T14:43:08
null
0
0
null
null
null
null
GB18030
C
false
false
3,648
c
/* ********************************************************************************************************* * * 模块名称 : U盘驱动用户接口 * 文件名称 : usbh_usr.c * 版 本 : V1.0 * 说 明 : 封装U盘操作函数,提供给APP使用. * * 修改记录 : * 版本号 日期 作者 说明 * V1.0 2018-09-05 armfly 正式发布 * * Copyright (C), 2015-2030, 安富莱电子 www...
[ "evenshi@gmail.com" ]
evenshi@gmail.com
5885673e8d8598d7d0631a119e219774b5dc4ec4
ac362bb8969d647cd219430bc71c831d894e531c
/dist/ntp/ntpd/cmd_args.c
a29ce61f754c42fcdc0cf6515bc50300edb0ff9a
[ "NTP" ]
permissive
noud/mouse-bsd-4.0.1
efb3b16fcc872ab227e6bb651cf1e836796a0804
4c0a1e08df407a759afac2d6a98507df94f5f814
refs/heads/master
2023-02-24T23:42:54.060718
2020-08-16T20:10:53
2020-08-16T20:10:53
334,536,412
0
0
null
null
null
null
UTF-8
C
false
false
4,883
c
/* $NetBSD: cmd_args.c,v 1.3.4.1 2007/08/21 08:40:00 ghen Exp $ */ /* * cmd_args.c = command-line argument processing */ #ifdef HAVE_CONFIG_H # include <config.h> #endif #include "ntpd.h" #include "ntp_stdlib.h" #include "ntp_cmdargs.h" #ifdef SIM # include "ntpsim.h" # include "ntpdsim-opts.h" # define OPTSTRUCT ...
[ "mouse@Rodents-Montreal.ORG" ]
mouse@Rodents-Montreal.ORG
831cc910d0a6711a9707c43a03e339b570d10dc1
5b4582abdddfa1d0cd224cb8a0c7463b1b686c71
/DeviceDriverLibrary/hc32m423_ddl/example/ctc/ctc_xtal_trimming/source/main.c
1a049f98a0ec194f71a1309c71bde21534634ad2
[ "BSD-3-Clause" ]
permissive
hdscmcu/hc32m423
dc9d5865d0f2eb717c1783b814af70f2618eca61
6cd06dc78eff7efe8ac3332fdbab7ddbc1d5927a
refs/heads/master
2023-01-30T05:45:43.080246
2020-12-14T06:08:32
2020-12-14T06:08:32
295,657,872
0
0
null
null
null
null
UTF-8
C
false
false
7,533
c
/** ******************************************************************************* * @file ctc/ctc_xtal_trimming/source/main.c * @brief This example demonstrates CTC trimming by XTAL clock. @verbatim Change Logs: Date Author Notes 2020-09-15 CDT First version @endv...
[ "7851615@qq.com" ]
7851615@qq.com
2b1f28293ca39504b59f4ec391713f6cd5c90b4d
0b1f18c37bfbf6901749916a5935c49b1afe17e3
/core/lib/experimental/gtk/win/include/atk-1.0/atk/atk.h
0bc900d2f70c90c581cdaafd890cbf563a0c8e97
[ "OpenSSL", "Zlib", "BSD-3-Clause" ]
permissive
objeck/objeck-lang
2e97ff6c070492e53d4a5f1bec88e07dda4b4296
627482005da67618fd46133d18ade2d66e515284
refs/heads/master
2023-08-24T05:38:15.489677
2023-08-22T20:06:43
2023-08-22T20:06:43
20,608,381
240
33
NOASSERTION
2023-09-06T20:13:02
2014-06-08T03:25:12
C
UTF-8
C
false
false
1,943
h
/* ATK - Accessibility Toolkit * Copyright 2001 Sun Microsystems Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any ...
[ "objeck@gmail.com" ]
objeck@gmail.com
9f271f89d508539c56ab39685429cc98ace05f6e
2b64c614c276d7c3dafe7b6affeef5f60f984e9b
/palette.c
c6485775b417977f141ad540daca7a14c9192686
[]
no_license
malaterre/offb
328b611b495bb00deb59c1c489929da23bf8fd16
5b63e0704dfe1f57959d0e850dcbdfb3bebf8298
refs/heads/master
2021-01-18T20:53:25.825583
2016-10-03T20:13:36
2016-10-03T20:13:36
69,846,957
0
0
null
null
null
null
UTF-8
C
false
false
928
c
#include <string.h> #include <assert.h> #include <errno.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <fcntl.h> #include <sys/ioctl.h> #include <linux/fb.h> int main() { // Get palette information unsigned short r[256]; unsigned short g[256]; unsigned short b[256]; unsigned short a[...
[ "mathieu.malaterre@gmail.com" ]
mathieu.malaterre@gmail.com
846f37ad58c16ffaa648459213f0aee1234dfd8e
53cf7e81195e747615e8c853080802b54654e0d7
/item/234.c
0064a4e5c794944954cf26a6ec25088ef703165e
[]
no_license
JacksieCheung/leetcode
fe5261b717ef4e04d5ffa1ef5de0394786e5ec54
1779457511770ca2d54dc554e05036a2199404a8
refs/heads/main
2023-01-09T20:22:42.413812
2020-11-12T11:51:13
2020-11-12T11:51:13
303,081,745
0
0
null
null
null
null
UTF-8
C
false
false
633
c
// 回文链表 /** * Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * }; */ // 复制到数组双指针 bool isPalindrome(struct ListNode* head){ struct ListNode* ptr = head; int count = 0; while(ptr!=NULL) { ptr = ptr->next; count++; } if (count<...
[ "1799902904@qq.com" ]
1799902904@qq.com
0c4fd871585b25b56a06781cdcc66053b7285446
c27cd1cb70e7be02d04189861f1b66ecc5d91151
/Summer Ball Shooter/VEX V5 CODE/PROS/V43/include/main.h
4894c425da24905859e61e0fb72bf7116fe6a487
[]
no_license
BeckerJason/Turning-Point
5e0b067569e94e08be00efa2128c48f3c524920b
bc6600213766436235fdad336a6f8e47e23088e2
refs/heads/master
2022-05-13T04:32:27.365073
2022-04-16T01:55:03
2022-04-16T01:55:03
251,495,086
0
0
null
null
null
null
UTF-8
C
false
false
2,227
h
/** * \file main.h * * Contains common definitions and header files used throughout your PROS * project. * * Copyright (c) 2017-2018, Purdue University ACM SIGBots. * All rights reserved. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not di...
[ "jman5438212@gmail.com" ]
jman5438212@gmail.com
a3600cc8e6171cb1a396e91fa26e0214c6fde080
963af14046bf70bf2157b1993c00c3ef9f562c52
/Client/client/render/r_const.h
72507facf21bdbcd0e40380caf8afc4954feb771
[]
no_license
brentdc-nz/Half-LifeX
05e73689a3b336becba5b0df65f15efabed7c9a4
6d3779333b35689d8145f317b4c2da0d9b225fd4
refs/heads/master
2023-08-09T07:44:33.353360
2023-07-27T11:02:25
2023-07-27T11:02:25
84,005,431
10
3
null
null
null
null
UTF-8
C
false
false
2,218
h
/* r_const.h - renderer constants (shared with engine) Copyright (C) 2011 Uncle Mike This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later ver...
[ "puxleymartin@gmail.com" ]
puxleymartin@gmail.com
399f5bca57f20813cab225462e9411cb33e6df52
438cd59a4138cd87d79dcd62d699d563ed976eb9
/mame/src/mame/video/plygonet.c
4c1d84b938387eab25f517a850b92f6c8d2ed3e4
[]
no_license
clobber/UME
031c677d49634b40b5db27fbc6e15d51c97de1c5
9d4231358d519eae294007133ab3eb45ae7e4f41
refs/heads/master
2021-01-20T05:31:28.376152
2013-05-01T18:42:59
2013-05-01T18:42:59
null
0
0
null
null
null
null
UTF-8
C
false
false
3,614
c
/* Polygonet Commanders (Konami, 1993) Video hardware emulation Currently contains: TTL text plane (probably not complete, needs banking? colors?) Needs: PSAC2 roz plane, polygons */ #include "emu.h" #include "video/konicdev.h" #include "includes/plygonet.h" /* TTL text plane */ TILE...
[ "brymaster@gmail.com" ]
brymaster@gmail.com
f690098349e84f8f7f51e11b997e6c7ed1381ff2
5b30c3cf1de91895bbbd8d372017fb73b2017090
/src/link_config.c
c7325a13574085d0144c26572a7ae46235809f37
[ "Apache-2.0" ]
permissive
StratifyLabs/Nucleo-F446ZE
8e7e7eeb695ad42d67ce0d294dfec7113139792a
e33292a5e6133d96f6a078c99f849bd8b796cd9a
refs/heads/master
2021-07-21T11:43:01.187018
2021-07-14T23:04:30
2021-07-14T23:04:30
106,633,840
2
0
null
2017-12-27T18:03:03
2017-10-12T02:22:37
C
UTF-8
C
false
false
4,008
c
/* Copyright 2011-2018 Stratify Labs, 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 law or agreed to in writing, s...
[ "tyler.w.gilbert@gmail.com" ]
tyler.w.gilbert@gmail.com
1ee5b4037a7dc20a06f49769d822aba77559fa1c
5c255f911786e984286b1f7a4e6091a68419d049
/code/cbcfa0d9-4df2-41f1-8641-aa5d7f94f465.c
fad0fce31d2323e8082742d1bfef4900918c5679
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
253
c
#include <stdio.h> int main() { int i=4; int j=12; int k; int l; i = 53; l = 64; k = i/j; l = i/j; l = i/j; l = k-j; l = l%j; l = l+j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
4c0605ea04d5f72c48a7ff30ffb638627e867ed8
b2d48aac47dc3a3050f9cb562808f0e6f19a36e4
/disksim/src/syssim_driver.c
15f54da414d2bed4f76256ee0407f95fbf8f066c
[ "LicenseRef-scancode-warranty-disclaimer" ]
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
4,802
c
/* * DiskSim Storage Subsystem Simulation Environment (Version 4.0) * Revision Authors: John Bucy, Greg Ganger * Contributors: John Griffin, Jiri Schindler, Steve Schlosser * * Copyright (c) of Carnegie Mellon University, 2001-2008. * * This software is being provided by the copyright holders under the ...
[ "bhagavan.prasad@blackpeppertech.com" ]
bhagavan.prasad@blackpeppertech.com
6c20d206dd97c451ff811560205a50b3baadba4d
5792b184e71a9de7779e0bd21b6833f8ddfdb4b5
/sysvr4/svr4/xcplib/lxcurses/clrtoeol.c
75ebc43c04e7beec7f136cf9f721d8a21114c316
[]
no_license
ryanwoodsmall/oldsysv
1637a3e62bb1b9426a224e832f44a46f1e1a31d4
e68293af91e2dc39f5f29c20d7e429f9e0cabc75
refs/heads/master
2020-03-30T06:06:30.495611
2018-09-29T09:04:59
2018-09-29T09:04:59
150,839,670
7
0
null
null
null
null
UTF-8
C
false
false
1,575
c
/* Copyright (c) 1990 UNIX System Laboratories, Inc. */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */ /* All Rights Reserved */ /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */ /* UNIX System Laboratories, Inc. */ /* The copyright notice above does not evidence any */...
[ "rwoodsmall@gmail.com" ]
rwoodsmall@gmail.com
41a000e69c4d93672d08ed7ed3777e385cc9a095
d1fd5aef8bff1cf7936aa733018c683e0c6b9002
/stuff.c
9a3f35cdf3ebd8f2e356ba2c6f16498123a63cbc
[]
no_license
fhideous/MinRaycastingEngine
c491e46ad0a520a46fb2c582fdb9d1fe7c91e15c
ae9597cd7ce7c2b0ab51d6d4a7ce4c49dacc6203
refs/heads/master
2023-05-07T20:39:50.104650
2021-05-30T22:36:43
2021-05-30T22:36:43
333,738,490
0
0
null
null
null
null
UTF-8
C
false
false
957
c
#include "hdrs/cub3d.h" float ABS(float a) { if (a < 0) return (-1 * a); return (a); } int digits_in_str(const char *str) { int i; i = 0; while (str[i]) { if (!ft_isdigit(str[i]) && str[i] != ' ') return (0); i++; } return (1); } int dp_len(char **strs) { int i; i = 0; while (strs[i] != NULL) ...
[ "kul.leshiy@yandex.ru" ]
kul.leshiy@yandex.ru
3419a835a39118441d48c5aa329cc595934b4146
72af85619989691b4f20e03da1e5fea61656ec59
/ti-f28004x-resources-and-examples/examples_driverlib/examples/flash/flashapi_ex2_erase.c
0d2ade622412a19c9a76083c5229ab64afdf4bb6
[ "MIT" ]
permissive
UOSupermileage/BLDC-F280049C
3f6735f78056bda344e3e1f17daccd77549217ab
dc10e99a24ac2d959789043f883f89eacefcd90d
refs/heads/master
2022-10-24T15:04:55.402316
2020-06-12T12:54:40
2020-06-12T12:54:40
271,787,271
4
1
null
null
null
null
UTF-8
C
false
false
5,746
c
//########################################################################### // // FILE: flashapi_ex2_erase.c // // TITLE: Erase Source Code // // Functions: // // void sharedErase(uint16_t command, uint32_t sectors) // //########################################################################### // $TI Relea...
[ "ryan.fleck@protonmail.com" ]
ryan.fleck@protonmail.com
c895531f034e6eb77352d3be966a5f6c623eb719
4fc15ccac40536024440170354cfb420b8c0b921
/Microchip/SAMG_DFP/3.4.57/samg54/xc32/include/xc.h
a5bd8fb523a93e7b4ce5d8fd277eea6eca0ad46f
[ "Apache-2.0" ]
permissive
dd-rrc-ps/dev_packs
332ada2d4e127d4b176305cc2149fd61b8ed4836
774a64e80f5f5ee6f54e1b55ee4cffe2762927bf
refs/heads/master
2023-03-12T17:38:20.424934
2021-02-23T21:01:56
2021-02-23T21:01:56
null
0
0
null
null
null
null
UTF-8
C
false
false
2,472
h
/*------------------------------------------------------------------------- * XC processor header for PIC32C devices * * Copyright (c) 2017, Microchip Technology Inc. and its subsidiaries ("Microchip") * All rights reserved. * * This software is developed by Microchip Technology Inc. and its * subsidiaries ("Mi...
[ "thibaut.viard@microchip.com" ]
thibaut.viard@microchip.com
fdd9777a90bbf28747ecebf66b2ab7988efc432e
74b8f8e993382091eb05e395f9467194eb12f2c7
/posixtestsuite/conformance/interfaces/pthread_cond_timedwait/3-1.c
0d4e356b026e1eed69b421d0dee086d792937e0a
[ "MIT", "GPL-1.0-or-later", "GPL-2.0-only" ]
permissive
mpdn/unthread
9004309a7172b9c7a5c4afd020bb1e05fcc7e6d4
aa227f9940da4c9d8826de21458f2d74a7936ba8
refs/heads/master
2023-05-11T19:11:04.063840
2023-05-05T19:02:29
2023-05-07T17:03:01
271,648,432
28
6
MIT
2023-05-07T17:03:03
2020-06-11T21:18:00
C
UTF-8
C
false
false
3,145
c
/* * Copyright (c) 2002, Intel Corporation. All rights reserved. * Created by: bing.wei.liu REMOVE-THIS AT intel DOT com * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. * Test that pthread_cond_timedwait() * ...
[ "mike@mikepedersen.dk" ]
mike@mikepedersen.dk
ecb47fdbe9dccc51840b44cfc649c6ff133d1ea8
50e7f29b07531bf3db585e420fb7a4209bacf102
/unity-samples/Temp/il2cppOutput/il2cppOutput/UnityEngine_UnityEngine_Events_InvokableCall_1_gen_5.h
b3f56273732ef0f1bdaedb9f60ff6658892fc7d4
[]
no_license
golergka/appboy-unity-sdk
0d7a8732c6dfd66ffbf30c9214c932a04f2b6d59
deeeba3849bd3a8e6a1166e95a6a5be6f5038646
refs/heads/master
2021-01-18T11:53:22.096992
2016-03-17T12:24:52
2016-03-17T12:24:52
54,115,484
0
0
null
2016-03-17T12:18:57
2016-03-17T12:18:56
null
UTF-8
C
false
false
542
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // UnityEngine.Events.UnityAction`1<System.String> struct UnityAction_1_t2503; #include "UnityEngine_UnityEngine_Events_BaseInvokableCall.h" // UnityEngine.Events.InvokableCall`1<Sy...
[ "wenzhi@appboy.com" ]
wenzhi@appboy.com
dc5a646a6b37f2e8c879f5c4474c61cad4ff6567
bc6430c488a225a2796b50632cd4a88395777a76
/RRC_staticlib/asn1c_36331_d10/BandClassInfoCDMA2000.c
cb9ec7ba7afd72f7631d771c53a3cf4e22ea7289
[]
no_license
shflyeagle/EagleEye
5f312eaaf9a8a4e2bf5786a38d4f3d6d690d71b7
98b3b802a572ad81bc346905dfdf8396a8189912
refs/heads/master
2020-05-07T08:33:53.684195
2019-04-10T07:53:56
2019-04-10T07:53:56
180,328,573
0
0
null
null
null
null
UTF-8
C
false
false
4,775
c
/* * Generated by asn1c-0.9.27 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "/home/qiongbod/asn1c-0.9.27/asn1c/input/36331-d10.asn" * `asn1c -S /home/qiongbod/asn1c-0.9.27/skeletons -fcompound-names -fwide-types -gen-PER` */ #include "BandClassInfoCDMA2000.h" static int mem...
[ "qiongbo.deng@nokia-sbell.com" ]
qiongbo.deng@nokia-sbell.com
362f37643e3743180212397f52d7ec0ea7cdc4d9
a3055c74955449067334cb56b96e91a36a2ec6dc
/d/dali/npc/duanwuwei.c
4b3f8c5846b5363f1bf540b0d6dafcff2d8b0a25
[]
no_license
flyinglb/jyqx
32dfac5b15b373919ae32688c0d1119bcb4592ff
1a6f8e002a206b05a5ba90554893f1b78dc91bb4
refs/heads/master
2020-09-26T18:18:33.949628
2019-12-06T11:47:47
2019-12-06T11:47:47
226,309,372
5
2
null
null
null
null
GB18030
C
false
false
2,003
c
// duanwuwei.c #include <ansi.h> inherit NPC; inherit F_MASTER; void create() { set_name("段无畏", ({ "duan wuwei", "duan" })); set("title", "镇南王府管家" ); set("long", "他是大理国镇南王府管家。\n"); set("gender", "男性"); set("age", 40); set("attitude", "friendly"); set("shen_type", 1); set("str", 20); set("int", 20); set("co...
[ "flyinglb@qq.com" ]
flyinglb@qq.com
391547de90d24cf6070c07d3cbf64f90ef4f46c1
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/ca49de55-a9e4-4913-b6e4-8acc3052801b.c
3927a2034863b3b1d1196fb29d9a58d48c75473b
[]
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
566
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 53; l = 64; k = i+j; l = i/j; l = i%j; l = l+j; k = k--*i; //variables //random /* START VULNERABILITY */ int a; int b[75]; int c[46]; a = 0; while (a > -1) { ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com