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
1b4c8a2dd4e09e75fe863e8511e2702760cb6430
998758203d6ee0c2368507c240e665c023a6dc96
/libft/ft_strrchr.c
9def7f20d1221fd19d95ad6d74337cfec54803df
[]
no_license
appolche/ft_printf
ccc9163bd265050b7c05fc19f3c14a54bb147ddb
f56e102f3124602b9157c1a099e1b2b8bf7aac12
refs/heads/main
2023-06-09T09:58:11.591714
2021-06-29T17:42:19
2021-06-29T17:42:19
381,448,785
0
0
null
null
null
null
UTF-8
C
false
false
194
c
#include "libft.h" char *ft_strrchr(const char *s, int c) { char *s1; s1 = (char *)s + (ft_strlen(s)); while (s1 >= s) { if (*s1 == (char)c) return (s1); s1--; } return (NULL); }
[ "dleaves@am-d1.msk.21-school.ru" ]
dleaves@am-d1.msk.21-school.ru
2ee26e1106951ca8b43c70c80bcf24fac8543c8d
b25196451dcf89a50e601bd0cd99be69e6275e8c
/cub3d/libft/ft_memset.c
525849a841d665d6228510786ec5fc1c665c1081
[]
no_license
agf3003/21
a1edc2aff636477a21e5e79c62dde6eeafbb97c4
0847aa38ef88356a9c317a2564fa8809e6322fbc
refs/heads/master
2023-04-02T08:47:19.144620
2021-04-06T15:48:17
2021-04-06T15:48:17
336,758,133
0
0
null
null
null
null
UTF-8
C
false
false
1,079
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memset.c :+: :+: :+: ...
[ "bellan@ga-m5.msk.21-school.ru" ]
bellan@ga-m5.msk.21-school.ru
4e3537b299564a002c3650229fdb4e360287ebd7
4a2d847ef7e4aed838b89f14e0f2d3a1604095c3
/CuSaKiS_Model/Cusakis140304/slprj/_sfprj/CusakisME4901/_self/sfun/src/c7_CusakisME4901.h
854312082f74ddd067288bf21275085b04fe5a43
[]
no_license
alexgrompone/Cusakis
10055544856e115f7ff27a8659c4697d5e8256fe
94787eb6079864077fc17d6acfb7304b99275c05
refs/heads/master
2021-01-10T14:24:13.591284
2016-03-23T15:13:05
2016-03-23T15:13:05
54,569,682
0
0
null
null
null
null
UTF-8
C
false
false
1,011
h
#ifndef __c7_CusakisME4901_h__ #define __c7_CusakisME4901_h__ /* Include files */ #include "sfc_sf.h" #include "sfc_mex.h" #include "rtwtypes.h" /* Type Definitions */ #ifndef typedef_SFc7_CusakisME4901InstanceStruct #define typedef_SFc7_CusakisME4901InstanceStruct typedef struct { SimStruct *S; ChartInfoStruct ...
[ "alex.grompone@gmail.com" ]
alex.grompone@gmail.com
32e130b3ca215cd80c45473d3b56e47ee55402be
ae8d0783918ca0476c4ea617fc014c7436538c5a
/examples/KPRCA_00112/lib/strchr.c
cd52fec9c417c106041c6370c163dec1e2a148f7
[ "MIT" ]
permissive
GrammaTech/cgc-cbs
75c93cd2d33f794b33097a45f7b6417fb27acc25
797bd722ea544ab8205446dde13dcfdc059c0989
refs/heads/master
2022-03-18T07:07:47.271029
2022-02-20T01:13:52
2022-02-21T19:38:33
105,695,732
9
5
MIT
2022-02-21T19:38:34
2017-10-03T19:47:08
C
UTF-8
C
false
false
1,362
c
/* * Copyright (c) 2015 Kaprica Security, 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 without limitation the rights * to use, copy, modify, mer...
[ "CyberGrandChallenge@darpa.mil" ]
CyberGrandChallenge@darpa.mil
333058673e4d1a54a5aafbf04a91ae5b20611284
1c93e792601ff1590313e765e346083d6a7c71a8
/list/array_implementation/list_arr1.c
8235ee6312be76eee1ee0a225f90364b006f6b74
[]
no_license
janakimeena/Data-Structures-uing-C-
b04728961262caa5073170783d39be6a1686f7db
e62888af791944fe5c5e74a2131853521bfd5204
refs/heads/main
2023-08-02T00:49:51.182642
2021-10-08T17:08:33
2021-10-08T17:08:33
393,726,185
0
0
null
null
null
null
UTF-8
C
false
false
750
c
/* * Array implementation of list in C * Janaki Meena * 08 - 08 - 2021 */ #include<stdio.h> #include<stdlib.h> typedef struct list { int *elements; int no_of_elements; int capacity; }list; list CreateList(int c) { list l; l.capacity = c; l.elements = (int*)malloc(sizeof(int)*c); l.no_of_elements=0; return l; } ...
[ "mjanakimeena@gmail.com" ]
mjanakimeena@gmail.com
e32467255555fa5bcb602295ced8281d7c72e726
e1ba0eb26a14be38c1b2fdf0902417d2552be913
/REM/Tool/IDA 7.3/idc/pilot.idc
bdbbbf67b6cba3d18546c134626c5c05e74a134f
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
dodieboy/Np_class
db7fb9d4f4eb0fe4d5bb38dc05e69a9cbd485cf0
5c6e517599a20658ee23bdbdd76f197f2f4a1b63
refs/heads/master
2022-11-15T10:29:30.587639
2022-06-24T12:25:45
2022-06-24T12:25:45
181,395,891
0
2
MIT
2020-05-30T06:22:17
2019-04-15T02:07:40
C#
UTF-8
C
false
false
8,514
idc
// // This file is executed when a PalmPilot program is loaded. // You may customize it as you wish. // // TODO: // - decompilation of various resource types // (we don't have any information on the formats) // #include <idc.idc> //----------------------------------------------------------------------- // // Proc...
[ "dodieboy@users.noreply.github.com" ]
dodieboy@users.noreply.github.com
39db4d9352428fee9da7188ddc6b1210d9af247d
734124038d78fb009481c1925057a344c42f1948
/COT-M_SDK_Release_V2(11.18在例程代码上加入深度睡眠机制)/src/utils/am_util_cmdline.c
66f05a6d9f540b3d5654621e697edf9a682f4d12
[]
no_license
brook666/COT-M_SDK_Release_V4
0ffe458fccb546db59158aad4834150e4bfd73bd
38bff5f02451e9a3d7d1997c0d2e480b99f129ee
refs/heads/master
2021-09-06T01:18:17.533704
2018-02-01T08:33:45
2018-02-01T08:33:45
119,806,354
1
1
null
null
null
null
UTF-8
C
false
false
14,180
c
//***************************************************************************** // //! @file am_util_cmdline.c //! //! @brief Functions to implement a simple command line interface. //! //! Functions supporting a command-line interface. // //***************************************************************************** ...
[ "1240895262@qq.com" ]
1240895262@qq.com
0110e648c6df3967d32e2a98a6b10e557001f96a
b6640bf2cb94785889346e71cf9f153e18d68dcb
/RowDaBoat-x64barebones-d4e1c147f975/Kernel/include/exceptions.h
502b473365660d12637f039318ba0f4fa5e1f79f
[ "BSD-3-Clause" ]
permissive
matiheimann/TP-Arqui
b360bfc3e99e2fc7b5a2afdf932b3c026e3d0e17
ac3055828d8628b89233544e53bb3d457eab5f41
refs/heads/master
2018-09-23T20:00:51.749896
2018-06-06T18:30:43
2018-06-06T18:30:43
107,464,546
2
1
null
null
null
null
UTF-8
C
false
false
667
h
#ifndef EXCEPTIONS_H #define EXCEPTIONS_H #include <stdint.h> static void zero_division(); static void overflow(); static void invalidOpCode(); void printExceptionStackFrame(uint64_t rsp); void printRegisters(uint64_t rax, uint64_t rbx, uint64_t rcx, uint64_t rdx, uint64_t rsi, uint64_t rdi); typedef void (*ex...
[ "jkatan@itba.edu.ar" ]
jkatan@itba.edu.ar
1aa2c03901bd79e67bdbffcee7c72db4b9d8a4ac
977552ed52d4a98f94609c37f0f7b073c370e5cc
/source/error.h
f140b68b11f4d70c5a62d6e778ff1d990f51e184
[ "MIT" ]
permissive
soliujing/max_nx
19d8268eda068ceea2b23bb33f9623894dfd44ab
a48f2ddd037bde509a03d62f6f27fde2d8a32a8c
refs/heads/master
2023-03-07T06:58:48.212140
2021-02-24T22:23:57
2021-02-24T22:23:57
null
0
0
null
null
null
null
UTF-8
C
false
false
314
h
/* error.h -- error handler * * Copyright (C) 2021 fgsfds * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ #ifndef __MAX_ERROR_H__ #define __MAX_ERROR_H__ void fatal_error(const char *fmt, ...) __attribute__((noreturn)); #endif
[ "pvt.fgsfds@gmail.com" ]
pvt.fgsfds@gmail.com
acea82548124021c812ad03187a71359ae8933fc
cb1f0f6f2084ab4bc96bd0cda8b46bcc84a57385
/Board/src/VCAN_key_event.c
bb2473a6bd5289b31d275d5c54c621f7ce6496d5
[]
no_license
377922850/NXP-Cup
f7609e154831ff75e14cd4ed24c1484d0ed90646
0ecdf02bb82b017ae2ade7213e62443792421c6b
refs/heads/master
2021-01-19T04:00:57.829183
2017-03-09T08:45:39
2017-03-09T08:45:39
84,421,602
1
0
null
2017-03-09T09:10:50
2017-03-09T09:10:50
null
GB18030
C
false
false
3,674
c
/*! * COPYRIGHT NOTICE * Copyright (c) 2013,山外科技 * All rights reserved. * 技术讨论:山外论坛 http://www.vcan123.com * * 除注明出处外,以下所有内容版权均属山外科技所有,未经允许,不得用于商业用途, * 修改内容时必须保留山外科技的版权声明。 * * @file VCAN_key_event.h * @brief KEY 事件函数实现 * @author 山外科技 * @version v5.0 * @date 2...
[ "wqr571@outlook.com" ]
wqr571@outlook.com
b26761e177154b9f2bf20809564b9f856aa64387
c38db452c43b1dbbc0ef4c7e4a93a73befd3ce15
/Codecs/Audio/Decode/HIFI/flac/hifi_flac_dec.h
415e4931d02f6b7b7458b436f8b6e1c9972648d0
[]
no_license
husthenry/RK_NanoD_WIFI_demo
62efd7a602d90c368534075ced4987be26063f10
4be0e75ce269a700e712448012217f9f74eded86
refs/heads/master
2020-03-23T03:46:08.520372
2015-10-26T08:54:06
2015-10-26T08:54:06
null
0
0
null
null
null
null
UTF-8
C
false
false
2,183
h
typedef unsigned char u8; typedef unsigned short u16; typedef unsigned long u32; typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned int size_t; typedef signed long...
[ "hab@t-chip.com.cn" ]
hab@t-chip.com.cn
e605820ba77cf77ece848109ca5b2762ce7b2409
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/728a209a-6410-439f-bf8f-215250bd5fb7.c
7c40cbb0e17ffe761dbd4191502d4044a58af4f3
[]
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
539
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 53; i = 64; k = i/j; l = i/j; l = l%j; l = l+j; k = k-k*i; //variables /* START VULNERABILITY */ int a; char b[77]; char c[7]; a = 0; do { /* START BUFFER S...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
b3692b1113508496b54ec3e89a76901153e936b0
8bf1ae2dac6444c49c5a0e21dc3d04163b5fc940
/g_combat.c
dd82125ac97127a6599fd2707fa5e3d3fb78f810
[]
no_license
Paril/giex
770dbf9ae8c9e749e24df91f532a567f90afa203
597eb4a3aa6708da9bfed8bd7561f835d9f6e6b7
refs/heads/master
2020-04-01T20:54:48.905943
2018-10-18T13:16:17
2018-10-18T13:16:17
153,626,382
1
0
null
null
null
null
UTF-8
C
false
false
36,212
c
// g_combat.c #include "g_local.h" #define RESBOOT_MAGUSE_MULT 0.8 #define MAGARMOR_MAGUSE_MULT 2.5 /* ============ CanDamage Returns true if the inflictor can directly damage the target. Used for explosions and melee attacks. ============ */ qboolean CanDamage (edict_t *targ, edict_t *inflictor) { vec3_t dest; t...
[ "me@paril.ca" ]
me@paril.ca
563173cfc0718d7c210122b5e4097bfaccd6a64c
766758fac36279f0455b1f27000ca6067706d38e
/tools/ddikick/ddikick_error.c
23525924eab3376cd764151f4e389f421771147d
[]
no_license
ryanolson/ddi
4d8f564e098dac0416d88987119ce7c0ffa69744
7294b157a878c5833ef226b07a456b657ae22c07
refs/heads/master
2021-01-23T09:53:27.665735
2013-03-07T21:20:14
2013-03-07T21:20:14
8,634,693
1
0
null
null
null
null
UTF-8
C
false
false
3,567
c
/* ----------------------------------------------------------------- *\ GENERALIZED DISTRIBUTED DATA INTERFACE - 'MPMD' DATA SERVER MODEL ================================================================= Error handling functions ======================== void Filicide(); // kills all connected ...
[ "ryan@crystal.(none)" ]
ryan@crystal.(none)
003a35e6acb064641061a96e59e4e908c150cf78
c6a99b8d5b6ecbf4d63464b1b93fdf928d4bcb34
/block.h
2e92c80ea606102a46c0777344de2f7781e4a00b
[]
no_license
paigeruten/outbreak
ed34fdce64137406428962e2c37200202c54496e
1b2fce97f688994f6cf50dc49228772a5471d0c6
refs/heads/master
2021-05-28T03:11:48.199118
2012-06-09T01:33:37
2012-06-09T01:33:37
null
0
0
null
null
null
null
UTF-8
C
false
false
304
h
#ifndef _block_h #define _block_h #include "main.h" #include "object.h" #include "palette.h" typedef struct { Object object; int health; } Block; Block * make_block(float x, float y, float width, float height, int health); void destroy_block(Block * block); void hit_block(Block * block); #endif
[ "jeremy.ruten@gmail.com" ]
jeremy.ruten@gmail.com
e3f3ecb31664cc29e10d166a4da4eda9141b3923
139e2d2ee11ef76b17e3d44770b84141a061ddbc
/c/upper_layer/0290-detect-invoke-depth.c
bc62d0258d266c5be8187bbc7c00bebf1cf3d25f
[]
no_license
stillcold/src
8c84eb2f7ce24d1be47d99cd790d011981e73150
4af2cf135446dd56c5c53ff8e59f4d02cdf02203
refs/heads/master
2021-01-23T03:53:41.300932
2017-01-19T11:08:55
2017-01-19T11:08:55
8,622,894
0
1
null
null
null
null
UTF-8
C
false
false
3,734
c
/* * To calculate the number of spaces before a line. * Coding style: all lines no more than 75 c. * Author: Chao Guan */ #include <stdio.h> #include <string.h> /* Large enough to make sure that it can contains a real long line */ #define MAX_LINE_LENGTH 1000 #define THRESHOLD 39 char ...
[ "mr_kernel@163.com" ]
mr_kernel@163.com
870b007d5789822a18cc53bd6132f2240e646508
1064ee74df03faced8d6dbe752029aad90f0ce56
/Luma /Luma exmple 2/smile.h
230340965c70305f4d078b59983e2a2a92efc51d
[]
no_license
timaeus97/Luma
3c68790bae7a3eb4b2e411860376f60de23b1726
132657c829c5d1d1a43c6e6c799e9b283b4dbbf4
refs/heads/master
2020-04-10T05:04:57.723337
2018-12-07T11:52:48
2018-12-07T11:52:48
160,817,151
0
0
null
null
null
null
UTF-8
C
false
false
177
h
#include <avr/pgmspace.h> #ifndef smile_H #define smile_H extern const unsigned char smile[]; extern const unsigned char smile2[]; extern const unsigned char smile3[]; #endif
[ "noreply@github.com" ]
timaeus97.noreply@github.com
d09aa7fb1c6a296fe2b2a42441ab51e869f475b1
e6e4d7b0f77a359c145aeef64c71f9832cda7f17
/rtmp-client/src/main/cpp/librtmp-jni.c
94f348fd41d83a6f535ccd913393401cb825c2f3
[ "Apache-2.0" ]
permissive
shihyu/LibRtmp-Client-for-Android
418b8175a578906825eeff155e1d3b4e8238f6b4
09c88ccaed749fe1996b3e06b63ef6ab1c0113a8
refs/heads/master
2020-03-28T08:27:07.332843
2017-11-10T03:26:42
2017-11-10T03:26:42
null
0
0
null
null
null
null
UTF-8
C
false
false
6,056
c
#include <malloc.h> #include "librtmp-jni.h" #include "rtmp.h" #include <android/log.h> #include <stdlib.h> #include <string.h> #include <rtmp_sys.h> // // Created by faraklit on 01.01.2016. // //定义包头长度,RTMP_MAX_HEADER_SIZE=18 #define RTMP_HEAD_SIZE (sizeof(RTMPPacket)+RTMP_MAX_HEADER_SIZE) #define LOG_TAG "some...
[ "361557919@qq.com" ]
361557919@qq.com
02eb02f15d8977e7dd72362513c8acd15eac1c40
e3e0809d7e1f6e7d7fe5004df6cd6fd252f9ac43
/kl03-frdm-demo/src/cpu/sysinit.h
bbbf2bef0eb51d5e92045f162a98bfe8055b186b
[]
no_license
Wangwenxue/FRDM_KL03
8a8a8fdb701a208e3b9b726e29e929ac1173cd42
5b2258457e45f6f3f3eb56311fe7263b2ab1de19
refs/heads/master
2016-08-12T09:50:27.632545
2016-03-19T09:02:10
2016-03-19T09:02:10
52,257,903
0
0
null
null
null
null
UTF-8
C
false
false
514
h
/* * File: sysinit.h * Purpose: Kinetis Configuration * Initializes processor to a default state * * Notes: * */ /********************************************************************/ // function prototypes void sysinit (void); void enable_abort_button(void); extern int mcg_clk_hz; ext...
[ "b51443@freescale.com" ]
b51443@freescale.com
1dcf63289993a5bb939b15fa2e6349e62733bb0d
09662309a59b4bd8913c465c01cafd0104ce8d68
/server/src/encrypt.c
e39d70a42f5366ca55e94dcdc81c80eebdf85e51
[]
no_license
liaozhengsong/cloud-netdisk-c-linux
6724be81e63512e27046b99143ac4756a5c41e05
07260294c9251664eb9884437460d1ec49cb62ab
refs/heads/master
2020-05-22T16:16:10.110897
2019-05-13T14:27:26
2019-05-13T14:27:26
186,426,654
0
0
null
null
null
null
UTF-8
C
false
false
524
c
#include "../include/function.h" int sha512(char *newkey,char *key,char *salt) { char *p = crypt(key,salt); strcpy(newkey,p); return 0; } int salt(char *str,int size) { for(int i = 0; i < size; i++) { int tmp = rand()%64; if(tmp < 12) { str[i] = 46+tmp; }...
[ "pkujereok@hotmail.com" ]
pkujereok@hotmail.com
96b807ab70cb3c71d5ae962ccfa218eb2baa3e6d
af085d3a26d70941d207b96b9bee3501a1da6888
/Sensores/Heartbeat-AFEC/AFEC_ADC_Heartbeat/src/heartbeat_4md69.h
09a12909ea19e847200bf13e02162c1380048048
[]
no_license
BrunoSDomingues/SAME70-examples
fb8ad6bd7fe22458bc5c817dbc4e17155c74bf31
37b33cd62993ddfbaed9a08e80f73549b7ce9674
refs/heads/master
2021-01-08T03:12:50.540374
2020-06-02T00:51:47
2020-06-02T00:51:47
241,894,525
0
1
null
2020-02-20T13:44:19
2020-02-20T13:44:18
null
UTF-8
C
false
false
641
h
/* * heartbeat_4md69.h * * Created: 17/03/2018 18:52:06 * Author: eduardomarossi */ #ifndef HEARTBEAT_4MD69_H_ #define HEARTBEAT_4MD69_H_ #include "fifo.h" #include <asf.h> #define MOVING_AVERAGE_SIZE 128 #define H4MD69_AFEC AFEC0 #define H4MD69_AFEC_ID ID_AFEC0 #define H4MD69_AFEC_...
[ "corsiferrao@gmail.com" ]
corsiferrao@gmail.com
6982e43eabe5ccb5be38fc39ccdb41ce85671003
4da782b21749d4a4c7a0f3e7a17272594ac708c1
/ kerkweg --username gilbert.swinkels/DOCUMENT/CPINPUT.C
cc6196fa4b7a2fd20833ed2aae8f97558b88b03d
[]
no_license
gswinkels/kerkweg
90c3c7960f42963a9a6df63e2788af72fdb60ccb
4bd6bd85180ec67141a0df67d05bac6cc95a0a78
refs/heads/master
2021-01-23T13:37:55.941992
2015-03-29T09:15:00
2015-03-29T09:15:00
32,533,643
0
0
null
null
null
null
UTF-8
C
false
false
9,067
c
/*********************************************************************** cpinput.c void near nasty( int ); void near process_arguments( int, int, char **, int ); ************************************************************************/ #define MAIN 0 #include "cp...
[ "gilbert.swinkels@0a3bac28-c52a-0410-9568-b9d5c671f177" ]
gilbert.swinkels@0a3bac28-c52a-0410-9568-b9d5c671f177
039fd643d3fa84a84f150188d4190d9dc00c4c78
a3d6f56b756a30eb71e43dba3ab44d1c76449dc3
/user/src/Apps/Shell.c
a7dfc698939939aece0df263287f1d43eae054d5
[ "WTFPL" ]
permissive
sair770/Incitatus-OS
6f7d45782ed5eeda0fb363ebb9124379734c686f
c2d8e610256b603a019718ed107f4338cb836a00
refs/heads/master
2020-03-30T06:21:43.692807
2013-08-25T12:33:51
2013-08-25T12:33:51
null
0
0
null
null
null
null
UTF-8
C
false
false
4,099
c
/** | Copyright(C) 2012 Ali Ersenal | License: WTFPL v2 | URL: http://sam.zoy.org/wtfpl/COPYING | |-------------------------------------------------------------------------- | Shell.c |-------------------------------------------------------------------------- | | DESCRIPTION: Simplistic user-space shell. | | AUTHOR: ...
[ "aliersenal@gmail.com" ]
aliersenal@gmail.com
52eebf7d4d8f6736c77479217acf091f768132c9
af79492c6999077f88b820185ecd4eb82c355c9a
/ZQ2NuPt2_fullrange/data_CD_C/rspic/hM1_35.C
de80868ab9749804a346f4bd81cb76ca10138c65
[]
no_license
orsosa/Eg2_ana
f8d20c0a4c3c0a2e725a24fa84518b552dde31e3
f49ee1384f54365c0b293656386635b111c54ae0
refs/heads/master
2020-07-01T09:30:30.162135
2018-11-05T15:08:42
2018-11-05T15:08:42
74,095,684
0
0
null
null
null
null
UTF-8
C
false
false
8,182
c
{ //=========Macro generated from canvas: c/The canvas //========= (Tue Apr 11 11:59:18 2017) by ROOT version5.34/19 TCanvas *c = new TCanvas("c", "The canvas",1,1,800,576); gStyle->SetOptFit(1); c->SetHighLightColor(2); c->Range(-0.08024,-3.648203,0.350906,32.83383); c->SetBorderSize(2); c->SetFrame...
[ "oj.5070@gmail.com" ]
oj.5070@gmail.com
2ebe9d2dcccfd4569d0b0932aa3dd8fa23bc8f12
ddd81b73992f88d3f8ec44c4cd66aab8f18e5e64
/Project/超核姿态模块固件/1-下位机固件/src/main.c
073860160302ffa60bcf1f600afac906bd806aa9
[]
no_license
lvniqi/newK60_github
42aa46e782202607f320976614ad5fbf4286b908
d6db6e7bd10efd1e6c5dbf3086f7045a95056a8f
refs/heads/master
2020-04-15T08:04:25.603622
2015-04-20T07:46:31
2015-04-20T07:46:31
31,136,879
0
1
null
null
null
null
GB18030
C
false
false
9,211
c
//包含超核库所需的头文件 #include "gpio.h" #include "common.h" #include "uart.h" #include "i2c.h" #include "systick.h" #include "stdio.h" #include "pit.h" #include "nrf24l01.h" #include "wdog.h" #include "board.h" #include "protocol.h" //包含 姿态模块所需的头文件 #include "mpu6050.h" #include "hmc5883.h" #include "bmp180.h" #include "imu.h"...
[ "lvniqi@gmail.com" ]
lvniqi@gmail.com
4a724380319d5df5ae5347a5d3439ddf1f1f6966
971b2cea2d1c3001aadc8ca1a48110b7db1ed5f2
/deps/abc/src/aig/gia/giaSat3.c
fe76b078d378dc299d001fe849fc3edf86900191
[ "MIT-Modern-Variant", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
emsec/hal
70ad2921739967d914dd458984bd7d6d497d3b0a
e4fae37bec9168a61100eacfda37a1f291b4d0be
refs/heads/master
2023-09-02T20:27:32.909426
2023-09-01T13:03:24
2023-09-01T13:03:24
169,076,171
510
72
MIT
2023-09-01T13:03:26
2019-02-04T12:37:20
C++
UTF-8
C
false
false
3,686
c
/**CFile**************************************************************** FileName [giaSatoko.c] SystemName [ABC: Logic synthesis and verification system.] PackageName [Scalable AIG package.] Synopsis [Interface to Satoko solver.] Author [Alan Mishchenko, Bruno Schmitt] Affiliation [UC Be...
[ "nils.albartus@ruhr-uni-bochum.de" ]
nils.albartus@ruhr-uni-bochum.de
3db561e488ad7a8b2a0eafa7fa2dd0701098202d
4a2040c315a768ccf196c2614f3da3c046eac0b5
/project/vehicle/network/display/opel_bid.h
71b45de2bf51d87d820f657dfd454d43480331aa
[ "MIT" ]
permissive
lmiori92/lorenz-onboard
5b408bd96e2d04f6460255d9185a39f1a0c2241b
8fb2c269df7afe354c10f6e5e08bdd04f2e2f594
refs/heads/master
2021-06-10T15:31:29.258307
2019-12-11T19:28:19
2019-12-11T19:28:19
105,303,767
0
0
null
null
null
null
UTF-8
C
false
false
2,106
h
/* MIT License Copyright (c) 2017 Lorenzo Miori 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, ...
[ "lorenzo.miori@gmail.com" ]
lorenzo.miori@gmail.com
808162c93432968ec61b73adc93aa176be051653
376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb
/net/p5-Net-RawIP/patches/patch-eth.c
94f02784aa016db9bc7dca96e18c11741faa893c
[]
no_license
NetBSD/pkgsrc
a0732c023519650ef821ab89c23ab6ab59e25bdb
d042034ec4896cc5b47ed6f2e5b8802d9bc5c556
refs/heads/trunk
2023-09-01T07:40:12.138283
2023-09-01T05:25:19
2023-09-01T05:25:19
88,439,572
321
138
null
2023-07-12T22:34:14
2017-04-16T20:04:15
null
UTF-8
C
false
false
504
c
$NetBSD: patch-eth.c,v 1.1 2017/08/28 09:00:13 he Exp $ Provide conditional compat define for RTF_LLINFO. --- eth.c.orig 2007-04-03 10:59:40.000000000 +0000 +++ eth.c @@ -203,6 +203,9 @@ int mac_disc(unsigned int addr,unsigned mib[2] = 0; mib[3] = AF_INET; mib[4] = NET_RT_FLAGS; +#if !defined(RTF_LLIN...
[ "he@pkgsrc.org" ]
he@pkgsrc.org
0f6fb369841fd24cd71557ea2bfc4174a30adba1
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/darwin-xnu/bsd/pgo/extr_profile_runtime.c_kextpgo_trap.c
621c843727132916616fa71dc9be047904726af3
[]
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
883
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
bac0c0df17004de87d576b5b3bc0e2f858c01509
617bd24f8c106b9c707a0afcef2abc2b64e08e43
/ios/Pods/Headers/Public/ABI33_0_0EXPermissions/ABI33_0_0EXCameraPermissionRequester.h
2599d26b983af65d94c492e5880fedc5513f3dfe
[ "MIT", "BSD-3-Clause", "Apache-2.0" ]
permissive
atiato78/expo
54f15c932a3984f2a60b7fddc9bd55c470ba92e4
0c9ef858e125b5f9d421edc183ec10aa84c9b41b
refs/heads/master
2022-12-15T09:30:33.721793
2019-07-31T20:04:43
2019-07-31T20:04:43
199,931,004
2
0
MIT
2022-12-04T05:33:11
2019-07-31T21:24:06
Objective-C
UTF-8
C
false
false
120
h
../../../../versioned-react-native/ABI33_0_0/EXPermissions/ABI33_0_0EXPermissions/ABI33_0_0EXCameraPermissionRequester.h
[ "noreply@github.com" ]
atiato78.noreply@github.com
01e215b6785a8339765ca032879e1a51026a016b
c339b32592a7f2799f3e3ac3b088a25abd28f6f7
/DATA STRUCTURES 2/assign-2/old/park105.c
74535651b1776cf6520d8c27e9215052fa0e81d3
[]
no_license
camit2354/sem4-2020
1e053d1208636ef5d2f9b5f6dc19434eeb8b9a58
2001b5a413a6d958c929d2d504844645b7d1c65a
refs/heads/master
2021-02-28T05:18:42.652072
2020-06-03T14:28:45
2020-06-03T14:28:45
245,664,925
0
0
null
null
null
null
UTF-8
C
false
false
50,483
c
#include<stdio.h> #include<string.h> #include<stdlib.h> #define max_vehicle 3 #define no_of_compact_spots 36 #define no_of_large_spots 36 typedef struct parked_vehicle_tag { char intime[4]; char outtime[4]; char indate[6]; char outdate[6]; char vehicle_number[9]; int dedicated_parking_wing_id; int...
[ "camit2354@gmail.com" ]
camit2354@gmail.com
b21a48a14e3901c6fccaf9f56ab730a4f8dcf8cf
c3929e0eb20475e220f8d2144ee76ba5aaef7178
/train2013/build_drv/semaphore/char_drv.c
8e72b745ea1898491128a7dffd89eb3e5fdc1f25
[]
no_license
henryZe/code
786804b587f1327b86f6d5988e2920b4b683dc76
e0b9cea82a57b354b3b19b83446a4f94e04bf60b
refs/heads/master
2023-03-16T08:20:51.811419
2023-03-10T09:02:54
2023-03-13T01:37:10
31,699,903
4
0
null
null
null
null
UTF-8
C
false
false
2,304
c
#include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/fs.h> #include <linux/cdev.h> #include <asm/uaccess.h> #include <linux/platform_device.h> #include <plat/gpio-cfg.h> #include <mach/gpio.h> #include <linux/agpgart.h> #include <linux/interrupt.h> #include <linux/slab.h> #in...
[ "henryz_e@163.com" ]
henryz_e@163.com
c7b9894af9e16c2be576599074aed3f4b1f327d5
bd556ee9818455c864d074d3c9c36ada429ad5b4
/2Week/DataStructures/Demo/data structures & algorithms/DataStructures/Array/C/Array.h
89d22b76661993b4e973174a7f61ed2e1082ecd3
[]
no_license
sYstemk1t/Learn
fc8df24693d7156cc52835ef8eacfa2ca904d386
b410a342e6df8df60092be340e44b6a31a2f989c
refs/heads/master
2020-05-23T15:28:05.283474
2019-08-27T03:13:51
2019-08-27T03:13:51
186,822,928
2
0
null
null
null
null
UTF-8
C
false
false
1,280
h
#ifndef _R00TK1T_ARRAY_H #define _R00TK1T_ARRAY_H struct ArrayOps; typedef struct Array{ int m_size; int m_capacity; int *m_start; struct ArrayOps *m_handler; } Array; typedef Array* (*array_new_handler)(int); typedef void (*array_destroy_handler)(Array *); typedef int (*array_common_size_handler)(Ar...
[ "sYstemk1t@126.com" ]
sYstemk1t@126.com
8bcd18608a98e1fcad06813fd3b67c33ddb30649
3adf00f2f2beae03b987138247b371f753eadc93
/IPC/ConditionalQueue/queue.h
92aa01eef5650faeae49bd4ec1c08408f60ed0e6
[]
no_license
idonovo/work
25530f62d5c5f6e24e64a9166754eedf9473b33c
20874a41f627fe1e269f0472e91807908aadf2a9
refs/heads/master
2021-09-03T01:12:11.500694
2018-01-04T13:06:55
2018-01-04T13:06:55
116,257,889
0
0
null
null
null
null
UTF-8
C
false
false
344
h
#ifndef __MYQUEUE__ #define __MYQUEUE__ #include <stdlib.h> #include "ADTDefs.h" typedef struct Queue Queue; Queue* QueueCreate(size_t _size); void QueueDestroy(Queue* _queue); ADTErr QueueInsert(Queue* _queue, void* _item); ADTErr QueueRemove(Queue* _queue, void** _item); int NumOfItems(Queue* _queue); #endi...
[ "idonovo@gmail.com" ]
idonovo@gmail.com
d770631f92d96176e7f455ab699100c6805654f1
7bc816255a4220c194c0bd51030646e95860a92d
/scpi/scpi-commands.c
fb7c49102f98cc6d4f92fc769aa18c3087110aef
[ "BSD-3-Clause" ]
permissive
J65mesW/RedPitaya
321fe382363e8c85d3a0bb8b5b0f6f178ead5531
41326f23ef7073ce0352107b56e11bb8d1ad81d7
refs/heads/master
2021-01-15T12:03:54.347013
2017-08-01T14:39:23
2017-08-01T14:39:23
64,550,931
1
0
null
2017-08-01T14:39:24
2016-07-30T15:35:04
C
UTF-8
C
false
false
11,341
c
/** * $Id: $ * * @brief Red Pitaya Scpi server SCPI configuration and general command implementation * * @Author Red Pitaya * * (c) Red Pitaya http://www.redpitaya.com * * This part of code is written in C programming language. * Please visit http://en.wikipedia.org/wiki/C_(programming_language) * for more ...
[ "noreply@github.com" ]
J65mesW.noreply@github.com
552ed920b004985d0e3f72f7e5081d5de9c8e745
5e2e2af09d0298daa64ea0b6f239a25dae27b9f5
/src/ecs/components/ecs_transform_.h
dd0a858df900e26e0d13bd04376015dad810fcf6
[]
no_license
victorbush/psp.game
4c78957cfab89d2a3c558655e20f5ec5faefebb2
c34c79d8c7efafec749a289ccd935c42e98d55c5
refs/heads/master
2023-02-19T21:41:30.546323
2021-01-22T02:53:00
2021-01-22T02:53:00
327,146,294
3
1
null
null
null
null
UTF-8
C
false
false
263
h
#ifndef ECS_TRANSFORM__H #define ECS_TRANSFORM__H /*========================================================= DECLARATIONS =========================================================*/ typedef struct ecs_transform_s ecs_transform_t; #endif /* ECS_TRANSFORM__H */
[ "victorbush@gmail.com" ]
victorbush@gmail.com
1d5b5f0d37a64cfd78ddd7c06a8401ac88af8e46
19eb97436a3be9642517ea9c4095fe337fd58a00
/private/windows/shell/accesory/netclip/netclip/stdafx.h
d9bc71ba460485efeb774181bae02ae598b78d23
[]
no_license
oturan-boga/Windows2000
7d258fd0f42a225c2be72f2b762d799bd488de58
8b449d6659840b6ba19465100d21ca07a0e07236
refs/heads/main
2023-04-09T23:13:21.992398
2021-04-22T11:46:21
2021-04-22T11:46:21
360,495,781
2
0
null
null
null
null
UTF-8
C
false
false
704
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers #include <afxwin.h> // MFC core and standard components #include...
[ "mehmetyilmaz3371@gmail.com" ]
mehmetyilmaz3371@gmail.com
919640d833883602012e8970c302a9517130bc69
436ca2699f19d4a7621ffa500798c0d41b5918b1
/DS1 Lab Work/Ex4/Ex4_1.c
82a9e7ff096b6bbc1bed4905a22104341c67e398
[]
no_license
cathreya/DS1
eeb2c0bc3992911af26327ed743e95c7c4800278
5f1b600ea6fb575b86f34eafc9d152fa492079c0
refs/heads/master
2021-01-09T06:23:15.404956
2017-04-07T18:35:26
2017-04-07T18:35:26
80,976,731
0
0
null
null
null
null
UTF-8
C
false
false
810
c
#include <stdio.h> #include <string.h> void main(int argc,char *argv[]){ FILE *fp1,*fp2; if(argc!=3){ printf("Incorrect File Names Given\n"); } else{ int i=0; char f1[40],f2[40]; strcpy(f1,argv[1]); strcpy(f2,argv[2]); fp1=fopen(f1,"r"); fp2=fopen(f2,"r"); if(fp1 == NULL){ printf("File Does not ...
[ "cathreya98@gmail.com" ]
cathreya98@gmail.com
e665570ef01807d3c4ce18b948684e657b6e8ea8
ac7583e93c93de542cbac3da6fe039429b72cad1
/asm-module/kernel_module_hello_world2/hello_world2.c
8fafd4a7cd07d95a2e05f5feb0651765f0b3098f
[]
no_license
lihas/kernel-modules-linux-containers
8529f8c6840ee6ba259cb3776a82f1c5cb8b8669
da5bf7700cce21cffd47386a325c9ecdc6ffe16f
refs/heads/master
2021-01-11T01:30:43.989105
2016-10-12T12:43:48
2016-10-12T12:43:48
70,673,478
0
0
null
null
null
null
UTF-8
C
false
false
362
c
#include<linux/kernel.h> #include<linux/module.h> int start(void) { __asm__( "mov $0x3f8, %dx\n\t" "add %bl, %al\n\t" "add $'0', %al\n\t" "out %al, (%dx)\n\t" "mov $'\n', %al\n\t" "out %al, (%dx)\n\t" "hlt" ); return 0; } void end(void) { return; } MODULE_LICENSE("GPL...
[ "lihas@lihas" ]
lihas@lihas
14a1027f6bdf6a2975f3fd81bc3a2cb4b1da3b62
307644a58a7dacabf1bc53a79c16fa3c6a3f5a46
/shakti/ipc/1/msg_recv.c
1886adbf6dc211714fdf796585f33a24146edf55
[]
no_license
shaktianiyaliya/dlms_code
3166e1947b14a8036c8f83f77167cf8fa43a5bd4
731cd7da8097da2ce407d8cc3fefb9254255de36
refs/heads/master
2022-09-04T15:14:43.066520
2020-05-25T12:19:19
2020-05-25T12:19:19
266,769,572
0
0
null
null
null
null
UTF-8
C
false
false
982
c
// Message Received Queue #include <stdio.h> #include <stdlib.h> #include <sys/ipc.h> #include <sys/msg.h> #include <sys/types.h> // structure for message queue struct msgbuf { long mtype; char msgtxt[200]; } ; int main() { struct msgbuf msg ; int msgid ; key_t key ; if ( key = ftok ( "pgm.c" , 11...
[ "shakti.aniyaliya@devsystech.com" ]
shakti.aniyaliya@devsystech.com
c049b49f09d37a5e61e5f8dd692a803932edebef
db20be42ce2e7ed79041b7ca0306a35e8805db9d
/cursor_list/cursor_list/main.c
79fc01d1cfcfac9b126882c2ff7f57c1d29a6107
[]
no_license
smartcongshan/selercy_C
cf9d1bb768f630b21a64c3f0737a604ce81d5075
3f77adbe99c9712ecc7ce482c291a530ae8eb491
refs/heads/master
2021-01-17T16:09:50.692909
2016-09-16T03:59:43
2016-09-16T03:59:43
58,118,530
0
0
null
null
null
null
UTF-8
C
false
false
87
c
#include "cursor.h" int main() { Position p; p = cu_create(); exit(0); }
[ "1043503402@qq.com" ]
1043503402@qq.com
a2de289ac5caede47ebf060def0ff75d26ec413a
8f84b92a84c5a2f5a640ca0a7cbba3cfa957154d
/mediatek/hardware/gralloc_extra/include/hardware/gralloc_extra.h
c9a2a2454f8d31ff439c32cbd5d36dfdf17c67e1
[]
no_license
Al3XKOoL/MT65x2_kernel_lk
c7a23c2d41fb4c593d1bb9054a15d3b51ffaa224
51fe3f27e90e42dbdebae928e6b787f82bee4ddc
refs/heads/master
2021-01-18T10:25:35.483668
2015-03-25T07:17:37
2015-03-25T07:17:37
32,857,246
0
4
null
2015-03-25T10:16:26
2015-03-25T10:16:26
null
UTF-8
C
false
false
2,206
h
#ifndef MTK_GRALLOC_EXTRA_DEVICE_H #define MTK_GRALLOC_EXTRA_DEVICE_H #include <system/window.h> #include <hardware/hardware.h> #include <hardware/gralloc.h> #include <stdint.h> #include <sys/cdefs.h> #include <sys/types.h> #include <ui/gralloc_extra.h> __BEGIN_DECLS #define GRALLOC_HARDWARE_EXTRA "extra" typedef...
[ "inspektor.po13@gmail.com" ]
inspektor.po13@gmail.com
a346f0038eae3822084296e13556491118f52779
d02da3ca64d5be81e251d8a224bb1b1f56e46912
/ARChemistre_build/Classes/Native/UnityEngine_UnityEngine_Screen.h
98edcdd99d9b575299b6dd25453cb86f5dc66ed2
[]
no_license
Dotby/ARChemistre
ae0dadc598142bb8545ccf3170ed2e4d8fd4e779
d3904072305237fbb926dcf095aca5263ae7b138
refs/heads/master
2020-12-26T19:38:31.255015
2015-07-14T16:27:50
2015-07-14T16:27:50
38,375,255
0
0
null
null
null
null
UTF-8
C
false
false
155
h
#pragma once #include <stdint.h> // System.Object #include "mscorlib_System_Object.h" // UnityEngine.Screen struct Screen_t993 : public Object_t { };
[ "gonikitamo@gmail.com" ]
gonikitamo@gmail.com
7b4c87ccae36813c44cc1b3ca024c76c137d8280
57b460291162d973c27cf55c7538d515d8f6e8b1
/mc/y.tab.c
1e874d5c1505fd2f0f16a5f4e3e6f0a932ee5904
[]
no_license
xyry/minus_c
4112dc6e4534679d415e50ce8f12c7e052e23660
d59a9b641229b30d0216a45dc977c44024bc12e1
refs/heads/master
2021-05-09T05:50:17.026096
2019-11-26T07:31:18
2019-11-26T07:31:18
119,320,299
1
0
null
null
null
null
UTF-8
C
false
false
56,918
c
/* A Bison parser, made by GNU Bison 3.0.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. 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...
[ "844173807@qq.com" ]
844173807@qq.com
ee0e988651a2065d44a3ca479202f6d1cebe902f
620e6e4c971fee2da54972138c4152a9f09e62ad
/SWEasyLife/SWEasyLife/SWEasyLifeHeader.h
c03b424c7eeb7958dc80f8fea2251c56f743adfa
[]
no_license
SmileOcc/SWEasy
17ab5070bb095fd7690eeaec5110be941c9b2ade
d6f725f852423c8e444e6fa9a5bff833534d0ab7
refs/heads/master
2020-04-06T06:59:52.690414
2016-08-31T14:29:01
2016-08-31T14:29:01
63,696,453
0
0
null
null
null
null
UTF-8
C
false
false
131
h
// // SWEasyLifeHeader.h // SWEasyLife // // Created by occ on 16/7/20. // Copyright © 2016年 ox. All rights reserved. //
[ "1950847804@qq.com" ]
1950847804@qq.com
621ae6ee72b159d0442a48b9113f8be4e3de2c1e
b8c72fcf40b7f28af8a12659507430d930f31fe6
/testbench/codegen/arith_conv_to_ulongint.c
2a540498c3ad86f9cc9ca37285aac1bac92bb14f
[]
no_license
patrickjohncyh/C90-compiler
f7a2f36bea2a3e5a264818bf4824ca556886aa1b
430138492260d4e8f34fb8e347d4bfb4df2fe200
refs/heads/master
2020-06-16T18:27:11.131862
2018-03-29T12:04:11
2018-03-29T12:04:11
195,663,856
2
0
null
null
null
null
UTF-8
C
false
false
81
c
int main(){ unsigned long int a = 5; long int b = -2140138458; return b / a; }
[ "patrickjohncyh@icloud.com" ]
patrickjohncyh@icloud.com
90de0798daa366e3b4f2ebebad34cb4a5b6031b8
5b7d43971eae9f06b81d4c2ae37a12d667b696b3
/mudlib/cmds/std/locate.c
2b4cb2b4152ef0b853d96c0e48720be3350ee0e7
[]
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
7,929
c
// by Tie@fy3 hehe inherit F_CLEAN_UP; inherit F_DBASE; mapping *quests; string locate_obj(object me,string strr); object find_env(object ob); #define MAX_DIS 7 #define MAX_ALT 2 #define MAX_DIR 8 mapping *read_table(string file) { string *line, *field, *format; mapping *data; i...
[ "liming.xie@gmail.com" ]
liming.xie@gmail.com
7a7fca1a2ad740407df90e85f5a9a1e7e0427060
494f8d1b71ce1b059a14179659547c3e8c8f4db5
/src/rover_servo.h
3a71468a0885bdcfb154505b584044e7191238bb
[ "MIT" ]
permissive
MrVoorakkara/Mars-Rover
ed06c781b065edeb1d6a9472c227f9e07ee4adcf
70c56ea3969633bc8ae7f4612fe9137f2d1b1d84
refs/heads/master
2020-09-02T22:59:13.096664
2019-11-01T20:08:42
2019-11-01T20:11:03
null
0
0
null
null
null
null
UTF-8
C
false
false
389
h
#pragma once #include <Arduino.h> // Order of servos in PWM Expander typedef enum RoverServo { SERVO_ARM_AXIS_1, SERVO_ARM_AXIS_2, SERVO_ARM_AXIS_3, SERVO_ARM_AXIS_4, SERVO_ARM_AXIS_5, SERVO_ARM_AXIS_6, SERVO_FRONT_LEFT, SERVO_FRONT_RIGHT, SERVO_BACK_LEFT, SERVO_BACK_RIGHT } RoverServo; void rove...
[ "mail@jakobkrantz.se" ]
mail@jakobkrantz.se
f54a154f39f466c64cc28e436dc7d42dfa4883b6
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE134_Uncontrolled_Format_String/s01/CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf_07.c
777b408c2f56dd9069112b4a2ce00496d7a1a15a
[]
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
13,157
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE134_Uncontrolled_Format_String__char_connect_socket_vprintf_07.c Label Definition File: CWE134_Uncontrolled_Format_String.vasinks.label.xml Template File: sources-vasinks-07.tmpl.c */ /* * @description * CWE: 134 Uncontrolled Format String * BadSource: connect...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
9b14e14e6d63259c0f30d92bd92959947f403d2d
82fae07070baeff4448336ebba591fb1083dabe7
/tomateperita-kss/tags/primera-entrega-obligatoria/includes/kss-tdd.h
71d805b57ea646849be538b34baa7efe0944a859
[]
no_license
fanxiaohui/tomateperita
accd99bd7217e68d058db09c7c6d52b886fa1c68
e45e6db905371113ab94992353d39a1258ec96ef
refs/heads/master
2020-05-02T14:25:33.236660
2012-05-03T12:52:19
2012-05-03T12:52:19
null
0
0
null
null
null
null
UTF-8
C
false
false
648
h
/* * kss-tdd.h * * Created on: 02/06/2011 * Author: gonzalo */ #include "linux-commons-list.h" #ifndef KSS_TDD_H_ #define KSS_TDD_H_ enum OpeningMode { OPENING_MODEREAD , OPENING_MODE_WRITE }; typedef struct { } FileRecord; typedef struct { int fileHandleId; char * vdaName; int openingMod...
[ "kronleuchter85@gmail.com" ]
kronleuchter85@gmail.com
5ca7f645dc488a48050dc46262c0de3772cfc856
76109da9794f4ceeefcbb3e775375dec43de8e7f
/floyd.c
207dc721d56841ecd23793f1c256cdefc2adaaef
[]
no_license
sohailhussain5/RV
fdd337c5d3a864cd75cebd84810f8aafd9b19ea5
3f4faa4998cfa941505a46c9f10cdcb1e1af9535
refs/heads/master
2020-11-26T01:06:27.904212
2019-12-18T21:34:15
2019-12-18T21:34:15
228,916,169
0
0
null
null
null
null
UTF-8
C
false
false
688
c
#include<stdio.h> int p[10][10],n; int min(int,int); int path() { int i,j,k; for(k=0;k<n;k++) { for(i=0;i<n;i++) { for(j=0;j<n;j++) { if(i==j) p[i][j]=0; else p[i][j] = min(p[i][j],p[i][k]+p[k][j]); } } } } int min(int a,int b) { if(a<b) return a; else return b; } void mai...
[ "sohailhussain5@email.com" ]
sohailhussain5@email.com
1f31c045d094bcd6a8603d18577154f0dde6dada
4f8fa005fa8a82971d93eef9b07aec59711b53b0
/keygen.c
17178858f00cf8edd30e099c31a4f052c7e5f66e
[]
no_license
mrushmere/CS344-Project4
6f23978365c43d6c4f10f38eab8c4a6538d56a81
63e713b6ecc034f6e3b3c5b1d049ab29bed19d7d
refs/heads/master
2021-01-10T06:48:36.909748
2016-03-15T04:12:00
2016-03-15T04:12:00
53,378,605
0
0
null
null
null
null
UTF-8
C
false
false
1,005
c
/********************************************************************************** * Mark Rushmere * CS 344 * Project 4 * Description: This is a keygen program that will returns a rendomly gererated number * key of length specified by the user ********************************************************************...
[ "mrushmere@gmail.com" ]
mrushmere@gmail.com
0aac3b12f6f7c24dda0ff923dd6d822d258304a7
7058e8d59a623075dafb99eefae0254fd174e971
/include/gp.h
d5521403fc229320f2a52be7e5f83d91c0a60f57
[ "MIT" ]
permissive
eedxwang/FastHenry-ACA-
aa1ef5a60fae883f613847bae3f47d7ab4e099eb
dffeea9b4203c365e3f6f1e7a7715e39ee0202e8
refs/heads/master
2021-10-16T05:38:40.229165
2019-02-08T08:57:31
2019-02-08T08:57:31
null
0
0
null
null
null
null
UTF-8
C
false
false
16,429
h
/*!\page LICENSE LICENSE Copyright (C) 2003 by the Board of Trustees of Massachusetts Institute of Technology, hereafter designated as the Copyright Owners. License to use, copy, modify, sell and/or distribute this software and its documentation for any purpose is hereby granted without royalty, subject to the follow...
[ "17762944@sun.ac.za" ]
17762944@sun.ac.za
30db51244c43f0a11d37351907e821f9aeedaa28
f10cd0fffd817d0fa637522c37c29d7cb4f12ad9
/MyCaptain6C.c
fca1c9b4925e53d809fabda5b4832ec5291f5dda
[]
no_license
Aayush0511/MyCaptainC
1c71307d8098454fbd860c044b78ad2dea8b3e0d
0c71e1ac450282b4a1bb0b43c183b6b56b3bca1b
refs/heads/main
2023-02-03T02:24:23.792194
2020-12-23T17:19:41
2020-12-23T17:19:41
311,747,843
0
0
null
2020-12-23T17:17:58
2020-11-10T18:20:41
C
UTF-8
C
false
false
386
c
#include<stdio.h> int lcm(int, int); int main() { int a, b, ans; printf("Input first number: "); scanf("%d", &a); printf("Input second number: "); scanf("%d", &b); ans = lcm(a, b); printf("LCM of %d and %d = %d", a, b, ans); return 0; } int lcm(int a, int b) { static int x=1; if (x%a==0 && x%...
[ "noreply@github.com" ]
Aayush0511.noreply@github.com
57fd6db8e169c1c24b01de1beccd24c0f843ff71
0258ff8e134c64150e976ae30005226e0424f347
/Pods/Headers/Public/Protobuf-C++/google/protobuf/util/type_resolver_util.h
19b056eed0a37c0685b0f0f578108f0f6fe66619
[]
no_license
niveshchauhan1995/AccessibilityAutomationGTXiLib
5a55a62b30254cca30832cd30966228fd106e21a
cd98a2ebcda0d04cd4edd92d9f23c05b5afbeed1
refs/heads/master
2023-06-11T12:25:54.546842
2021-07-03T09:23:22
2021-07-03T09:23:22
382,395,104
0
0
null
null
null
null
UTF-8
C
false
false
76
h
../../../../../../Protobuf-C++/src/google/protobuf/util/type_resolver_util.h
[ "NivChauhan@paypal.com" ]
NivChauhan@paypal.com
a9d05198c1637eb0b4bba79459d4c334c6908bdc
e72163428c90c16001856648873cca1839ed70cb
/srcs/is_type/ft_isalpha.c
147dbd495907ae2f67a7d4a4530386c74dab4a46
[ "MIT" ]
permissive
rpeepz/libft
5d3444a92d147e2ab282d0c5bcaa9b404f5a14d8
e29ed7b4cfd4a7ca0ab3d1e6ea7a4adcf5be5110
refs/heads/main
2022-03-24T14:22:43.271893
2022-03-13T23:08:44
2022-03-13T23:08:44
172,147,631
0
0
null
null
null
null
UTF-8
C
false
false
998
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+...
[ "r.papagna@gmail.com" ]
r.papagna@gmail.com
7d9eb5f49910ab5bed59926ce60e1c9025f19eba
3b6da1c5003b49305e6d50436edffb7e336f214b
/opaque_pointer/lib/link/link.c
85c8e8d9184f9fcc5e2bb65d61b883524919982c
[]
no_license
shammellee/projects
b89adb8c1a64f6fc0c1685f8194762d26e562727
24370532857416caf143ec7a89f3c90600f00bd7
refs/heads/master
2023-03-05T10:55:35.300895
2021-02-10T01:05:10
2021-02-18T00:18:46
337,581,127
0
0
null
null
null
null
UTF-8
C
false
false
1,192
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "link.h" static void ll_deallocate(void * _object); typedef struct _node { Data data; struct _node * next; } Node; struct _linked_list { Node * head; }; LinkedList * ll_get() { LinkedList * _l = (LinkedList *) malloc(sizeof(LinkedList)); ...
[ "holler@shammellee.com" ]
holler@shammellee.com
2b611cbda615faab2314acc6ca3fb56f96794b14
0354b5c845510931b8ca508dbadb44639dce4658
/Computing_PI/pi.h
5509c665627a345121496ec9be7ad1ff1173f2f3
[]
no_license
ParkerMarschel/C-Programs
ba48943cc2484c38015c674cff7132d00e0d7ab7
79d612419eb7bc57878ce9f6aa7e381084291e69
refs/heads/master
2021-07-13T07:41:18.800062
2021-02-10T18:51:15
2021-02-10T18:51:15
234,182,373
0
0
null
null
null
null
UTF-8
C
false
false
109
h
float get_pi_for(void); float get_pi_while(void); #define LOOPS 28284277 #define THRESHOLD .00000000000001
[ "noreply@github.com" ]
ParkerMarschel.noreply@github.com
45bb9fed041b9aee04d637023a5e9ab18fe05779
406dff543b22a55f1cd25da3483b95df89997d0f
/tests/certification/TP_SEC_BV_02_ZCP/tp_sec_bv_02_zr1_zcp.c
7bc035c9beae57ef54749495a2bb9eac4a45d2e4
[]
no_license
sa6le/zboss
4fcd8b8bd1f82d787424097951b5c4235df649c0
f1f3d963803afa92ea0adbb5201b46bdac963b4d
refs/heads/master
2022-12-11T02:12:23.912058
2020-09-04T15:02:20
2020-09-04T15:02:20
286,741,597
2
0
null
null
null
null
UTF-8
C
false
false
2,726
c
/*************************************************************************** * * * INSERT COPYRIGHT HERE! * * * ************...
[ "dear.sobolev@gmail.com" ]
dear.sobolev@gmail.com
fc15cf5573db7ef166ed66f50f3b1702305a0149
c0e0138bff95c2eac038349772e36754887a10ae
/mdk_release_18.08.10_general_purpose/mdk/common/components/DataCollector/GuzziCam/leon/ic_main.c
b84effd09de3d7c65b37a3e656602c86ef8f7616
[]
no_license
elfmedy/vvdn_tofa
f24d2e1adc617db5f2b1aef85f478998aa1840c9
ce514e0506738a50c0e3f098d8363f206503a311
refs/heads/master
2020-04-13T17:52:19.490921
2018-09-25T12:01:21
2018-09-25T12:01:21
null
0
0
null
null
null
null
UTF-8
C
false
false
13,840
c
/// /// @file /// @copyright All code copyright Movidius Ltd 2012, all rights reserved. /// For License Warranty see: common/license.txt /// /// @brief interface between isp base pipeline and app 3A cfg and sensor /// /// /// // 1: Includes // ------------------------------------------------------------...
[ "palani.andavan@vvdntech.com" ]
palani.andavan@vvdntech.com
06f0dcb497ecc21226439a2279d9de87ae98356f
15b6dbd81bf92ad84183c110632a0664e03757b2
/ECUHost Atmel Kernel/Peripherals/PERCAN.c
04c8b8bb3eacf2e96d049726cf3aed79597a9cb0
[]
no_license
RabbitECUProject/RabbitECUOpenHALTrunk
55c381b698bc432ccc5cc1c9b1ff361d09352c0f
64cd5cfdcb8a2b2b11950dc6177580a21227c3a8
refs/heads/master
2023-02-22T00:32:01.887195
2023-02-14T12:10:52
2023-02-14T12:10:52
69,720,837
11
5
null
null
null
null
UTF-8
C
false
false
2,073
c
/******************************************************************************/ /* Copyright (c) 2016 MD Automotive Controls. Original Work. */ /* License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher */ /****************************************************************************...
[ "matthew@mdac.com.au" ]
matthew@mdac.com.au
d5b1121fcff73e300be63b3768e8dc248da3d484
b7bad5bb37f9d176ba7aa855627c4dfb8569b19c
/ch_1/count_blanks.c
ab659362f2918bdb4876a09c2ef342f374c1a65c
[]
no_license
philippbeer/learning-c
e46df1bbedfb14d7bcba839fefb0665b77601e55
132067b061199dac80080c3f2280efe776fc2112
refs/heads/main
2023-05-31T15:48:56.498881
2021-06-13T20:10:22
2021-06-13T20:10:22
336,089,327
0
0
null
null
null
null
UTF-8
C
false
false
174
c
#include <stdio.h> /* count blanks in input */ int main() { int c, nl; nl = 0; while ((c = getchar()) != EOF) if (c == ' ') ++nl; printf("%d\n", nl); }
[ "philipp@sciscry.ai" ]
philipp@sciscry.ai
57aabaa486af225072cbc6bae1037c4f72996fe8
c5efae416d17809142a24bf6536eb3d48c75843e
/tcl8.5.14/generic/tclBasic.c
5779ca56c770bcf693c77079506b6f6a9d439afb
[ "TCL" ]
permissive
ctismer/Python-2.7.5-VS2010
846a804cee8fa7143d6fdcd3b4e9b60c24c1428f
63476264a452d856ae197f46070f96fd8f4a066d
refs/heads/master
2020-12-14T02:11:04.334418
2013-08-09T20:45:04
2013-08-09T20:45:04
null
0
0
null
null
null
null
UTF-8
C
false
false
202,095
c
/* * tclBasic.c -- * * Contains the basic facilities for TCL command interpretation, * including interpreter creation and deletion, command creation and * deletion, and command/script execution. * * Copyright (c) 1987-1994 The Regents of the University of California. * Copyright (c) 1994-1997 Sun Microsystems, ...
[ "denver@sleepydragon.org" ]
denver@sleepydragon.org
5296caa499f948646aac6e6083feea5232462d51
d0a3a6102ead6f551bd82407853de9ba92d30e3d
/power_button_demo/source code/buttonPowerOff/buttonPwr.c
87ced42037d4eeee9891546cb0385e7ac0cde279
[]
no_license
yj423/e9_board_yj423
69f3dcbf07ab1f58754ae33d116019b0cf9e189a
235bf6c051f037b5307f479e28eaf6e2af86093a
refs/heads/master
2021-01-19T11:02:40.857022
2017-06-13T06:57:02
2017-06-13T06:57:02
28,634,964
0
0
null
null
null
null
UTF-8
C
false
false
2,375
c
/* * Power button function(using apm emulation driver) * * Copyright (c) 2014 Yan Jun<jun.yan2@hirain.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Licens...
[ "root@ubuntu.(none)" ]
root@ubuntu.(none)
fbc3441895b3cadac6fda9c041708886fed4824f
3e0b3107b0703dc3ca1b11af4044be5882a513c9
/epar.h
3eb8eb4e8219d5174fab11050b62fbf495c40345
[]
no_license
Renanzinth/Treinando-em-C
98fb14d9edcb931397d5413f0fb7574a0a81ebe1
e66f132c95ae22352d7168b24e7db4649a0f6cc8
refs/heads/master
2021-01-10T16:10:02.636174
2015-12-02T03:47:33
2015-12-02T03:47:33
47,233,295
0
0
null
null
null
null
UTF-8
C
false
false
78
h
int Epar(int a) { if(a%2==0) return 1; else return 0; }
[ "renan_thiago@hotmail.com.br" ]
renan_thiago@hotmail.com.br
41d247f55963b9b2f0079de316d3a4a00eab98dc
00544620c5d00965cbe4ac1d6ce573b2afc2968a
/callback.c
c6da0c8c44600d6e0825e9f9da0aa468f2556cda
[]
no_license
Noobzie/psp_hello_world
665613acd594e91574f4dd37c7e4401b7bc008ae
11cb35ab96723b5dd616e05bb1aaa267947479a3
refs/heads/master
2022-04-18T23:49:21.633490
2020-04-13T16:27:20
2020-04-13T16:27:20
255,030,472
0
0
null
null
null
null
UTF-8
C
false
false
725
c
#include <pspkernel.h> static int exitRequest = 0; int isRunning() { return !exitRequest; } int exitCallback(int arg1, int arg2, void *common) { exitRequest = 1; return 0; } int callbackThread(SceSize args, void *argp) { int callbackID; callbackID = sceKernelCreateCallback("Exit Callback", ...
[ "mohaas121@hotmail.com" ]
mohaas121@hotmail.com
d1de9adb0ee7c2b995f4614299ad2a2099761bb9
d1b1694ae01c9a42c889f6178580783a6a445c7e
/Codeforces/148A. Insomnia Cure/148A.c
1a1b1eae4fef027f13dc33fb41239914338e2b6c
[]
no_license
shairatabassum/programming_problems
97404ff1cba909a1050fd34c8ebc1b897c278148
0643f3fd9ff9cb2d7a589171dd4973ff01ddbd9d
refs/heads/master
2021-06-26T12:00:00.040322
2020-12-12T13:26:30
2020-12-12T13:26:30
190,167,945
0
0
null
null
null
null
UTF-8
C
false
false
257
c
#include<stdio.h> int main() { int k, l, m, n, d; scanf("%d%d%d%d%d",&k, &l, &m, &n, &d); int count=0; for(int i=1; i<=d; i++) { if(i%k == 0 || i%l == 0 || i%m == 0 || i%n == 0) count++; } printf("%d", count); return 0; }
[ "noreply@github.com" ]
shairatabassum.noreply@github.com
2223aa153b887dec258041e6ca381379dede51d5
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/bcdd71b7-6cce-4c3c-bb2f-8e0cc0effbfe.c
ef1309bf5029aabe466f88bf4f13c3cbc64bfea9
[]
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
585
c
#include <string.h> #include <stdio.h> int main() { float i; float j; float k; float l; l = 6; j = 9; //variables //random /* START VULNERABILITY */ int a; long b[25]; long c[78]; a = 0; while (( a - 1 ) < strlen(b)) { a++; /* START BUFFER SET */ ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
f864c787cde394ef0736d432442c0deaf2a87643
41162a1428b41af2453a9fdac69bca2ca33f4a38
/ndagent/src/imgui/imgui_impl_glfw.h
63d05103c4ac05981b8ae712a8069f85b5ab0b0f
[ "BSD-3-Clause" ]
permissive
canhld94/blocxxi
11530427ac7fa6dc727c9342001825dcc2e69b3e
e0e1e629334a7959c3fb9c38567f9cf28e2cf44a
refs/heads/master
2022-12-16T12:04:07.671703
2020-09-15T06:41:15
2020-09-15T06:41:15
295,364,985
0
0
BSD-3-Clause
2020-09-14T09:17:16
2020-09-14T09:17:15
null
UTF-8
C
false
false
2,380
h
// ImGui Platform Binding for: GLFW // This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan..) // (Info: GLFW is a cross-platform general purpose library for handling windows, // inputs, OpenGL/Vulkan graphics context creation, etc.) // Implemented features: // [X] Platform: Clipboard support. // [X] Pl...
[ "abde.sassi@gmail.com" ]
abde.sassi@gmail.com
b5e8a400c5b8f15fde4ed482f10ff73f02e8f244
aec5cbdbfd3fc89255d75687c200164da795af28
/AN_Plots/GeneralDistributions/Fig11_Right.C
a6b76169b2612bbde61e6b5529eea5bdeeb640e2
[]
no_license
bmichlin/MuJet_Macros
ae67e5bbb74435b5a8ffe2152f48bdde22c46f17
b3707bb6d9444d0b5e16f3733c46bfc5dec0e888
refs/heads/master
2020-06-17T07:42:57.224902
2016-11-28T23:10:41
2016-11-28T23:10:41
75,018,392
0
1
null
null
null
null
UTF-8
C
false
false
55,017
c
void Fig11_Right() { //=========Macro generated from canvas: c11_R/c11_R //========= (Fri Apr 8 08:02:01 2016) by ROOT version6.02/05 TCanvas *c11_R = new TCanvas("c11_R", "c11_R",0,0,700,700); gStyle->SetOptStat(0); c11_R->Range(-35.71429,-0.05714286,142.8571,0.2285714); c11_R->SetFillColor(0); c11_R-...
[ "bmichlin@rice.edu" ]
bmichlin@rice.edu
5fd26ced63f9f3c53313a6f95b6e51bab8d7c058
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/libgcc/soft-fp/subsf3.c
3d221287cc1f2d5cc525fa0e594f6af05d02d229
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C
false
false
1,790
c
/* Software floating-point emulation. Return a - b Copyright (C) 1997-2019 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). The GNU C Library is free software; you can redistribute it and/o...
[ "rink@rink.nu" ]
rink@rink.nu
0eaeb1437a7be99c8d74f15a289fe80596e2c971
b4a401033144af0712b21079d663ad9e54be7bff
/C&DS/C&DS_progs_discussed_in_Classes/day5/arrayDemo5.c
c30ddc60bd24435b81448dd78440e02f8fc09cb0
[]
no_license
niraj281997/C-Language
aa979c1bd5275211bc4a1d3eda92ed2a4b4aa85c
e878f627d0813853fe663c13c3fa53d4a855e1ab
refs/heads/master
2022-12-18T12:11:30.384356
2020-09-29T06:34:27
2020-09-29T06:34:27
262,771,898
0
0
null
null
null
null
UTF-8
C
false
false
358
c
#include<stdio.h> void fun1(int [], int); void fun2(int *, int); int main(){ int arr[5]={10,20,30,40,50}; fun1(arr, 5); fun2(arr, 5); fun2(arr+1, 5); } void fun2(int *p, int size){ for(int i=0;i<size;i++){ printf("%d ", *(p+i)); } printf("\n"); } void fun1(int a[], int size){ for(int i=0;i<size;i++){ prin...
[ "gohelniraj1997@gmail.com" ]
gohelniraj1997@gmail.com
9a88ca8ba9f91501d5208232810eb88277750803
d25ad3013b92926e9df0ee4be3ff14bac7cd5437
/libs/jpegToPpm/jpeg-to-ppm.C
f3f3e6a569c29d0d4bb8cf69a886854c90bd9052
[]
no_license
koreissm/ImageIndexing
a9ce9150b40309ebd2120dd7ddb01937e66f5774
89b79eca3f73f482789c839b299ba92204941d66
refs/heads/master
2021-01-17T16:08:20.331957
2016-09-29T18:07:45
2016-09-29T18:07:45
69,248,372
0
0
null
null
null
null
UTF-8
C
false
false
2,682
c
#include <iostream> #include <iomanip> #include <sstream> #include <fstream> #include <cstdlib> #include "jpeg-c++.h" #include "../PGM_PPM.h" using namespace std; int main(int argc, char* argv[]) { std::ostringstream jpeg_in_memory; std::ostringstream filename; jpeg::Decompress jpg_to_bytes(jpeg_in_memory); ...
[ "damien.dallerac@gmail.com" ]
damien.dallerac@gmail.com
417c34aac4ab0ff607961374df8b3bc949ca8275
e48f75048ed032760ce688ae1bb499446f8f595b
/projs/ets/trunk/src/c_tcl_base_7_5_w_mods/tclunidata.c
cf1e284c5b20f1d8919bc811610157a45e36b522
[ "TCL", "MIT" ]
permissive
mandelbrot999/hello-world999
8653b7465ea20ecb3919e8d233d4e5deece5f317
edd913741e56272bd6b9538f043ac5fb006b1072
refs/heads/master
2021-06-02T08:58:11.819136
2018-07-30T21:58:55
2018-07-30T21:58:55
29,752,816
0
0
null
null
null
null
UTF-8
C
false
false
37,448
c
/* $Header: svn://localhost/dtapublic/projs/ets/trunk/src/c_tcl_base_7_5_w_mods/tclunidata.c 71 2016-11-05 11:07:06Z dashley $ */ /* * tclUtfData.c -- * * Declarations of Unicode character information tables. This file is * automatically generated by the tools/uniParse.tcl script. Do not * modify this file by ha...
[ "dashley@gmail.com" ]
dashley@gmail.com
2d329ab762b3ae47589bad36fef005544acb536d
a8df4efa3c1105f32def8f7c986f559186ab041c
/card.c
bdd8d94ece5273bba4c2b89f2605e37bf117c634
[]
no_license
ariyan98/CS50-card-checker
a4e1e7b3e55ff427dc23112ecf35985663a8ffe3
71aa79f2c8d36941384600bf22d77d21fefe884f
refs/heads/master
2020-03-26T19:42:21.827853
2018-08-19T07:15:53
2018-08-19T07:15:53
145,281,358
0
0
null
null
null
null
UTF-8
C
false
false
1,730
c
#include<stdio.h>//standard library #include<cs50.h> int main(void) { int c = 0, x, y = 0, z = 0; long long num, num1;//long long for taking credit card number do { num = get_long_long("Number: "); } while (num < 0); num1 = num; //validating the number while (num > 0) {...
[ "noreply@github.com" ]
ariyan98.noreply@github.com
a0bb89a741d9a5cca79ded308b60446e133e5d96
e87d79f552cdcd1323aa9bbfa38ecbf777ac94d1
/src/map/common/lapacksrc/f2c/cgeqlf.c
cfd6b774919b80699a557011bdc4d7aa27fe5f74
[ "BSD-3-Clause", "LicenseRef-scancode-other-permissive" ]
permissive
iotamudelta/libflame
539165f48d24c159ad494e813a1fc30fa2ea3791
70c19e770ead0ae846c59b59216deb16d236b40c
refs/heads/master
2023-07-28T12:31:59.890987
2023-07-13T19:33:42
2023-07-13T19:33:42
103,612,203
0
2
NOASSERTION
2023-05-04T19:04:09
2017-09-15T04:00:39
Fortran
UTF-8
C
false
false
10,239
c
/* ../netlib/cgeqlf.f -- translated by f2c (version 20100827). 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 en...
[ "field@cs.utexas.edu" ]
field@cs.utexas.edu
9cf30ccceba81d9aebff302dead74bc79fee205d
4fabb18fa3f16175a316236d981e7f208a9f05b9
/0x03-debugging/3-print_remaining_days.c
2279d24abed8eb5a22f049c86de8f686c0929ce6
[]
no_license
bapc2025/holbertonschool-low_level_programming-1
8a8583e7b4683fa274cd54c06c91c0b78cb6a791
0fce47d851fa8ace22c76c63e675b79e4d93e162
refs/heads/main
2023-08-31T14:43:39.791435
2021-10-20T01:17:51
2021-10-20T01:17:51
null
0
0
null
null
null
null
UTF-8
C
false
false
723
c
#include <stdio.h> #include "main.h" /** * print_remaining_days - takes a date and prints how many days are * left in the year, taking leap years into account * @month: month in number format * @day: day of month * @year: year * Return: void */ void print_remaining_days(int month, int day, int year) { ...
[ "diegomonfort12346@gmail.com" ]
diegomonfort12346@gmail.com
d842a0bfaaa8fa6994ad42c78dd4f30a1d0f1537
6e9f4017ea4bb6f6fd01645a091875f2e5910bf8
/desktop/compilers/ansic/c-tests/0060.c
55e61ba0452d8295b4eb4b04f99e7bd0f1209ae3
[]
no_license
derrell/LearnCS
acae7070fd294bc11c61a9ffe8b54ece77810469
631cad87481dafb95aeaa8dc215dfa85ab1a32ff
refs/heads/master
2023-03-15T17:32:14.503248
2021-07-21T12:51:54
2021-07-21T12:51:54
22,389,974
3
2
null
2023-03-06T06:28:18
2014-07-29T18:04:26
JavaScript
UTF-8
C
false
false
175
c
int main(int argc, char * argv[]) { int i = 23; int * pI; pI = &i; printf("i=%d &i=%x pI=%x *pI=%d\n", i, &i, pI, *pI); return 0; }
[ "derrell.lipman@unwireduniverse.com" ]
derrell.lipman@unwireduniverse.com
f4bd2fb3994aa5e4ebf8a395358fcebd15414965
4c33908c1b451cd42408ae7bcb09713b91bb037a
/t9c1e4/t9c1e4/main.c
cf2d11fe055be1501a18179a288adaebae34a38f
[]
no_license
vcubells/tc1017
efdf2b729abd78fa7e83277f2c2b5f4b5b0f51ae
f6ecf52751c078cba48061310539cf206f42bd97
refs/heads/master
2020-04-14T01:22:06.287263
2018-12-30T03:30:06
2018-12-30T03:30:06
163,558,576
1
0
null
null
null
null
UTF-8
C
false
false
2,462
c
// // main.c // t9c1e4 // // Created by Vicente Cubells Nonell on 23/06/14. // Copyright (c) 2014 Vicente Cubells Nonell. All rights reserved. // #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 100 #define M 1000 void histograma(int frecuencia); int menosFrecuencia(int a[N]); int masFrecuencia...
[ "vcubells@yahoo.com" ]
vcubells@yahoo.com
79b81875b38fea14118ecefad67eb57acf045130
2d35f5d191edc1e2e28669a2b62fd04d12748807
/src/arch/x86/mm/phys.h
8f8c572eea46c4c057c47c6209e9f5b8407501ec
[]
no_license
alnyan/ygg-kernel
655f8acde23718bc9727c8d54f5a083aca24268c
a6928add0440cfbb3ca54947e0690e64ef39f07b
refs/heads/master
2020-04-27T09:14:43.133902
2019-03-06T17:14:20
2019-03-06T17:14:20
174,206,723
1
0
null
null
null
null
UTF-8
C
false
false
43
h
#pragma once void x86_mm_phys_init(void);
[ "alnyan@airmail.cc" ]
alnyan@airmail.cc
cd988b77268eeb851872c495dce04f3b9977ff95
38002ed688af15dc7b051bb4a471d1bab5266d78
/6800/MC6800 C Compiler/ct/data09.c
7d1b915a82c198c51f45fb018d31d8b4196ff2cd
[]
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
16,664
c
char *soptab[] = { "1#4b%6", "equ", "end", "db", "ds", "dw", "org", "eval", "entry", "repeat", "dup", "external", ...
[ "doug@douglasgilliland.com" ]
doug@douglasgilliland.com
1af7ce17197535739657e3b7b7a0a29b8fecaca9
47180a9c2a6093017e86fed5c193567c844e08b5
/01_Flightcontroller/Code/FlightcontrollerV2/Core/Src/gpio.c
c417b568ea717e65b34300a3a1ed9a6b7e3128fd
[ "MIT" ]
permissive
Pluscrafter/SHARKSKY
5535941f58a9c3cab9a118e9f6c134de65227a8e
f3d5e96c9f4cd25e4c03537f1f8d9b9756042dac
refs/heads/master
2023-02-08T20:56:19.029962
2020-12-17T02:16:38
2020-12-17T02:16:38
197,988,270
3
1
MIT
2020-01-04T20:05:17
2019-07-20T22:48:38
C++
UTF-8
C
false
false
4,310
c
/** ****************************************************************************** * File Name : gpio.c * Description : This file provides code for the configuration * of all used GPIO pins. ****************************************************************************** *...
[ "95548072+HB9HJN@users.noreply.github.com" ]
95548072+HB9HJN@users.noreply.github.com
6996843337977c21814d98ff986fc13b1d8a87cb
70f63f6b356c665842e359469a89287106a5a754
/src/mudlib/d/simauria/comun/habitacion/sherek/aldea/calles/caminogranja03.c
36c2004006d3761edbb729dcde9ff7d925b27ae6
[]
no_license
DPrenC/endor-mud
2aebc7af384db692c7dbc6c0a0dbb3c600e93ecc
3ca7605715ce2c02734c68766470f5d581b9fc98
refs/heads/master
2021-01-21T18:53:26.493953
2017-05-21T23:04:36
2017-05-21T23:04:36
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
835
c
/* Archivo caminogranja03.c Autor: Yalin y Lug Fecha: 05/05/2006 Descripción: Camino de la granja de la aldea (proyecto) */ #include "path.h" inherit SHERALD("calles/caminog"); create() { ::create(); SetIntLong(QueryIntLong()+"En todas direcciones ves pastos y tierras de " "la...
[ "ea5gna@gmail.com" ]
ea5gna@gmail.com
9fdd49aa8a2523b1f922f86c75c0327457d8850a
1e7c99a795b65820da7a4585fd76f8af6dea3fa4
/Dice.c
eb51b3939c169a5cdf90e401479f85b20817450e
[]
no_license
ryumix/test
61511b62ed69e72e0421b84942c402900c482d02
d9a7d16567a062534c26aa2c560ead8044fc7d54
refs/heads/master
2021-01-20T02:47:46.059604
2014-08-27T09:54:28
2014-08-27T09:54:28
null
0
0
null
null
null
null
UTF-8
C
false
false
1,097
c
#include <stdio.h> #include <stdlib.h> #include <time.h> void main(){ int a, b,c,d = 0; int e; printf("ダイスを二つ振ります。出目の裏面の数字合計はいくつでしょう?\n"); getchar(); srand((unsigned)time(NULL)); a = rand() % 6; b = rand() % 6; if(a==0){ c=1; } if(a==1){ c=2; } if(a==2){ c=3; } if(a==3){ c=4; } if(a==4){ c=5;...
[ "eternal-calm-sky@hotmail.co.jp" ]
eternal-calm-sky@hotmail.co.jp
69edf44d40bede84cc04eb31c65b0be0a15c119b
1f29a840c33d96ae4d858b75e3624703a691b229
/Estructuras ABM (INCOMPLETO)/Productos.c
d29e8de212a438f46feb1b2641327e031412d868
[]
no_license
german2017/Clases-Sabados
b300bf12ee251b4dc312a3ee1d4850962e427efd
941c86ea65b1aab532536d36974a31cc77346374
refs/heads/master
2020-03-12T05:49:39.867075
2018-04-21T15:59:54
2018-04-21T15:59:54
130,471,821
0
14
null
null
null
null
UTF-8
C
false
false
44
c
#include <stdio.h> #include "Productos.h"
[ "profesor" ]
profesor
2c58c87c2de56a16542a0cdcc0654e3014e807e6
7319a5375a05c14adec231b504a4be028918d2f6
/SOP_C/p2_5.c
5021a080870eb245fb19abed6fad33026cdcee72
[]
no_license
s23575/pjatk-sop
69a087217231209400e565c235f2e6063d6c451c
a25473bc30dc1dd6fcede9d9929ed1530052fa80
refs/heads/master
2023-06-06T23:54:49.485733
2021-06-25T18:20:18
2021-06-25T18:20:18
346,094,148
0
0
null
null
null
null
UTF-8
C
false
false
702
c
#include <sys/wait.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main () { int status, exit_status; pid_t pid = fork(); if (pid < 0) { printf("ERROR! Nie można utworzyć nowego procesu\n"); } if (pid == 0) //tutaj wejdzie tylko jako potomek { printf("Potomek (PID: %d) uśpiony...\n", getpid...
[ "s23575@pjwstk.edu.pl" ]
s23575@pjwstk.edu.pl
4363f1e1091b4173cc0fc020122bc0d557f31bc4
32cf94c304c2c832595a28b49c7d9e0361d50950
/3rd/htop/htop/CheckItem.h
5847d4b2e3fe6ef24ddc0cdf31d85567899636bd
[ "MIT", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-generic-exception" ]
permissive
oudream/ccxx
11d3cd9c044c5f413ebc0735548f102a6f583114
26cecfb02e861ce6b821b33350493bac4793e997
refs/heads/master
2023-01-29T11:20:12.210439
2023-01-12T06:49:23
2023-01-12T06:49:23
47,005,127
46
11
MIT
2020-10-17T02:24:06
2015-11-28T01:05:30
C
UTF-8
C
false
false
634
h
/* Do not edit this file. It was automatically generated. */ #ifndef HEADER_CheckItem #define HEADER_CheckItem /* htop - CheckItem.h (C) 2004-2011 Hisham H. Muhammad Released under the GNU GPL, see the COPYING file in the source distribution for its full text. */ #include "Object.h" typedef struct CheckItem_ { Ob...
[ "oudream@126.com" ]
oudream@126.com
ef7a81a85c6d25321d6f5a384a5182293fcb34c1
a547dd08ddd1d9a266d9865026f32c943cd126d3
/test1for.c
c55891c440edbf646f8bf12752d8197161b3779c
[]
no_license
anudeepdv/Compiler_C_for_switch_ICG
120d866dbdb7266fb342691c47555e65c24bee44
b1c4790566b2f4ccb3c60e7e2a95b0b1ae597c0d
refs/heads/master
2020-05-18T01:56:07.921339
2019-04-29T16:05:24
2019-04-29T16:05:24
184,102,604
0
0
null
null
null
null
UTF-8
C
false
false
152
c
#include <stdio.h> int main() { int n = 37; int i; int factors = 0; int r=0; for(i = 1; i <= n; i++) { factors = 2; r=2; } int p=4; }
[ "noreply@github.com" ]
anudeepdv.noreply@github.com
8b7ebd6318163c0cfb8e1be6990ef050752db801
602192ca7a27ba4ee08b7ff66916f5de524c0995
/c/Ponteiros1/Ponteiros1.c
53c7ad15c0ab6c3825e90048f5f5a5f5ed1061aa
[]
no_license
henriquepassos/ed
358658ccfad3f43db1ce7cd254960b2507cb8ef0
faf2e3c36ba53a837e0bf54f165f7440d7dedc5d
refs/heads/master
2021-01-10T10:39:12.148445
2019-08-23T00:56:19
2019-08-23T00:56:19
36,838,439
1
0
null
null
null
null
UTF-8
C
false
false
1,026
c
#include <stdio.h> #include <malloc.h> typedef struct { int peso; // peso em quilogramas int altura; // altura em centimetros } pesoAltura; typedef pesoAltura* PONT; int main() { PONT p = (PONT) malloc(sizeof(pesoAltura)); p->peso = 80; p->altura = 185; printf("Peso: %d, Altura %d.\n", p->peso, p->altur...
[ "henrique.passos@fatec.sp.gov.br" ]
henrique.passos@fatec.sp.gov.br
eb9e75c0863eb5c03db6905fc727ebcc30b87e9a
c9299215fcc92853badb09778869917f97016432
/算法设计与分析/骑士周游问题的回溯算法/knight_path.c
df843fdd3c337748498f26284944511fa0b0cf67
[]
no_license
acer-haitao/Data-Struct
1ea9836c654f07df0c4d99acbb0893306392366c
4f96a9385468812e37838827a7680fed5150942d
refs/heads/master
2020-09-10T17:06:21.876515
2016-09-04T01:55:48
2016-09-04T01:55:48
67,320,517
0
0
null
null
null
null
GB18030
C
false
false
3,514
c
/* 用回溯法解决骑士周游问题的算法*/ #include<stdio.h> #include<stdlib.h> #define NUM 6 /*方阵为n*n的*/ #define MAXNUM NUM * NUM /* 栈中最大元素个数 */ struct Node { int x, y, d; }; typedef struct Node DataType; struct SeqStack { /* 顺序栈类型定义 */ int t; /* 指示栈顶位置 */ DataType s[MAXNUM]; }; typedef struct SeqStac...
[ "acer_yuhaitao@163.com" ]
acer_yuhaitao@163.com
aa357a91d79d44cf102e6aedf9500d2e83633f2d
47ce55bba7a39f9a689c113d0127029bb30d20d0
/HEAD_660/pkgsrc/audio/alsa-lib/patches/patch-include_pcm.h
c249a9762b4039ae60913b871d8649ab27eff6ad
[]
no_license
CyberSys/qnxpkgsrcmirror
f1e8747ef7e46d6a16f2e6fba4f437ef640595a1
472534e11d14da5573bb86b12246d00e3ca87fb6
refs/heads/master
2022-12-19T09:31:48.664692
2015-01-30T16:05:07
2015-01-30T16:05:07
299,015,271
0
2
null
null
null
null
UTF-8
C
false
false
1,465
h
$NetBSD: patch-include_pcm.h,v 1.3 2012/03/08 04:04:19 sbd Exp $ --- include/pcm.h.orig 2009-12-16 15:18:51.000000000 +0000 +++ include/pcm.h @@ -456,7 +456,9 @@ int snd_pcm_wait(snd_pcm_t *pcm, int tim int snd_pcm_link(snd_pcm_t *pcm1, snd_pcm_t *pcm2); int snd_pcm_unlink(snd_pcm_t *pcm); +/* //int snd_pcm_mixer...
[ "seanb@qnx.com" ]
seanb@qnx.com
5903ae161c37756b7a9649cca241b09f80979ff4
04c8d8da9cebc13513c1b9c7658707ecadfa0ed3
/Roll a Ball/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Array_InternalEnumerator_1_gen_294.h
8ac9086124b57384694f6371ca77b2fbb2f65490
[]
no_license
fkieyhzen/RollABall
ed9ef9e93f3cfaecd2be10013797e97e9c1e479e
f083b660966094939ed2b5d2028e31bb4e86a67e
refs/heads/master
2023-03-19T18:19:11.437779
2015-06-08T15:27:45
2015-06-08T15:27:45
null
0
0
null
null
null
null
UTF-8
C
false
false
493
h
#pragma once // System.Array struct Array_t; // System.ValueType #include "mscorlib_System_ValueType.h" // System.Array/InternalEnumerator`1<System.Collections.Generic.IList`1<System.Object>> struct InternalEnumerator_1_t6898 { // System.Array System.Array/InternalEnumerator`1<System.Collections.Generic.IList`1<Syst...
[ "patrick@beetheswarm" ]
patrick@beetheswarm
5824498327198b55637f6a5199a1d6362864c689
2df7269aad6077ebe0f4da02f01e6c9b167ed64c
/cmsis_boot/syscalls/syscalls.c
57ea7a900c32c747f72abe3b39893a3f4fce0f1e
[]
no_license
MarianoDel/emacs_flux_meter
73c8f7b0335a7bb7b72205df06aa17e9bf0d7056
8ba399d90d33a0ca4da720bc14aa8c300be22f36
refs/heads/master
2020-03-22T18:14:56.159541
2018-07-18T14:13:29
2018-07-18T14:13:29
140,447,316
0
0
null
null
null
null
UTF-8
C
false
false
1,346
c
/**************************************************************************//***** * @file stdio.c * @brief Implementation of newlib syscall ********************************************************************************/ #include <errno.h> #include <stdio.h> #include <stdarg.h> #include <sys/types.h> #incl...
[ "marianodeleu@yahoo.com.ar" ]
marianodeleu@yahoo.com.ar
bfa199905e9133e87cdb43a5994ae4aba3350324
cfeec151573d30daae65c837a8eb1ed0bdf8820e
/m.c
551783fd23ad4457106e8a27ad929be79c7cf363
[]
no_license
khushboopriya/single_objective_spider_monkey_optimization
b8253163ba34630d03b46cc9eb4b72d1bf1352cb
93a5ba7fba114057fe9c773bee108fa2835d112c
refs/heads/master
2020-04-14T13:57:16.625130
2019-01-02T19:58:46
2019-01-02T19:58:46
163,883,556
1
0
null
null
null
null
UTF-8
C
false
false
11,035
c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include "combined.h" #include "main.h" #define Pop_size 50 #define Max_iterations 1000 #define Total_Run 100 #define max_part 5 /*this represents the maximum group size*/ int try; double CalculateFitness(double fun) { double result=0; ...
[ "noreply@github.com" ]
khushboopriya.noreply@github.com
d033d6687f6e3da6c324050efb3a1988e8524646
ef8398b9379f77314e66a2017e39e8b9ac9fedde
/board/MK3031/platform.h
0327513850fd5178302cc02d510be9b9ca5debe6
[]
no_license
youponDeveloper/youpon_project
360166f3653b2de97d6f9fcb64a3ba22fc81d920
74dc997435ed45980238d64cbc968f946fe75d30
refs/heads/master
2021-05-15T05:34:32.029300
2018-01-10T07:32:02
2018-01-10T07:32:02
116,330,758
0
0
null
null
null
null
UTF-8
C
false
false
7,197
h
/** ****************************************************************************** * @file platform.h * @author William Xu * @version V1.0.0 * @date 05-Oct-2016 * @brief This file provides all MICO Peripherals defined for current platform. ****************************************************************...
[ "shibingmo_ybzn@163.com" ]
shibingmo_ybzn@163.com
75e8b5549f020a2ca19be8bcd4718b73957efe17
1fcd5a52c672b282e2c68f56d10e203b7dbdd233
/set3 28.c
73b68e5f9724a4ad78d7e1056299651ec14fe959
[]
no_license
Manojprabuvj/mrcool
08152cf88e3311f8f746b16c4d7d0ca137519f33
eb2dc69580a435c0b7a6af9e3ac3106116783127
refs/heads/master
2020-04-24T02:32:17.851449
2019-03-12T06:22:56
2019-03-12T06:22:56
171,640,461
0
0
null
null
null
null
UTF-8
C
false
false
241
c
#include <stdio.h> int main() { int a[10],i,num; printf("enter the size of the array:"); scanf("%d",&num); printf("\n enter the array elments:"); for(i=0;i<num;i++) { scanf("%d",&a[i]); printf("\n%d %d",a[i],i); } return 0; }
[ "noreply@github.com" ]
Manojprabuvj.noreply@github.com
7b7f115a3e3941296e9d4fa3a974f40125ef34c5
0a309b00972322cc6dbf28e82e95915bf8eb9577
/MBoot/MstarCore/bsp/edison/include/drvIR.h
99e345a0c31bc785ae3d6061571e6dcf0f7ed716
[]
no_license
Benjamin-Dobell/kogan-tv-gpl
5a22d84217a1d5ada231f43f3368f22a99b1b9a1
40d86850e1c53a9e687736006816b83e53ac96eb
refs/heads/master
2021-01-17T07:56:42.783716
2016-09-07T23:59:46
2016-09-07T23:59:46
16,887,634
22
9
null
2016-09-07T23:59:46
2014-02-16T15:41:34
C
UTF-8
C
false
false
24,178
h
//<MStar Software> //****************************************************************************** // MStar Software // Copyright (c) 2010 - 2012 MStar Semiconductor, Inc. All rights reserved. // All software, firmware and related documentation herein ("MStar Software") are // intellectual property of MStar Semiconduc...
[ "aidan.steele@glassechidna.com.au" ]
aidan.steele@glassechidna.com.au
77e16e8d44f71edeb9224669cd2294b84d838e70
c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64
/Engine/Plugins/Editor/USDImporter/Source/ThirdParty/USD/include/pxr/base/gf/api.h
05ed7a1c876792b36d37e108cf9de00a35d2469b
[ "MIT", "LicenseRef-scancode-proprietary-license" ]
permissive
windystrife/UnrealEngine_NVIDIAGameWorks
c3c7863083653caf1bc67d3ef104fb4b9f302e2a
b50e6338a7c5b26374d66306ebc7807541ff815e
refs/heads/4.18-GameWorks
2023-03-11T02:50:08.471040
2022-01-13T20:50:29
2022-01-13T20:50:29
124,100,479
262
179
MIT
2022-12-16T05:36:38
2018-03-06T15:44:09
C++
UTF-8
C
false
false
1,793
h
// // Copyright 2017 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trad...
[ "tungnt.rec@gmail.com" ]
tungnt.rec@gmail.com
64ad898a4f089cbae933a8de97e116cff085d403
974477c458fd9599145f9a1a61366fbebf37a113
/Campos/src/ov5647.c
9260a09f17c49a5fa4c39ceeb42111519c250bac
[]
no_license
diamond2nv/stm32-campos
abd4b6c3467374a64f5b6685b86d5582394648c9
c2a1377aedd2d1c271eacf6ac5daf1cfe590f3dc
refs/heads/master
2021-05-29T16:35:05.204335
2015-02-01T19:08:43
2015-02-01T19:08:43
null
0
0
null
null
null
null
UTF-8
C
false
false
8,429
c
/** * Project Campos * @file ov5647.c * @author Gerd Bartelt - www.sebulli.com * @brief Omivision OV5647 driver * * @copyright GPL3 * * 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 Fre...
[ "gerd@aline-gerd.de" ]
gerd@aline-gerd.de
59b62ddf62211a773770a357ce1364e285c755ad
387ad3775fad21d2d8ffa3c84683d9205b6e697d
/openhpi/tags/RELEASE_1_0_1_IA64/utils/t/epath/ep_concat_013.c
7e84d35ae889cdfd80887b47143f92bec64053ff
[]
no_license
kodiyalashetty/test_iot
916088ceecffc17d2b6a78d49f7ea0bbd0a6d0b7
0ae3c2ea6081778e1005c40a9a3f6d4404a08797
refs/heads/master
2020-03-22T11:53:21.204497
2018-03-09T01:43:41
2018-03-09T01:43:41
140,002,491
0
0
null
null
null
null
UTF-8
C
false
false
1,293
c
/* -*- linux-c -*- * * (C) Copyright IBM Corp. 2004 * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This * file and program are licensed under a BSD style license. See * ...
[ "nobody@a44bbd40-eb13-0410-a9b2-f80f2f72fa26" ]
nobody@a44bbd40-eb13-0410-a9b2-f80f2f72fa26