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
802 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
148 values
src_encoding
stringclasses
33 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.3M
extension
stringclasses
118 values
content
stringlengths
3
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
228
60a33d8227af14b859835a0b0546df2e8a3287c4
d321f4a07566c87ed3aa0d8ade58e8ea6b2399e5
/9-binary_tree_height.c
a0008af1ef250581b8b839b64a9f670eea56adf2
[]
no_license
JHS1790/binary_trees
2650d12225e2e835f8046c1ee7e6b555b4856b3e
89a1de18cc4c88a2d99daa957bedd2c71c57334b
refs/heads/main
2023-01-15T05:36:46.931683
2020-11-24T17:37:32
2020-11-24T17:37:32
314,295,097
0
0
null
null
null
null
UTF-8
C
false
false
866
c
#include "binary_trees.h" /** * binary_tree_height - measures the height of a binary tree * @tree: a pointer to the root node of the tree to measure the height * Return: height but we're doing that weird 0 thing */ size_t binary_tree_height(const binary_tree_t *tree) { if (tree == NULL) return (0); return (rec...
[ "1790@holbertonschool.com" ]
1790@holbertonschool.com
05b38c75276952ce3292167ec848525f1b5c26c1
c87c36977652b6c76a3042a5df63f977461f68f5
/Software/SDK1_1/demos/apps_sdk1.2/src/demos/ftm_pdb_adc_demo/ftm_pdb_adc_demo.c
ff9b36477ba16c1617e038149d1c8accdc155c07
[ "MIT" ]
permissive
colossus212/Quadcopter_Will
a21abe97a881b66216e4764135c1786c191f29cf
fd0b0d3db28ff4d2b93b3c481a0378bd0302ae57
refs/heads/master
2021-01-15T22:57:42.411637
2015-03-20T10:01:03
2015-03-20T10:01:03
null
0
0
null
null
null
null
UTF-8
C
false
false
14,965
c
/* * Copyright (c) 2014, Freescale Semiconductor, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, this list...
[ "wenjian_lin@163.com" ]
wenjian_lin@163.com
4c12c12835833a7cb324ce9ae811011b8400aa1e
943d51a06836e615d58a8888cef706d63d270a75
/DUMP/HG_Damage_Mod_classes.h
feb7e7975910205aac63347cd45a64b803c51a87
[]
no_license
hengtek/Back4BloodSDK
f1254133d004d7a5237013059d49c80f536879db
25ab4c4ce2e140b7e6b7afaac443e836802c3b2d
refs/heads/main
2023-07-05T03:23:01.152076
2021-08-15T15:03:38
2021-08-15T15:03:38
null
0
0
null
null
null
null
UTF-8
C
false
false
145
h
// BlueprintGeneratedClass HG_Damage_Mod.HG_Damage_Mod_C // Size: 0xe0 (Inherited: 0xe0) struct UHG_Damage_Mod_C : UApplyGameplayEffectMod { };
[ "hsibma02@gmail.com" ]
hsibma02@gmail.com
a04d86812e773faddf0b392e1023b3de28017668
f1fa2ac7f82bc25f7c1281013d31db2527cb1740
/selected-cgc-prgs/electronictrading/src/cgc_stock.h
c31c72abb5a49e005faffdf4180cbcb9693aa3c5
[]
no_license
pansilup/cgc-prgs-for-klee-seed-mode
9e5788cd65f5b860b10e8eb47d4f1d3eb1d2b5cb
c4c21dc0e836a4c043d5302be0c262ee5792c37d
refs/heads/master
2023-08-17T00:08:52.537823
2021-09-10T06:30:08
2021-09-10T06:30:08
390,788,158
0
0
null
null
null
null
UTF-8
C
false
false
4,495
h
/* * Copyright (C) Narf Industries <info@narfindustries.com> * * 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, cop...
[ "pansilu.17@cse.mrt.ac.lk" ]
pansilu.17@cse.mrt.ac.lk
d45527cb6219516ed29303410e0471576b8ff7ef
2bf306691f7ab52099cc957d673ce210bf19ab6a
/3.SemanticCheck/symbolTable.c
f2fd9ff0480c34d83d228d0302fef457d68d1059
[]
no_license
b06902062/C---compiler
2260b750403e608bea5ba63cef4bae8d1c3eddff
394473f91435d4ea582772bc0a31997f07a76099
refs/heads/main
2023-03-31T18:32:42.975294
2021-04-03T16:37:03
2021-04-03T16:37:03
354,327,945
0
0
null
null
null
null
UTF-8
C
false
false
8,607
c
#include "symbolTable.h" #include <stdlib.h> #include <string.h> #include <stdio.h> // This file is for reference only, you are not required to follow the implementation. // int HASH(char * str) { int idx=0; while (*str){ idx = idx << 1; idx+=*str; str++; } return (idx & (HASH_TABLE_SIZE-1)); } SymbolTable ...
[ "ht94001@gmail.com" ]
ht94001@gmail.com
0665e5f6a916c4aaff355c76eee8001ae5acd903
559770fbf0654bc0aecc0f8eb33843cbfb5834d9
/haina/codes/beluga/client/moblie/3rdParty/libxml2-2.6.19/testHTML.c
c5da07eee59152e4426e7960f8b9077499a53ee6
[ "MIT", "LicenseRef-scancode-x11-xconsortium-veillard" ]
permissive
CMGeorge/haina
21126c70c8c143ca78b576e1ddf352c3d73ad525
c68565d4bf43415c4542963cfcbd58922157c51a
refs/heads/master
2021-01-11T07:07:16.089036
2010-08-18T09:25:07
2010-08-18T09:25:07
49,005,284
1
0
null
null
null
null
UTF-8
C
false
false
21,130
c
/* * testHTML.c : a small tester program for HTML input. * * See Copyright for the status of this software. * * daniel@veillard.com */ #include "libxml.h" #ifdef LIBXML_HTML_ENABLED #include <string.h> #include <stdarg.h> #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif #ifdef HAVE_SYS_STAT_H #include <...
[ "shaochuan.yang@6c45ac76-16e4-11de-9d52-39b120432c5d" ]
shaochuan.yang@6c45ac76-16e4-11de-9d52-39b120432c5d
87087f830312550ef3338821f40e83c08b5e5a28
83dbe9a60f20ab97034d8166a87a0f43d342e7d8
/src/host/sgx_hostcalls.c
79331f9afd5e8b8c310706578497045bc5c72af7
[ "MIT" ]
permissive
foesi/sgx-lkl
56d4305befa8f110893c0f22fc588d71c1681969
c4d0b2638ab8c7bd3844d2344fac62fca34a744b
refs/heads/master
2020-06-11T21:54:23.550734
2019-06-27T12:14:03
2019-06-27T12:14:03
194,098,767
0
0
MIT
2019-06-27T13:16:45
2019-06-27T13:16:44
null
UTF-8
C
false
false
21,897
c
/* * Copyright 2016, 2017, 2018 Imperial College London * Copyright 2016, 2017 TU Dresden (under SCONE source code license) */ #define WANT_REAL_ARCH_SYSCALLS #include "ksigaction.h" #include "sgx_hostcalls.h" #include <assert.h> #include <errno.h> #include <fcntl.h> #include <net/if.h> #include <stdlib.h> #includ...
[ "cp3213@ic.ac.uk" ]
cp3213@ic.ac.uk
9ed70218c022f4baeeaa73a09216668f1676ece6
f81da1e8b67c9f7012ae0b62eac6b2c9de3785f4
/hk3.h
d6097ccf3809f719e26b1d2f14b2fb93f1aaa534
[]
no_license
SimonWagenknecht/QR_SNW
23ea62a2198a2a731b8abfc237802f55de5dae15
cd63e663caecfea64ada31c23d7822a111b076a5
refs/heads/master
2020-03-19T13:46:16.208532
2018-06-29T11:13:26
2018-06-29T11:13:26
136,594,438
0
0
null
null
null
null
ISO-8859-1
C
false
false
26,896
h
/*------------------------------ Heizkreis 3 -------------------------------------------*/ const Pgrup hk3[] = { //------------------- {"_**:"," HEIZKREIS 1 "," ", P&hkd[HK3].raumname, ASCII_FORM, 0, P&vis, V1, 0, 0}, {"*01:"," VORLAUF TVHK1 "," C ", P&TVS[HK3], ANA_FORMP, 1, P&vis, V1, 0, 0}, ...
[ "s.wagenknecht@parabel-energiesysteme.de" ]
s.wagenknecht@parabel-energiesysteme.de
c96aa1379f646b5e8a901def3687cab81c8fbdef
8baae52066c1e716ab6be31894b4f5a4122e0ce6
/apps/flash/CurentData.c
4524f273178b363a2605b37c2b38511708983f62
[]
no_license
nguyendao3154/iro3
c35902ccb53575527beb9cca77b30cb024a54d6b
908c7d762e77b2214377a1ffc5a3453e333b18d1
refs/heads/master
2023-06-29T16:51:25.030563
2020-10-07T10:16:36
2020-10-07T10:16:36
390,341,150
0
0
null
null
null
null
UTF-8
C
false
false
3,454
c
/****************************************************************************** * * Embedded software team. * (c) Copyright 2018. * ALL RIGHTS RESERVED. * ***************************************************************************//*! * * @file CurentData.c * * @author quanvu * * @version 1.0 * * @date * * ...
[ "daonguyen3154@gmail.com" ]
daonguyen3154@gmail.com
095e0f445c755d426964e4a109e13e8f112ba480
2495db693562415afcd03588383bca0855ee48b3
/sdk/boards/lpcxpresso54608/usb_examples/usb_device_msc_ramdisk/bm/disk.c
623764d736b8dfc746a899afa82284a14f5aaeab
[]
no_license
Goodjamp/HIDVideoStream
2653291606bf6cb3a7f135c682d77bee10392df7
89aa109f875ba5a931b3d04429463876f2be8c77
refs/heads/master
2021-09-29T14:48:46.727591
2018-11-08T16:15:35
2018-11-08T16:15:35
null
0
0
null
null
null
null
UTF-8
C
false
false
16,441
c
/* * The Clear BSD License * Copyright (c) 2015 - 2016, Freescale Semiconductor, Inc. * Copyright 2016 - 2017 NXP * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the f...
[ "aleksandr.gerasimchuk@developex.org" ]
aleksandr.gerasimchuk@developex.org
ab03869f2adc0ed02002d37a39f87a53fdab669e
45181479c15e604fe33b004eb323cecaa913c727
/rt-thread/rt-thread/components/net/lwip-2.0.2/src/netif/slipif.c
5ae6c299a55857570a0295b5374844b95c6c152a
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "BSD-3-Clause" ]
permissive
weimingtom/f1c100s_rt-thread
3b6b653f0606d066d2abed836325b7de9aaf4344
f7b8b51a848c393d137658bb5e8514bab63ad099
refs/heads/master
2023-03-04T14:37:59.444166
2020-02-08T09:59:34
2020-02-08T09:59:34
null
0
0
null
null
null
null
UTF-8
C
false
false
16,024
c
/** * @file * SLIP Interface * */ /* * Copyright (c) 2001-2004 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source c...
[ "9866328@qq.com" ]
9866328@qq.com
563013fb77e55a3c6e5061b8a7997006ffa8fd06
c5cb98ad5c3fa37ce761cb9b430b69e29a33141f
/clone/cloth/pink_cloth.c
e847a17b1305627f77319c1d4e672ee536980d4c
[]
no_license
cao777/mudylfy
92669b53216a520a48cf2cca49ea08d4df4999c5
266685aa486ecf0e3616db87b5bf7ad5ea4e57e4
refs/heads/master
2023-03-16T20:58:21.877729
2019-12-13T07:39:24
2019-12-13T07:39:24
null
0
0
null
null
null
null
GB18030
C
false
false
483
c
// pink_cloth.c #include <armor.h> #include <ansi.h> inherit CLOTH; void create() { set_name(MAG"粉红绸衫"NOR, ({ "pink cloth", "cloth" }) ); set_weight(1000); if( clonep() ) set_default_object(__FILE__); else { set("long", "这件粉红色的绸衫上面绣着几只黄鹊,闻起来还有一股淡香。\n"); set("unit", "件"); set("material", "cloth"); set("...
[ "i@chenxuefeng.cn" ]
i@chenxuefeng.cn
de27422bd4669c7ab7b6d7a73497f1ed5570edcc
0fbd393e538372cd77ce2de2ba7e08401127aa94
/BinaryHeap/BinaryHeap.h
30526d6f9382fc1ae09e7b4347dcee8deeedee07
[]
no_license
NoSoul/ToolsLib
3e9e90a689cb989384d94c249876ee68c58f5f21
9c6caec142c6053ce2f55734c70566ca58050d0a
refs/heads/master
2021-12-12T01:53:17.172152
2021-11-29T06:41:42
2021-11-29T06:41:42
18,164,191
0
0
null
null
null
null
UTF-8
C
false
false
1,038
h
#ifndef _BinaryHeap_H_ #define _BinaryHeap_H_ typedef int DataType_t; int DataCMP(DataType_t a, DataType_t b) { return a > b ? 1 : 0; } void BinaryHeapPush(DataType_t *array, int *len, DataType_t val) { ++(*len); int now = *len; while(now > 1 && DataCMP(val, array[now >> 1])) { array[now] = a...
[ "NoSoul.Love@GMail.com" ]
NoSoul.Love@GMail.com
572e67945ec63f23f5881481ff0411433a970275
f24a05833acfd0234eddb4aa478a1f3dc473436c
/micro_quadrotor/ANO_Settler_V2/ANO_Settler/ANO_CTRL.h
038c8b94feb973b0f3df3e0a7dc97faa0b78ea08
[]
no_license
MinhDinhTran/PID-Car-Control
ad22895b1904b715f77820cebfd6690c87005ddc
87cd34eb3adae7e3b24145de1ea780854ec1c60d
refs/heads/master
2021-12-24T05:58:25.074811
2016-09-03T03:23:03
2016-09-03T03:23:03
null
0
0
null
null
null
null
UTF-8
C
false
false
1,804
h
#ifndef __ANO_CTRL_H #define __ANO_CTRL_H #include "stm32f10x.h" #include "ANO_PID.h" #include "filter.h" /*======================================================================== 飞机控制参数 =========================================================================*/ #de...
[ "815128388@qq.com" ]
815128388@qq.com
c68c97267afce6522ad653cd7afeec7b66305d9c
882e579d0b9abea069fb9573f1c376ff3f5f7055
/v3_TMTDyn_hll_MORSE2019/Samples/Fabric/1. Passive/eom/codegen/mex/sprdmpF41/sprdmpF41_types.h
08d3efaee6aa58d8e377e010b32d498e9b7e8bde
[ "BSD-2-Clause" ]
permissive
LenhartYang/TMTDyn
f92d12d9d913a25eadac309670953ab302ffcfa2
134d89b156bdc078f6426561d1de76271f07259e
refs/heads/master
2023-03-27T12:34:16.250684
2021-03-25T13:40:01
2021-03-25T13:40:01
374,253,641
1
0
NOASSERTION
2021-06-06T02:47:07
2021-06-06T02:47:06
null
UTF-8
C
false
false
434
h
/* * Academic License - for use in teaching, academic research, and meeting * course requirements at degree granting institutions only. Not for * government, commercial, or other organizational use. * * sprdmpF41_types.h * * Code generation for function 'sprdmpF41' * */ #ifndef SPRDMPF41_TYPES_H #define SPRD...
[ "m.hadi.sadati@gmail.com" ]
m.hadi.sadati@gmail.com
6ac3e66356e5fdb9d0725dd234387bd11bb4ce6e
7652abbfe9b9a4d39ef3760a68a0e3425ad99c52
/Past Classes/CSO/Recitations/Before Midterm/pointers_and_arrays.c
81703b85ecc4e3139608ae8f62de1f9c2b8d6a13
[]
no_license
shrinaparikh/nyu
c0613e9c59887c7f4210d8f821d32cad2dfd1a0a
b3680fa0267860ba65b81381bf5560fd3f4338ae
refs/heads/master
2021-06-20T09:43:40.660685
2020-12-23T01:43:38
2020-12-23T01:43:38
151,174,863
0
0
null
null
null
null
UTF-8
C
false
false
289
c
#include <stdio.h> int main() { int i, x[6], sum = 0; printf("Enter 6 numbers: "); for(i = 0; i < 6; ++i) { // Equivalent to scanf("%d", &x[i]); scanf("%d", x+i); // Equivalent to sum += x[i] sum += *(x+i); } printf("Sum = %d", sum); return 0; }
[ "sp4681@nyu.edu" ]
sp4681@nyu.edu
933d2254a6de78598baa9244507c5bc2aaf4bbea
9740d2a4a8dc1e303c8ac96dabd01d564f6237f7
/Operations.h
8ab5242dc802148d0f37a1df020fa3d03cb47dcd
[]
no_license
hugocbp/hotel_booking_manager
5552f091dc902a22930e8497f2b8f17d40aa7ca7
27956356eb9f87e97a1a40497ae84bfda915dbcf
refs/heads/master
2020-07-11T10:33:31.469675
2019-10-04T18:31:45
2019-10-04T18:31:45
204,514,802
0
0
null
null
null
null
UTF-8
C
false
false
335
h
// OPTIONAL CLASS /** ** Program Name: Hotel Manager ** File Name: Operations.h ** Purpose: Optional class to count total operations of the program ** Author: Hugo Carlos Borges Pinto (@hugocbp) ** Date: May 17, 2019 */ #ifndef OPS_H_ #define OPS_H_ // Creates global variable to coun all loop iterations extern long lo...
[ "hugocbp@gmail.com" ]
hugocbp@gmail.com
0c94f4e819f0116261b58db9adef2950d12d9965
a0c4ed3070ddff4503acf0593e4722140ea68026
/source/XPOS/GDI/OPENGL/TEST/CONFORM/COVGLU/D.C
4f98362a0cba8bffd1d416e347e5b3bb517c2152
[]
no_license
cjacker/windows.xp.whistler
a88e464c820fbfafa64fbc66c7f359bbc43038d7
9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8
refs/heads/master
2022-12-10T06:47:33.086704
2020-09-19T15:06:48
2020-09-19T15:06:48
299,932,617
0
1
null
2020-09-30T13:43:42
2020-09-30T13:43:41
null
UTF-8
C
false
false
1,295
c
/* ** Copyright 2000, Silicon Graphics, Inc. ** All Rights Reserved. ** ** This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.; ** the contents of this file may not be disclosed to third parties, copied or ** duplicated in any form, in whole or in part, without the prior written ** permission of Silic...
[ "71558585+window-chicken@users.noreply.github.com" ]
71558585+window-chicken@users.noreply.github.com
a06a6f1a7d3fa6c9eb333d688c0591542fcf4cc7
8272157dbc691b84498feebeaf55264fbba3ae00
/getproclibstatic/getproclib.h
3b3699b7c05cb99b24a6ff38952abefca188eca3
[ "MIT" ]
permissive
ExpLife0011/getproclib
cc297dda64a83c7b50b806005708a484b8b13b96
43ad96e65b9f9485f02cc2f3c2c7e4b1effc5877
refs/heads/master
2020-03-10T13:44:52.972996
2015-07-29T13:15:47
2015-07-29T13:15:47
null
0
0
null
null
null
null
UTF-8
C
false
false
4,653
h
/* MIT License Copyright (c) <2015> <David Reguera Garcia aka Dreg - dreg@fr33project.org> 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 ri...
[ "dreguera@buguroo.com" ]
dreguera@buguroo.com
565f1f35c5dad564570503a0adc7eb0af606dba9
52c8ed39b32ccc7c0673278c1adea3638797c9ff
/src/arch/arm32/mach-rv1106/driver/clk-rv1106-mux.c
ba69990f1b5c4cc7a7a20b199b310ed070333491
[ "MIT" ]
permissive
xboot/xboot
0cab7b440b612aa0a4c366025598a53a7ec3adf1
6d6b93947b7fcb8c3924fedb0715c23877eedd5e
refs/heads/master
2023-08-20T05:56:25.149388
2023-07-12T07:38:29
2023-07-12T07:38:29
471,539
765
296
MIT
2023-05-25T09:39:01
2010-01-14T08:25:12
C
UTF-8
C
false
false
5,752
c
/* * driver/clk-rv1106-mux.c * * Copyright(c) 2007-2023 Jianjun Jiang <8192542@qq.com> * Official site: http://xboot.org * Mobile phone: +86-18665388956 * QQ: 8192542 * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Sof...
[ "8192542@qq.com" ]
8192542@qq.com
d3e778ee3e85634511a5fd3bf3f1ebb443199e75
d0dc556f8b1d18ecbadef182bafd97b632dd3104
/common/esp-idf-lib/components/ads111x/ads111x.c
0919600ec7269ef5883c40d4dccf36ba36ee4fad
[ "BSD-2-Clause", "MIT" ]
permissive
PacktPublishing/Internet-of-Things-with-ESP32
da3f2c57e2bd871b134b22841fd275c51f88d487
3ada8b905e53961940511636991a839059de7cd1
refs/heads/main
2023-02-08T13:58:32.585403
2023-01-30T10:03:23
2023-01-30T10:03:23
315,618,086
114
36
null
null
null
null
UTF-8
C
false
false
8,016
c
/** * @file ads111x.c * * ESP-IDF driver for ADS1113/ADS1114/ADS1115, ADS1013/ADS1014/ADS1015 I2C ADC * * Ported from esp-open-rtos * * Copyright (C) 2016, 2018 Ruslan V. Uss <unclerus@gmail.com> * Copyright (C) 2020 Lucio Tarantino (https://github.com/dianlight) * * BSD Licensed as described in the file LICE...
[ "ozan.oner@gmail.com" ]
ozan.oner@gmail.com
1edf0d18773bf63bc288472a3f062e7f0ca5bb88
38eb361bc13d4632b42ec15685391caa4c687745
/third_party/JavaScriptCore/include/JavaScriptCore/CollectorPhase.h
2074e2aadd6cecaa880385af65abfdcb3e1bc891
[ "Apache-2.0" ]
permissive
adler0518/kraken
3fdbfb6ee3e7e003e7a16e8c094bbb26890ce01a
5ec29e552563571beb28706c253a8f9ebd67d10f
refs/heads/main
2023-03-26T22:44:43.987541
2021-03-31T02:07:14
2021-03-31T02:07:14
null
0
0
null
null
null
null
UTF-8
C
false
false
48
h
#include "JavaScriptCore/heap/CollectorPhase.h"
[ "chenghuai.dtc@alibaba-inc.com" ]
chenghuai.dtc@alibaba-inc.com
8def10241ecbf68de2f9ac82bdd9a21e6241594a
fc4d607383b3d934db24102789494564b03ad105
/selection.c
3d660dffc5033615449521e0fde6abf6313ed810
[]
no_license
SergiiGlad/workspace
ebd3376f9a99cbeabe2b1c7eb0ad76a8fc18c9f8
8278e3ee65531445f4ca815a6118f644a227b5a9
refs/heads/master
2021-04-25T02:04:18.537431
2017-12-28T09:30:21
2017-12-28T09:30:21
115,606,325
0
0
null
null
null
null
UTF-8
C
false
false
1,054
c
#include <stdio.h> int sortc( int array[], int size); int main( void ) { int array[] = { 8,0,1,3,4,9,2,5,7,6,7,9,10 }; int size; int go; size = sizeof(array) / sizeof(array[0]); printf("size : %d\n", size); printf("Before :\n"); for( int i=0; i < size; i++) pri...
[ "gladseo@gmail.com" ]
gladseo@gmail.com
626a39c0bec2f85d475aab39db86de1d246141b8
acefb9032383e694cf7a93f0a4a0638d75a8a1e4
/selfdrive/common/version.h
348ff45913417a25ef42936026818a4afce97091
[ "MIT", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
UVA-DSA/OpenpilotWithVision
f577aebe43445dad58e73b4fadd59ced42d626c9
1dfc73c305107dac09e056e4ea750e2be1b9abef
refs/heads/master
2020-03-13T05:09:53.354395
2018-04-25T08:29:51
2018-04-25T08:29:51
130,977,280
1
0
null
2018-04-25T08:46:51
2018-04-25T08:46:50
null
UTF-8
C
false
false
40
h
#define COMMA_VERSION "0.4.2-openpilot"
[ "hrubaiyat@gmail.com" ]
hrubaiyat@gmail.com
b5981568800c1df1992876186e894365daea1306
e9b7d37912252e07970991d2e30849636e5191c1
/g_serial.c
05f86b72b8cb222f9d239d8be117e164ce31120d
[]
no_license
mirceatanase1994/gameoflife
755c6fd4668b47b466f3c804bcb4fc7faa94900e
6b4a9d3e92e01514df5c2c688d1aedb07d7b9009
refs/heads/master
2021-01-19T21:28:43.437040
2017-02-20T02:13:26
2017-02-20T02:13:26
82,506,394
0
0
null
null
null
null
UTF-8
C
false
false
1,627
c
#include "stdlib.h" #include "stdio.h" int main(int argc, char* argv[]){ int xvecini[8] = {1,0,-1,-1,-1,0,1,1}; int yvecini[8] = {1,1,1,0,-1,-1,-1,0}; int lin,col,i,j,nrIt,k,alive,l; char aux; FILE* read = fopen(argv[1],"r"); FILE* write = fopen(argv[3],"w"); fscanf(read, "%d %d", &lin, &col); //fscanf(read, "...
[ "mirceatanase1994@gmail.com" ]
mirceatanase1994@gmail.com
9f3bb90bceaf8417f9f928e751da6e234546ee99
4d1614ba0104bb2b4528b32fa0a2a1e8caa3bfa3
/code/dpdk/app/test/test_pdump.c
ad183184cee9098fc6dd67390d5e5f6b65856139
[ "MIT", "GPL-2.0-only", "BSD-3-Clause" ]
permissive
Lossless-Virtual-Switching/Backdraft
c292c87f8d483a5dbd8d28009cb3b5e263e7fb36
4cedd1403c7c9fe5e1afc647e374173c7c5c46f0
refs/heads/master
2023-05-24T03:27:49.553264
2023-03-01T14:59:00
2023-03-01T14:59:00
455,533,889
11
4
MIT
2022-04-20T16:34:22
2022-02-04T12:09:31
C
UTF-8
C
false
false
4,815
c
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2018 Intel Corporation */ #include <stdio.h> #include <unistd.h> #include <stdint.h> #include <limits.h> #include <rte_ethdev_driver.h> #include <rte_pdump.h> #include "rte_eal.h" #include "rte_lcore.h" #include "rte_mempool.h" #include "rte_ring.h" #include "...
[ "sarsanaee@gmail.com" ]
sarsanaee@gmail.com
0062144dd823b870c12b8c97676c19a3b77f32a0
ac69dcb06099d53fded92459001f6f572d9daf4d
/mutants/gnuplot-5.2.2/src/tables_c/tables_RIND_3.c
42000c068f04f4f222689802fa02fe0b9c2ba88d
[]
no_license
lzmths/tcc
215b70454dc2f048d19da01b756936fa5bd71fda
7919bad06ae82fb8908b4b9318bb6cc402d27a79
refs/heads/master
2021-09-04T07:38:45.237849
2018-01-17T03:36:53
2018-01-17T03:36:53
117,493,375
0
0
null
null
null
null
UTF-8
C
false
false
27,814
c
#ifndef lint static char *RCSid() { return RCSid("$Id: tables.c,v 1.155.2.1 2017/10/10 03:55:45 sfeam Exp $"); } #endif /* GNUPLOT - tables.c */ /*[ * Copyright 1999, 2004 Lars Hecking * * Permission to use, copy, and distribute this software and its * documentation for any purpose with or without fee is hereby...
[ "luiz@ic.ufal.br" ]
luiz@ic.ufal.br
25d50ba19ce54df2cd24ac30013358530a005c46
c84462fed944505922efe37630e5da120ede84de
/components/voice_assistant/include/aia.h
dfcc1181fec2ca7833a70daab47ebfd2b2f4bf02
[ "MIT", "LicenseRef-scancode-other-permissive" ]
permissive
stone-tong/esp-va-sdk
46c52195a4532fc8d2e1dfbec5a381cdd93c0e34
d2f67dbfb127fb8d48b708612304194070cb18be
refs/heads/master
2023-08-25T03:47:35.847499
2021-10-08T07:47:47
2021-10-08T07:47:47
null
0
0
null
null
null
null
UTF-8
C
false
false
2,038
h
// Copyright 2018 Espressif Systems (Shanghai) PTE LTD // All rights reserved. #ifndef _AIA_H_ #define _AIA_H_ #include "voice_assistant.h" #include "auth_delegate.h" #include <mqtt_client.h> #include <alexa_smart_home.h> /* Once assigned by the application, these should not be freed as long as the device is working...
[ "chirag.atal@espressif.com" ]
chirag.atal@espressif.com
987d258ff2b9b566aea45d0891a320f38ae69953
83b818c992ff787678365930a17b3da9c9f74596
/includes/philo_one.h
2efa1171e4e6f8f1279a103e67ec35c32a690ed0
[]
no_license
axesthump/philo
d859b5c05e530818348670b0900c31403caecf2d
ddaec66ded74dcb83e361765db408cabfa56f738
refs/heads/master
2023-01-08T17:14:30.657429
2020-11-13T17:19:26
2020-11-13T17:19:26
312,639,267
0
0
null
null
null
null
UTF-8
C
false
false
1,426
h
// // Created by Cave Submarine on 11/11/20. // #ifndef PHILO_PHILO_ONE_H #define PHILO_PHILO_ONE_H #include <unistd.h> #include <sys/time.h> #include <pthread.h> #include <stdlib.h> typedef struct s_args { int num_philo; int time_to_die; int time_to_eat; int time_to_sleep; int num_of_times_eac...
[ "casubmar@si-f1.kzn.21-school.ru" ]
casubmar@si-f1.kzn.21-school.ru
6a9888a8110533c69354af0403faddd51b2a49f8
306ccac7f385456cb284f932a1952279df544da4
/main.c
5f3e39ce2673dc95fac9deb1ff0a3aaa858408d3
[]
no_license
hsdhatt/rb-tree
4d5c9f8dc33ad2b023dd18db7f84d8d238ca018d
a682ff6ceef6ec9d793c37e02e0246d8e76fa9b7
refs/heads/master
2016-08-10T23:19:59.021677
2016-01-31T08:40:33
2016-01-31T08:40:33
49,702,484
0
0
null
null
null
null
UTF-8
C
false
false
1,301
c
#include "tree.h" struct tree_node *rootptr; void insert(struct tree_node **ptr, int input_val) { if (*ptr == NULL) { *ptr = (struct tree_node *)malloc((sizeof(struct tree_node))); (*ptr)->val = input_val; (*ptr)->left = NULL; (*ptr)->right = NULL; (*ptr)->height = -1; (*ptr)->color = RED; LOG("node %...
[ "09.harshdeep@gmail.com" ]
09.harshdeep@gmail.com
09e1e961b6fedfd39567622146d7073e698bcedf
473fc28d466ddbe9758ca49c7d4fb42e7d82586e
/app/src/main/java/com/syd/source/aosp/external/vixl/test/aarch32/traces/assembler-cond-rd-rn-operand-const-t32-sbc.h
7a80c8cd537e12203f5836c6c211c62d276d4f87
[]
no_license
lz-purple/Source
a7788070623f2965a8caa3264778f48d17372bab
e2745b756317aac3c7a27a4c10bdfe0921a82a1c
refs/heads/master
2020-12-23T17:03:12.412572
2020-01-31T01:54:37
2020-01-31T01:54:37
237,205,127
4
2
null
null
null
null
UTF-8
C
false
false
110,396
h
// Copyright 2015, VIXL authors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions ...
[ "997530783@qq.com" ]
997530783@qq.com
c11b5c5c18b9bec52f8f3052e1ecbbe976ccf730
d4b17a1dde0309ea8a1b2f6d6ae640e44a811052
/externals/mklfpk/include/ippdefs.h
4e8ed07f2d090b79b5e0fafd795dccd63fdac391
[ "Apache-2.0", "Intel" ]
permissive
h2oai/daal
c50f2b14dc4a9ffc0b7f7bcb40b599cadac6d333
d49815df3040f3872a1fdb9dc99ee86148e4494e
refs/heads/daal_2018_beta_update1
2023-05-25T17:48:44.312245
2017-09-29T13:30:10
2017-09-29T13:30:10
96,125,165
2
3
null
2017-09-29T13:30:11
2017-07-03T15:26:26
C++
UTF-8
C
false
false
5,182
h
/******************************************************************************* * Copyright 1999-2017 Intel Corporation * * 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.apa...
[ "vasily.rubtsov@intel.com" ]
vasily.rubtsov@intel.com
87f524a3529452c750202781a01e7e99d945efdc
5ccaeb278ef69bf41d803f9bf339101c39bf2136
/framework/peripheral/eth/processor/eth_p32mx320f128h.h
374ad80c3e0c367b080f694c89c191bca956dcbc
[]
no_license
Mytrex/Harmony
6de69d5ebbb8cb7769a9ee7bd0330264c1d6ed3a
32dceb018139e59a12c26044b9f0252d1c0d67c9
refs/heads/master
2021-03-16T09:42:26.915713
2016-11-02T08:25:20
2016-11-02T08:25:20
71,403,438
0
1
null
null
null
null
UTF-8
C
false
false
27,672
h
/* Created by plibgen $Revision: 1.31 $ */ #ifndef _ETH_P32MX320F128H_H #define _ETH_P32MX320F128H_H /* Section 1 - Enumerate instances, define constants, VREGs */ #include <xc.h> #include <stdbool.h> #include "peripheral/peripheral_common_32bit.h" /* Default definition used for all API dispatch functions */ #ifnd...
[ "jared@mytrexinc.com" ]
jared@mytrexinc.com
77ffaef4bc572c506373621af90d9f5160f140bb
5a0c4ce4ea56f3f44ae60ee1112f1e6e965b9364
/LibraryMFP.framework/Headers/LibraryMFP-Swift.h
58a361ee7a26c7ee033851399dd6001d7a3ded44
[ "MIT" ]
permissive
rajarahul12/LibraryMFP
ac270258a1477dfd419d2c93e01824370106aa94
7ed24ecadb163e57791d1fc1ce48e92ed21bb14e
refs/heads/master
2020-04-16T23:35:26.073189
2019-01-16T17:02:22
2019-01-16T17:02:22
166,011,082
0
0
null
null
null
null
UTF-8
C
false
false
6,587
h
// Generated by Apple Swift version 4.2.1 (swiftlang-1000.11.42 clang-1000.11.45.1) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" #if !defined(__has_include) # define __has_include(x) 0 #endif #if !defined(__has_attribute) # define __has_attribute(x) 0 #endif #if !defined(__has_feature)...
[ "rajarahul@Rajas-MacBook-Pro.local" ]
rajarahul@Rajas-MacBook-Pro.local
10261cb6f856847edcc2b81b7095cb3a80985b6a
96d536bd4a8b35b6f17952257df426fd5405cf2e
/Project/Advanced/HeaderFile.h
7cfb0cc73b17887e8ad61c09011cac04b5774002
[]
no_license
tristum/FlareTestDiscard
e72364ea4cbae813556ed27120a71d9834d91d76
cb2e555e8837f4053fcf53c7ec0fe50305c13c4f
refs/heads/master
2021-01-10T02:24:41.949952
2016-04-01T19:21:05
2016-04-01T19:21:05
51,393,685
0
0
null
null
null
null
UTF-8
C
false
false
83
h
#define aboutZombies 1000 #define firstName 1001 #define whatsNext 1002
[ "cmimoso@alertlogic.com" ]
cmimoso@alertlogic.com
2aa95f124ece962d6667b63fb33b4614cc5c5f5e
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/reactos/dll/win32/usp10/extr_opentype.c_GPOS_get_value_record.c
d33d5e9d7ef555a91e3f50cdf3d42d5f811120ac
[]
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,679
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
723d75edf01b0347f1b3204392b107e3933c103e
02bf5f365ae9900bcc2234b9b329efe5915b7532
/mqueue/mqueue_client.c
7bd4dc824a16c73f32144c493cdd5b118108c74d
[ "MIT" ]
permissive
PARKINHYO/BlackjackGame
70de4be7747abca5e3a2909ab515ce43faf5e472
0138a8b2384c77c3079dbb59cc43a2acb08e67ae
refs/heads/master
2021-06-27T09:43:08.209954
2021-04-10T06:19:12
2021-04-10T06:19:12
225,603,353
11
0
MIT
2019-12-31T11:57:38
2019-12-03T11:27:28
C
UTF-8
C
false
false
5,547
c
#include "common.h" #define KEY_VALUE_MAIN (key_t)60300 #define KEY_VALUE_MAIN2 (key_t)60301 #define PERM 0666 void* play_game(); void* set_shutdown(); void* send_msg(); void* recv_msg(); int msgid_Send_Main; int msgid_Recv_Main; pid_t pid; int nwritten; pthread_t threads[MAX_PLAYERS]; int my_sum; int dealer_sum; ...
[ "inhyopark122@gmail.com" ]
inhyopark122@gmail.com
b38cfbe692b31cc6b0005f9fc695a9b8aa93b5cb
cbd6c6a7c4e555e26c76dea6c827a3f36f8f449a
/SoftC/02/complex/complex_div.c
09c2f4b84a61a055327aad8e5a2ac71f5b8aa647
[ "MIT" ]
permissive
her0m31/Studys
8a71d4ae2552cf285d7a5e16b8a6c0f81e259106
f765310cd826356af04008a055905cade21fda4a
refs/heads/master
2020-12-24T08:46:39.155718
2016-08-17T16:48:51
2016-08-17T16:48:51
23,060,547
0
0
null
null
null
null
UTF-8
C
false
false
381
c
/* complex_div.c */ #include <stdio.h> #include "complex.h" struct complex div(struct complex x, struct complex y) { struct complex z; z.real = (x.real * y.real - x.imaginary * y.imaginary) / (x.real * x.real) + (y.imaginary * y.imaginary); z.imaginary = (x.real * y.imaginary + y.real * x.imaginary) / (x...
[ "her0m@her0ms-Air.local" ]
her0m@her0ms-Air.local
66bbfc0c770736f16f12c32d9a09c404eb94e358
62ce7ea592e696934b1508e50f6cfcb4527df74c
/scheduler_SJF.c
fed5967997cd470dd7e4e534884dcf0e31076d10
[]
no_license
AndrewLiu0725/2020_OS_Project1
0d1f0d9cbfea4e06e3bc79a4391a9cd3d9452902
8fd15dd7e46d92bc5675decc4ddd5ff59bf03460
refs/heads/master
2022-05-30T05:42:45.928383
2020-05-03T14:09:04
2020-05-03T14:09:04
259,917,023
1
0
null
null
null
null
UTF-8
C
false
false
1,833
c
#include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <limits.h> #include <string.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/syscall.h> #include "process.h" int find_shortest(Process *proc, int N_procs, int time){ int shortest = -1, excute_time = INT_MAX; for (int i = 0; i < N_procs;...
[ "e5n41kb9n@gmail.com" ]
e5n41kb9n@gmail.com
a5d16d0bdb0a64239f3691f33f69993f488e2a3f
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/247/863/CWE78_OS_Command_Injection__wchar_t_file_execlp_64a.c
5a01812da3bbd079e6d6272c02e393a68af78702
[]
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,561
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE78_OS_Command_Injection__wchar_t_file_execlp_64a.c Label Definition File: CWE78_OS_Command_Injection.strings.label.xml Template File: sources-sink-64a.tmpl.c */ /* * @description * CWE: 78 OS Command Injection * BadSource: file Read input from a file * GoodSource: Fi...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
7c6be219da0ffa4ed5490482f323f0d54d9a5053
d6ec83e5e19f565c28d39522e8ee090d67c17a5d
/src/mrb_libui.c
26b128f397753d70b2cd68714a5834a77de893a5
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bamchoh/mruby-libui
de2036c166c026833a2ae6a435d12cd3be6f8345
2d9c54e82ad4c61871243fa1a03501c0c30176ca
refs/heads/master
2021-08-24T07:05:04.650848
2017-12-08T14:48:55
2017-12-08T14:48:55
113,584,935
0
0
null
null
null
null
UTF-8
C
false
false
2,271
c
/* ** mrb_libui.c - LibUI class ** ** Copyright (c) bamchoh 2016 ** ** See Copyright Notice in LICENSE */ #include "mruby.h" #include "mruby/data.h" #include "mruby/variable.h" #include "mrb_libui.h" #include "ui.h" #include <stdio.h> #include <string.h> #include <stdlib.h> #include "mrb_window.h" #define DONE mrb_g...
[ "bamchoh@gmail.com" ]
bamchoh@gmail.com
f043250a751ebcbefbe7c8dc4ea1bf6a70cdfcb0
7d1798b4b15e1ca84689af394c49fb85e0497586
/aurbrokenpkgcheck.c
14ccebf642bdca98fe1d0e85c6cecfd251871205
[ "MIT" ]
permissive
popsUlfr/aurbrokenpkgcheck
ff159dc1c991e87d7c62fc184dbbe4e84f456d6d
a1d78a8d1fdb7d6f452a5f86b810e8cb3183ae56
refs/heads/master
2021-03-13T01:30:54.051133
2017-05-16T15:50:23
2017-05-16T15:50:23
91,476,687
0
0
null
null
null
null
UTF-8
C
false
false
23,109
c
/* * MIT License * * Copyright (c) 2017 Philipp Richter * * 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,...
[ "richterphilipp.pops@gmail.com" ]
richterphilipp.pops@gmail.com
de44696a1c697965265a1c80b9c082bd8a75034a
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/drivers/media/dvb-frontends/stb0899_algo.c
df89c33dac23c58301a60569a29fd322e564aef5
[ "Linux-syscall-note", "GPL-2.0-only", "MIT" ]
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
50,002
c
// SPDX-License-Identifier: GPL-2.0-or-later /* STB0899 Multistandard Frontend driver Copyright (C) Manu Abraham (abraham.manu@gmail.com) Copyright (C) ST Microelectronics */ #include <linux/bitops.h> #include "stb0899_drv.h" #include "stb0899_priv.h" #include "stb0899_reg.h" static inline u32 stb0899_do_div(u64...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
e957e836a5baf1da19fccb688d32fac1fcf06c17
6c285ce3906c24504581f0868a1371d00361f80e
/UNIDAD 1/Proyecto Ensamblador/Proyecto ensamblador.c
3160aaaf6ed15cbc88e17fc3d702af076cc170c8
[]
no_license
Lalitec1/lalitec99
fd6f3c0c0f3dace2dbaa2f5edadfe76e788fe65b
a7f61a794dc97aa635298185ecc407fb411e4a51
refs/heads/master
2021-08-28T16:19:07.017220
2017-12-12T18:08:56
2017-12-12T18:08:56
106,051,314
0
0
null
null
null
null
UTF-8
C
false
false
1,033
c
/**main.c Presente en pantalla de 10 en 10 los bytes de un arreglo que contiene un programa ejecutable para el procesador ARC (A Risc Computer) */ #include <stdio.h> #include <stdlib.h> unsigned char Byte[]={0xc2, 0x00, 0x28, 0x10, 0xc4, 0x00, 0x28, 0x14, 0x86, 0x80, 0x40, 0x02, 0xc6, 0x20, 0x28, 0x18};//0x18 ...
[ "lalitec99@gmail.com" ]
lalitec99@gmail.com
60ba1d5bb40590cfd16ab672722432efc5c86bb1
ed69832fb338e34f343abbf188b4503d7be2e824
/libftprintf/libft/get_next_line.c
ffd6c4748d1adba33270afcda56fdf63c0f272e4
[]
no_license
oozkaya/42_corewar
6561ba6c8a33759ea57a13cf9bcf05c087d5d904
b6c7bbf4b2774cf75b5001b47e6603cd1facdad3
refs/heads/master
2023-02-02T19:41:35.926299
2019-05-03T11:50:28
2019-05-03T11:50:28
322,843,917
0
0
null
null
null
null
UTF-8
C
false
false
2,298
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line.c :+: :+: :+: ...
[ "oozkaya@e1r12p8.42.fr" ]
oozkaya@e1r12p8.42.fr
00cabebbef4311806ce2be429343957cdbac84dc
f626e876ed8274181de8c0bb96d79901cb836430
/前馈+反馈LQR控制实验程序/Control_linear_rtwin_win32/rtmodel.h
2238449607a92b4928f4907d3ed9fcdf58470e1d
[]
no_license
BoZhu-SYSU/3-DOF-helicopter_modeling-identification-verification
6aca8e2ccd4924091a02d343e15ceec138c1da04
83125f3d6158dc1012bfe2cff789a28d845be6d7
refs/heads/master
2023-05-07T01:03:15.301614
2021-05-28T13:09:15
2021-05-28T13:09:15
371,642,709
6
3
null
null
null
null
UTF-8
C
false
false
724
h
/* * rtmodel.h: * * Code generation for model "Control_linear". * * Model version : 1.1019 * Simulink Coder version : 8.3 (R2012b) 20-Jul-2012 * C source code generated on : Wed Aug 17 19:48:18 2016 * * Target selection: rtwin.tlc * Note: GRT includes extra infrastructure and instrumentation for...
[ "zhubo5@mail.sysu.edu.cn" ]
zhubo5@mail.sysu.edu.cn
144a48d076963fdb482bc1724b2ced8c01a66316
bade93cbfc1f25160dfbe9493bfa83f853326475
/mwc/romana/relic/f/usr/include/sys/haiscsi.h
106602ae6c0478ed03c0fd62e3ea9bad217ee938
[ "BSD-3-Clause" ]
permissive
gspu/Coherent
c8a9b956b1126ffc34df3c874554ee2eb7194299
299bea1bb52a4dcc42a06eabd5b476fce77013ef
refs/heads/master
2021-12-01T17:49:53.618512
2021-11-25T22:27:12
2021-11-25T22:27:12
214,182,273
26
6
null
null
null
null
UTF-8
C
false
false
6,948
h
/*********************************************************************** * Module: haiscsi.h * * Constants and structures used to access SCSI devices through the * SCSI Driver in a Host Adapter inspecific manner. * * Copyright (c) 1993, Christopher Sean Hilton, All rights reserved. * * Last Modified: Fri J...
[ "gspurki@gmail.com" ]
gspurki@gmail.com
0f790d0b4017aa79cabdc405681e557af2eaa88b
71718b60860c68539175931114ec322a83a014d2
/static/capstone/arch/AArch64/AArch64Disassembler.c
22880efab5b9503b2eac15b13e1c9d470ce332fd
[ "BSD-3-Clause", "NCSA", "Apache-2.0" ]
permissive
killvxk/Janus
466ba3c3f41a410ea5c0afd2c2810861eaeede8b
f51381227e20a0f00ad6356ecf07c8b752d8ec33
refs/heads/master
2020-04-23T19:02:33.162511
2019-02-14T21:06:04
2019-02-14T21:06:04
171,388,739
1
0
Apache-2.0
2019-02-19T02:13:31
2019-02-19T02:13:30
null
UTF-8
C
false
false
48,477
c
//===- AArch64Disassembler.cpp - Disassembler for AArch64 ISA -------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "rkz20@cam.ac.uk" ]
rkz20@cam.ac.uk
fe75e8cc7da20b492d15370f292e8139f2f66ae2
46367579a54a09dd220dd9a678b1452f06897f11
/tags/hdf5-1_6_2/test/ttsafe_acreate.c
d5ed7b71e2f441d95c48bc1b087dfc9160240a52
[ "LicenseRef-scancode-llnl", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
TPLink32/hdf5
33ff24c9b6133f0f51cb6cc2b722fba7bb1777dd
0d6987c15284bd9f34c7e44452a152833d42a738
refs/heads/master
2021-05-31T01:15:39.463663
2016-04-14T23:02:09
2016-04-14T23:02:09
null
0
0
null
null
null
null
UTF-8
C
false
false
5,386
c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * T...
[ "(no author)@dab4d1a6-ed17-0410-a064-d1ae371a2980" ]
(no author)@dab4d1a6-ed17-0410-a064-d1ae371a2980
ae14cb90379ba1a9629c359164803732e978d9cf
91766ab9dba0fb155c373cfddab70481a76424c0
/network.h
3053334ef7927ca41a2c8a42f0304de023438e7f
[]
no_license
Alecppt/lyrebirdTweet
3df9104a70eb55d1bbecbae5caa1771e916dc249
7bfd2ec1173127e8e550bf924b3389f25c589005
refs/heads/master
2021-01-13T00:48:21.784670
2016-01-26T08:43:12
2016-01-26T08:43:12
50,415,089
0
0
null
null
null
null
UTF-8
C
false
false
322
h
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #include <netdb.h> #include <arpa/inet.h> #include <ifaddrs.h> #include <unistd.h> #pragma once #define BACKLOG 10 int socket_setup(); int getPortNum(int sockfd); void getIPAddr(char* ip)...
[ "cca169@sfu.ca" ]
cca169@sfu.ca
f41288c4981852b82ef664c0f8020a277fed3b12
0edbcda83b7a9542f15f706573a8e21da51f6020
/private/inet/mshtml/tried/triedit/resource.h
137d94c6d92e08037125c1b06812c92c280e6e25
[]
no_license
yair-k/Win2000SRC
fe9f6f62e60e9bece135af15359bb80d3b65dc6a
fd809a81098565b33f52d0f65925159de8f4c337
refs/heads/main
2023-04-12T08:28:31.485426
2021-05-08T22:47:00
2021-05-08T22:47:00
365,623,923
1
3
null
null
null
null
UTF-8
C
false
false
2,131
h
//{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved // Used by triedit.rc // #define IDS_PROJNAME 100 #define IDR_TRIEDITDOCUMENT 101 #define IDR_FEEDBACKRECTBMP 102 #define IDS_HTML ...
[ "ykorokhov@pace.ca" ]
ykorokhov@pace.ca
30357243a9ac767d04908924e763da26732f9d20
340a375029cbd87d774801299371f1c782b2f944
/include/my_temp_sens.h
5d8e61b94389b8af4e6e28e28360e6faa1f762da
[]
no_license
M4444/MS-project
b4e4ed5b35a6ba3ceb11dc659f8fd9ea32f12e83
b343b311ce2dc7e0bf2edbbdc45e02bedac2fab9
refs/heads/master
2020-03-21T11:57:28.997361
2018-06-25T01:43:22
2018-06-25T01:43:22
null
0
0
null
null
null
null
UTF-8
C
false
false
787
h
#ifndef _my_temp_sens_h_ #define _my_temp_sens_h_ #include <stm32f4xx_hal.h> #include "my_tim.h" /* my constants */ #define DS1820_ID (uint8_t) 0x10 /* my structures */ typedef struct temp_sens { uint16_t _dq_pin; GPIO_TypeDef * _dq_GPIO_port; float temp; uint16_t error_flag; } TempSens; /* my f...
[ "mc.cm.mail@gmail.com" ]
mc.cm.mail@gmail.com
d79d043e234666a7d11135098094248efc45ca98
bc75d6ae5eb56b79f02cf4acd5ec456f8340875e
/src/index.h
4d0fe853602e840989b32c8188fddead89c744d3
[]
no_license
wkkuna/music_generator
ab4b756b7f35a60a78df0d77efce2535bea15b08
07440f03e67699987ac309b3d299a1a98448fbaf
refs/heads/master
2023-04-02T21:52:44.276954
2021-04-10T21:03:28
2021-04-10T21:03:28
233,657,665
0
0
null
null
null
null
UTF-8
C
false
false
245
h
#ifndef INDEX_H #define INDEX_H #include <stdio.h> #include <stdlib.h> //#include <stddef.h> #include <string.h> #include <stdbool.h> #include <time.h> #define NUM_OF_CHORDS 834 #define CHORD_LENGHT 100 const char *separator = "$\n"; #endif
[ "wi256@o2.pl" ]
wi256@o2.pl
632fba6fc18c5c1a16e99099113fa406e1017c94
7baf8e219624f892d340d75a57d01081d4db0880
/src/symbols.c
1a3ef829050ad0a445ad4368c765727b077842ad
[]
no_license
mickael-guene/exe2obj
8006d6434afed7c2854c35f326530e5dd9562e2d
159d151f8f4fd3881672f525c81803ee5c05be81
refs/heads/master
2021-01-17T17:51:54.816319
2016-07-05T08:12:37
2016-07-05T08:12:37
60,621,393
0
1
null
null
null
null
UTF-8
C
false
false
2,331
c
#include <stdlib.h> #include <string.h> #include "symbols.h" #include "utils.h" #include "section.h" static char *e2o_find_symbol_name(Elf *elf, uint32_t st_name) { Elf_Scn *strtab; Elf_Data *d; d = e2o_find_section_data_by_name(elf, ".strtab"); if (d == NULL) display_elf_error_and_exit(); ...
[ "mickael.guene@st.com" ]
mickael.guene@st.com
2309c2f19c66764264ea3ab769a6bd864c44f632
57d8c8f129bfb7cd600fbc4f68f68d83e3451f68
/cupy/cuda/cupy_common.h
e1b2ac01e839dc6a929c78d5c0593aa34920a67d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
anurocks1/cupy
4f979c6b16ef7f53dcccebf944103e7ec7e3de3b
1011b8085228c978ffad2154aba4b31e71f97c14
refs/heads/master
2021-01-06T00:49:18.441306
2020-02-17T13:10:15
2020-02-17T13:10:15
241,181,747
2
0
MIT
2020-02-17T18:44:06
2020-02-17T18:44:06
null
UTF-8
C
false
false
413
h
#ifndef INCLUDE_GUARD_CUPY_CUDA_COMMON_H #define INCLUDE_GUARD_CUPY_CUDA_COMMON_H typedef char cpy_byte; typedef unsigned char cpy_ubyte; typedef short cpy_short; typedef unsigned short cpy_ushort; typedef int cpy_int; typedef unsigned int cpy_uint; typedef long long cpy_long; typedef unsigned long long cpy_ulong; typ...
[ "kamonama@gmail.com" ]
kamonama@gmail.com
080332078a234e946ed79e635af70dd697b9fb82
9670de11489d39c0923b11b371eacb89cbf20db2
/xt_KEYBRDLED.c
3b16b393c0baf1fe6bb8a8efbf7d1555c99d8186
[]
no_license
supermartian/xt_KEYBRDLED
77a7a286782c20e0de63979e2641334be2abf465
dad02c73c007f869c61caf7cc3849ab2f7969058
refs/heads/master
2016-09-06T14:41:21.880199
2012-11-12T01:05:35
2012-11-12T01:05:35
null
0
0
null
null
null
null
UTF-8
C
false
false
2,411
c
/* * xt_KEYBRDLED.c - netfilter target to make LEDs blink upon packet matches * * 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; version 2 of the License. * * This program is distributed i...
[ "supermartian@gmail.com" ]
supermartian@gmail.com
ef344213f993795f9208ee9cf48a277f71b08c89
50c1465a0c1abeeafdae1d1cb6c623ca63900e42
/grafika/btnArmory.h
528efdc1dc7597ad445d86d3860e0bf6c3c959ac
[]
no_license
siof/hellground-launcher
62f3579277ef9b45c37ef2c188a35b9d3c6cf0eb
7c607c87264eb213443e1ab6f95a10125f8f404b
refs/heads/master
2020-08-12T17:46:26.093391
2010-05-23T20:28:06
2010-05-23T20:28:06
214,812,269
1
0
null
null
null
null
UTF-8
C
false
false
20,828
h
#ifndef BTNARMORY_H_INCLUDED #define BTNARMORY_H_INCLUDED /* XPM */ static char * btnArmoryXpm[] = { "127 63 256 2", " c #6D92A5", ". c #1A72A9", "+ c #1D5170", "@ c #2E627E", "# c #40758F", "$ c #093554", "% c #376881", "& c #1D5574", "* c #84ABBC", "= c #235B79", "- c #688A9A", "; c #11...
[ "siof@siof.pl" ]
siof@siof.pl
f99a05d417f67388b33cffb87f65d36dab84e401
e4c82b7f3f0b00ef9ec41e40519ce4418243a792
/examples/drivers_bm/inc/led.h
e33309a60a1d3e87bfffb99555948afa2879e2bf
[]
no_license
sambranaivan/CIAA-Firmware
227f4b1d84fb1f9f5b048d3fc910c0f6b684d7bb
c4f688a50330d0d5ed15499c08aa5e17b75085f5
refs/heads/master
2021-01-22T23:07:23.526595
2017-06-21T20:55:36
2017-06-21T20:55:36
85,613,316
0
0
null
null
null
null
UTF-8
C
false
false
3,072
h
/* Copyright 2016, XXXXXXXXXX * All rights reserved. * * This file is part of CIAA Firmware. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright ...
[ "sambranaivan@gmail.com" ]
sambranaivan@gmail.com
464f9c8ad4c8b8fa80e3424c3459001557e13bd7
7d4176c878e8be73ffaa38c236f1a76528706c9f
/src/sys/scsi/scsi_tape.h
cc6f8570f734c7ead4a4c2438f583cf35b0b93e4
[]
no_license
roytam1/mirbsd-cvs
c06ea23d2b106658f9903fe65d351c480b72e72c
2a6f84cbc58f6ff22e1eeb7804df68d34c2b0a5c
refs/heads/master
2020-04-14T15:47:25.324452
2019-01-01T19:38:30
2019-01-01T19:38:30
163,906,352
1
0
null
null
null
null
UTF-8
C
false
false
8,599
h
/* $OpenBSD: scsi_tape.h,v 1.7 1998/01/07 17:28:38 deraadt Exp $ */ /* $NetBSD: scsi_tape.h,v 1.9 1996/05/24 02:04:47 thorpej Exp $ */ /* * Copyright (c) 1994 Charles Hannum. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the...
[ "" ]
4ae3d60c82ad0a184541b4426a71026ecb84d361
f79ef81e6e4e989ed14ed0283a9737f731101aab
/Unix Family/Linux.Urk/login/mailpath.c
4abf5cf49069b0457961af8181a5ee0af3cdb775
[ "MIT" ]
permissive
TheWover/Family
9d5597eda68aeee5e99de993176b6bd1366b57f1
f3ed1713c6b71823d8236b80148b60982dd906e1
refs/heads/master
2020-09-11T15:11:21.601776
2019-10-30T04:33:43
2019-10-30T04:33:43
222,106,609
3
4
MIT
2019-11-16T13:54:02
2019-11-16T13:54:01
null
UTF-8
C
false
false
2,495
c
#include "sys_defs.h" #include <stdio.h> #include <sys/param.h> #include <string.h> char *realpath(); #define _PATH_MAILDIR "/var/spool/mail" /* Macros to hide the differences between SunOS 4.x and SunOS 5.x. */ #ifdef USE_SYS_MNTTAB_H #include <sys/mnttab.h> #define _PATH_MTAB "/etc/mnttab" #define SETMNTENT(...
[ "57078196+vxunderground@users.noreply.github.com" ]
57078196+vxunderground@users.noreply.github.com
c485ea22d20c2bbaa3e39fd15dda2604814719f4
18f5c6c7dad3df550ae1236913c4e9192087aa67
/test/float32_unpack.c
6c29d9a57566252c505adf300924b20ec417a2b7
[ "MIT" ]
permissive
mohayonao/libvorbis.js
f51bd8ce934bcc076c1114762f7288557f535c30
c53084b29549bc6e4a702fd4b21d4613655f77af
refs/heads/master
2020-04-05T22:57:06.357833
2013-03-04T04:14:19
2013-03-04T04:14:19
8,370,164
1
0
null
null
null
null
UTF-8
C
false
false
870
c
#include <stdio.h> #include <math.h> /* 32 bit float (not IEEE; nonnormalized mantissa + biased exponent) : neeeeeee eeemmmmm mmmmmmmm mmmmmmmm Why not IEEE? It's just not that important here. */ #define VQ_FEXP 10 #define VQ_FMAN 21 #define VQ_FEXP_BIAS 768 /* bias toward values smaller than 1. */ float _flo...
[ "mohayonao@gmail.com" ]
mohayonao@gmail.com
a926a07ba4801a3f103d1690a857a151f2886e3e
b338c820570064317e21a648ba2e5608474cb248
/MPC_Code/Core7/app/MPC_LATENCY/LED_GREEN/src_5/cpu_5.c
2b125c9232bcb8b774e05b424ce8c3e41ebc29f0
[]
no_license
PallAxelSigurdsson/MPC-Platform
39580574288625e08407e6b8414bff2dd15e9f97
dfa3888657dae50a709c2aaefc60b946d80eae21
refs/heads/main
2023-06-21T14:35:01.251394
2021-07-22T15:23:39
2021-07-22T15:23:39
379,680,374
1
0
null
null
null
null
UTF-8
C
false
false
11,595
c
/* DESCRIPTION: * This code measures and reports the latencies of all functions * relating to the green LED peripheral. */ #include "system.h" #include "MPC.h" // The library holding all MPC OS commands. #include "INFO.h" // Information about the whole multicore system (central system.h) #include <sys/alt_irq....
[ "pas17@hi.is" ]
pas17@hi.is
75a068aa58a3ef475775c6f87473af013fcbe347
52263c795ed5b18f235347509839d66d2f015ff3
/lexer.c
fec078a380af9f27120d39783dc7ba8ed3c1dc2c
[]
no_license
Schamnad/CS-F342-Compilers
c213fa0af7a8ee9c75d6c693ee411b8c79d8b147
800d4f017a784474d39e0e2d138b355a95079d7d
refs/heads/master
2021-01-10T15:34:26.444017
2016-03-19T12:29:08
2016-03-19T12:29:57
54,264,031
0
0
null
null
null
null
UTF-8
C
false
false
7,767
c
/* COMPILER PROJECT-2015 Batch Number: 11 2011B2A7744P Sanjeed Schamnad 2011A7PS479P Shiva Manne */ #include<stdio.h> #include<string.h> #include<stdlib.h> #if ! defined _l_H #define _l_H 1 #include"lexer.h" #endif int DFA_table[STATE_SIZE][ALPHABET_SIZE]; terminal *FINAL[STATE_SIZE]; char temp_val[MAXSTRLEN]; ...
[ "sanjeed063@gmail.com" ]
sanjeed063@gmail.com
17787a08ca11667cac400399861036002140854e
5b3110de8aaa18bdc72770b56e7941481209923c
/0x01-variables_if_else_while/7-print_tebahpla.c
b8ab9d7f893bcb11b90298328886af36c7e580e3
[]
no_license
divinej/alx-low_level_programming
dcbe231332a8b92927a6a3131b33853b8e5adba8
f435cad9176e0581e6955698023c3ad4a40e465d
refs/heads/main
2023-08-22T11:46:50.984438
2021-11-02T13:56:28
2021-11-02T13:56:28
401,829,592
0
0
null
null
null
null
UTF-8
C
false
false
242
c
#include <stdio.h> /** * main - Entry point * prints the lowercase alphabets in reverse * followed by a new line * Return: 0 */ int main(void) { char i; for (i = 'z'; i >= 'a'; i--) { putchar(i); } putchar('\n'); return (0); }
[ "okodivinejustice@gmail.com" ]
okodivinejustice@gmail.com
fb3e169a181d0a3d764916eb15ff205a22d58c7e
85928c48de769b07867cd2145f2123d391e14f1b
/STM32F429_uCOS_III/STM32F429_uCOS_III/APP/TASK_thread_tel.c
9acc496c40dbe2b905351e99039c026e9f487bff
[]
no_license
pandy1208/git-github.com-pandy1208-home
a05149ba016939c90e18c609c1657f6b7742530a
56bb4d101b38af1eadb305e04f03891eb2b9cf13
refs/heads/master
2021-01-15T22:51:37.317751
2017-08-16T02:51:23
2017-08-16T02:51:23
99,919,125
1
0
null
null
null
null
GB18030
C
false
false
487
c
#include <includes.h> #include <task_variable.h> void task_thread_tel(void *p_arg) { OS_ERR err; OS_MSG_SIZE size; unsigned char *p_rev,*p_data;//p_rev指向动态内存头结点用于释放内存 //p_data指向数据用于查找 p_rev = OSQPend(TEL_Q,0,OS_OPT_PEND_BLOCKING,&size,(CPU_TS*)0,&err); //阻塞等待管道TEL_Q数据 /*数据处理*/ ...
[ "15968183760@163.com" ]
15968183760@163.com
5f65c149b19a80fc7dcdf73508c388b6ba09347c
fb708a7e0a3e76dfa42c63db2ead698bb78298f8
/srcs/read.c
3d21e8c8b71720ca44166daaeae1350fde8b68e6
[]
no_license
gabrieleficara/lem-in
0cd4a1fdff0bd632b922bee90be2f2ee6034d309
6a72aa74a208f784077fb93b069998cf8c811325
refs/heads/master
2020-03-22T10:04:38.266261
2018-07-05T17:13:08
2018-07-05T17:13:08
125,050,284
0
0
null
null
null
null
UTF-8
C
false
false
1,620
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* read.c :+: :+: :+: ...
[ "gficara@e1r4p10.42.fr" ]
gficara@e1r4p10.42.fr
0e08567c071db0a42327543cf2ea83407599e8df
0641d87fac176bab11c613e64050330246569e5c
/tags/release-2-4-d01/source/common/ucnv_io.c
0240df6ec46d74d2644d52b58e50c093394dffc8
[ "ICU" ]
permissive
svn2github/libicu_full
ecf883cedfe024efa5aeda4c8527f227a9dbf100
f1246dcb7fec5a23ebd6d36ff3515ff0395aeb29
refs/heads/master
2021-01-01T17:00:58.555108
2015-01-27T16:59:40
2015-01-27T16:59:40
9,308,333
0
2
null
null
null
null
UTF-8
C
false
false
35,354
c
/* ****************************************************************************** * * Copyright (C) 1999-2001, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** * * * ucnv_io.c: * initializes global vari...
[ "(no author)@251d0590-4201-4cf1-90de-194747b24ca1" ]
(no author)@251d0590-4201-4cf1-90de-194747b24ca1
940c7c38f1a8ed5950786b52ae39a27919fc07e4
230764d82733fac64c3e0eae1ce0a4030965dc4a
/third_party/gst-plugins-bad/ext/sctp/gstsctpdec.h
845fac4d41e1a7d5e07f95d71731f5ea009ba3bd
[ "BSD-3-Clause", "LGPL-2.1-only", "LGPL-2.0-or-later", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
isabella232/aistreams
478f6ae94189aecdfd9a9cc19742bcb4b4e20bcc
209f4385425405676a581a749bb915e257dbc1c1
refs/heads/master
2023-03-06T14:49:27.864415
2020-09-25T19:48:04
2020-09-25T19:48:04
298,772,653
0
0
Apache-2.0
2021-02-23T10:11:29
2020-09-26T08:40:34
null
UTF-8
C
false
false
2,392
h
/* * Copyright (c) 2015, Collabora Ltd. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following di...
[ "dschao@google.com" ]
dschao@google.com
fa90a9be276534b8750417059f04e76bc0db3cb2
74ca0502be3ea74703928bfa458e87a4335866f9
/isode-8.0/paradise/others/quipu/uips/de/util.c
e8574aeb4b7e2cc984ba20779de4869e8694701c
[ "Apache-2.0" ]
permissive
Kampbell/ISODE
a80682dab1ee293a2711a687fc10660aae546933
affd47713e792f7797150f237b10764577e5e067
refs/heads/master
2021-01-10T15:56:44.788906
2016-02-18T10:48:55
2016-02-18T10:48:55
52,000,870
8
0
null
null
null
null
UTF-8
C
false
false
9,369
c
/* template.c - your comments here */ #ifndef lint static char *rcsid = "$Header: /xtel/isode/isode/others/quipu/uips/de/RCS/util.c,v 9.1 1992/08/25 15:50:26 isode Exp $"; #endif /* * $Header: /xtel/isode/isode/others/quipu/uips/de/RCS/util.c,v 9.1 1992/08/25 15:50:26 isode Exp $ * * * $Log: util.c,v $ * Revisio...
[ "zosrothko@orange.fr" ]
zosrothko@orange.fr
020799e981d7775de3706e703051a5be75d66e8a
b77e54131dede28b3153d6c67f6c061ac739b7d7
/bionic/libc/include/sys/linux-syscalls.h
39fea219e1efdf3c0a9c25d2be4844346a18763b
[ "LicenseRef-scancode-warranty-disclaimer", "SunPro", "BSD-3-Clause", "CMU-Mach", "HPND", "ISC", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-ibm-dhcp", "BSD-2-Clause", "Martin-Birgmeier" ]
permissive
JeffreyLau/JJWD-K8_icsCream
2319be6b9b2abd5e9d4da1b5efe91a472539c6c2
a9790f6edf973d9e6b102f9be89c7b7f883f1cb2
refs/heads/master
2021-01-19T11:37:22.502930
2013-06-27T06:05:01
2013-06-27T06:05:01
10,987,138
4
2
null
null
null
null
UTF-8
C
false
false
19,501
h
/* auto-generated by gensyscalls.py, do not touch */ #ifndef _BIONIC_LINUX_SYSCALLS_H_ #if !defined __ASM_ARM_UNISTD_H && !defined __ASM_I386_UNISTD_H #if defined __arm__ && !defined __ARM_EABI__ && !defined __thumb__ # define __NR_SYSCALL_BASE 0x900000 #else # define __NR_SYSCALL_BASE 0 #endif #define _...
[ "meto.jeffrey@gmail.com" ]
meto.jeffrey@gmail.com
a839321ef34ba3656785d8f38e30a6b5822a7c39
df91a067ebe74199b0f8b8248ef3a3652e26b3ac
/src/libevent_test/hhdr.h
cd351ca10ee03bc7848319f827e146d590dd34ee
[]
no_license
xjp342023125/Code
6aba3ca9122f07bc49417365153220a50d1f9fb5
a6f6ae371fd157127b18b959c69ce0c2c76e6a22
refs/heads/master
2021-08-06T20:28:53.867527
2021-07-07T08:09:36
2021-07-07T08:09:36
79,343,868
5
2
null
null
null
null
UTF-8
C
false
false
286
h
#pragma pack(1) #pragma warning(disable: 4200) struct f_msg { int sum_len; int nType; char sz[]; }; struct up_log { char szpath[256]; char szname[100]; int len; char sz[]; }; struct up_log_ret { int ret; }; #pragma warning(default: 4200) #pragma pack()
[ "qt00@qq.com" ]
qt00@qq.com
eb27e0851a3f997d5d7827f6be94ea99c67a13c8
306b6f3bda83a13810125e439fe43debf71f1942
/0.2.6/src/wl/sys/wlc_scb.c
888e2e9db0b7fcca6308f9f12eff65b280ee541b
[]
no_license
yskcg/wifi-bcm
bfe3cc2861f9e4196d4a0da74bd42e007b1ba79a
ac5c76886fb2baf025501ca38c16ecacde8f815c
refs/heads/master
2021-01-21T16:27:54.772401
2017-07-08T16:23:31
2017-07-08T16:23:31
91,888,046
6
0
null
null
null
null
UTF-8
C
false
false
50,906
c
/* * Common interface to the 802.11 Station Control Block (scb) structure * * Copyright (C) 2010, Broadcom Corporation * All Rights Reserved. * * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; * the contents of this file may not be disclosed to third parties, copied * or duplicated in any...
[ "yangshaokun@joyotime.com" ]
yangshaokun@joyotime.com
ba361480a60923e8bf397eeee0b7c322397e74ec
16d043d7afc88455781d68c8be3cb12cb745ba63
/cuda/mcuda/MCUDA/include/mcutil.h
8cdd8bf54a6c1e68dd1c7b7ae52d1011963be455
[]
no_license
peeyush113/backups
6028951470cff8c85c7f2c622807fd246b16c936
0562e738184eaa7d96678177a6fb9fd2b972b48b
refs/heads/master
2020-07-03T06:23:49.209996
2019-08-11T21:58:14
2019-08-11T21:58:14
201,818,797
1
0
null
null
null
null
UTF-8
C
false
false
824
h
/* * (c) 2008 The Board of Trustees of the University of Illinois. */ #ifndef MCUDA_UTILS #define MCUDA_UTILS #define CUT_SAFE_CALL(x) (x) #define CUDA_SAFE_CALL(x) (x) #define CUT_CHECK_ERROR(x) #if defined(__cplusplus) extern "C" { #endif void cutCreateTimer(unsigned int* timer); void cutStartTimer(unsigned i...
[ "peeyush113@gmail.com" ]
peeyush113@gmail.com
7ec5d97f6807bd944959e7489c90e9300758713a
ed28e9fc5011bad460f134eb5fe344e18983d0e3
/slprj/_cprj/m_EXjWXzdNbMLBy0VqWnKjsC.h
c8e4ad1c4fe609417ac22aa715f1a3a55df43123
[]
no_license
seccortessa/sim_files_tesis
e2697a56533d40ebbaa344125a16fc5c2f62b0c4
a1bb6904bb11b105b7c9523f192f98206a8ab799
refs/heads/master
2023-01-31T03:00:18.353259
2020-12-12T04:02:00
2020-12-12T04:02:00
298,026,509
1
0
null
null
null
null
UTF-8
C
false
false
7,117
h
#ifndef __EXjWXzdNbMLBy0VqWnKjsC_h__ #define __EXjWXzdNbMLBy0VqWnKjsC_h__ /* Include files */ #include "simstruc.h" #include "rtwtypes.h" #include "multiword_types.h" #include "slexec_vm_zc_functions.h" #include "slexec_vm_simstruct_bridge.h" #include "sl_sfcn_cov/sl_sfcn_cov_bridge.h" /* Type Definitions */ #ifndef ...
[ "seccortessa@unal.edu.co" ]
seccortessa@unal.edu.co
cc9fbe2e0c31cb370023e9c0c0501c0a296de073
9d9aca7551e69a2538fb47d001bbdc3eea8c3f08
/src/utils/dynamic_string_utils.c
95f853af9a6edeea6703c310cd9cace33771123f
[]
no_license
hugoBuissez/42sh
d226d09b36d5ec8d70358d54baee1969d42e07ca
ad85735ce87edbcaad102b5d68f54e738b309ff6
refs/heads/master
2023-03-30T12:24:33.448736
2021-03-29T19:19:16
2021-03-29T19:19:16
337,054,088
0
0
null
null
null
null
UTF-8
C
false
false
318
c
#include <string.h> #include "dynamic_string.h" #include "dynamic_string_internals.h" size_t string_len(struct d_string *string) { return string->len; } char *string_value(struct d_string *string) { return string->buf; } char *string_value_copy(struct d_string *string) { return strdup(string->buf); }
[ "hbuissez@gmail.com" ]
hbuissez@gmail.com
87281360205c4e8172a2170fe6b875c0fff8c74f
4bda80208070befaa2719f0ae3379a2ac5179f20
/02-linux-2.6.22-lab126/include/linux/usb/composite.h
95efc89301f16824b17f6d3dedfcd4546e661c6b
[ "MIT" ]
permissive
nahtethan/dxg-display
c8123be88b018ca9cbd5d47c17a5c7b047822edf
353d8c623042c2de78112d829c26a77378bc8e30
refs/heads/master
2021-07-26T16:06:05.524124
2020-06-05T16:11:00
2020-06-05T16:11:00
41,666,422
92
18
null
2016-11-22T03:58:15
2015-08-31T09:08:04
C
UTF-8
C
false
false
16,016
h
/* * composite.h -- framework for usb gadgets which are composite devices * * Copyright (C) 2006-2008 David Brownell * * 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 ...
[ "181545689@qq.com" ]
181545689@qq.com
5c4615af711d78749e7655860f7dee535986c2cd
41f705c9892a3d339d72a546803340a6ab41af56
/code/KEA128_BLDC_Sensorless/Sources/Peripherals/osc.c
b1c4882a295e2346587ec52aa7070c043563bc18
[]
no_license
reyno123456/bldc_kea128
edae81adb7c7977967739a9257a0250a4bb7551d
3f25def01cb2149d1062a8aa90876b1466ab586d
refs/heads/master
2021-08-27T20:22:10.757724
2017-11-28T07:12:08
2017-11-28T07:12:08
112,298,841
0
0
null
null
null
null
UTF-8
C
false
false
1,176
c
/******************************************************************************* * * (c) Copyright 2014 Freescale Semiconductor * ****************************************************************************//*! * * @file osc.c * * @author B06050 * * @version 1.0.2.0 * * @date Jul-3-2014 * * @br...
[ "reyno.wu@foxmail.com" ]
reyno.wu@foxmail.com
1a84fd48db74e0b1d33acc91009783f1086d8965
f363fdb9445d8dec088fb02c8faae8e23570a33e
/d/mingjiao/obj/bag.c
d9ad524752f60078e1e2a34f5de2050b84bd441a
[]
no_license
MudRen/zjmud
0999a492ac0717911c047936ee2c696b3b5cb20a
c56a166380d74858d7b4f0ba2817478ccea6b83d
refs/heads/main
2023-07-24T21:02:00.246591
2021-09-07T12:50:20
2021-09-07T12:50:20
403,973,627
1
1
null
null
null
null
GB18030
C
false
false
1,051
c
// bag.c #include <ansi.h> inherit ITEM; void create() { set_name("油布包", ({ "bag", "bao" })); set_weight(200); if (clonep()) set_default_object(__FILE__); else { set("unit", "个"); set("long", "这是一个油布包裹。\n"); set("value", 500); set("material", "cloth"); } set("book_count", 0); } void init() { if (th...
[ "i@oiuv.cn" ]
i@oiuv.cn
ce3257df27c9ca159eb2b44594d23cce7b01e0f8
45a175e1a470bf15f4a2aa5b066250d6f8ec5327
/embox/src/profiler/tracing/no_trace.c
e7ebc4585e357a421dbd9651566018fd80530d77
[ "BSD-2-Clause" ]
permissive
Walkingmind/embox
8315ee532d9e0a0ccd5e566bf4feac5ffe58d683
67cc5f73466e1a4c33891b946fc8e8217ce26ade
refs/heads/master
2021-01-01T17:22:48.903024
2015-04-14T20:24:43
2015-04-14T20:24:43
35,509,406
2
0
null
null
null
null
UTF-8
C
false
false
435
c
/** * @file * @brief * * @author Anton Kozlov * @date 29.04.2013 */ #include <stddef.h> #include <profiler/tracing/trace.h> time64_t trace_block_diff(struct __trace_block *tb) { return -1; } time64_t trace_block_get_time(struct __trace_block *tb) { return -1; } int trace_point_get_value(struct __tra...
[ "drakon.mega@5c469cbc-2eb3-11df-bba7-995ec2794b1c" ]
drakon.mega@5c469cbc-2eb3-11df-bba7-995ec2794b1c
47621517ba6449a5db63037d58bfd25a60cbbbea
dfede5776cd9aeb6a814d61a4179206af2578f4e
/RPI/OPSYS15F/notes/09-10-15/fd-open-redirect.c
937341169f2cf7849a340daaa87258ec3dd753b0
[]
no_license
chocolatemelt/misc
ecc4d5903565313519358f96c4d2e165c89444bd
e1044f3e0b3e14b16c03c51d3e82ced2c10a5f9f
refs/heads/master
2021-06-23T20:43:53.226758
2017-08-27T20:56:36
2017-08-27T20:56:36
32,169,548
0
1
null
null
null
null
UTF-8
C
false
false
1,340
c
/* fd-open-redirect.c */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int main() { char name[80]; strcpy( name, "testfile.txt" ); /* name: "testfile.txt\0" */ /* ^^ ...
[ "kzhaaang@gmail.com" ]
kzhaaang@gmail.com
600963bd956149f1b2ea3e070a958698980051e0
9fe295bccc24fff067921a69efeae8523323bc6d
/shoes/native/gtk/gtkeditline.c
c7a587ea97e275cbb91ce52b0362277cf2a0777b
[ "MIT" ]
permissive
val461/shoes3
9265c5c9a5dfee558abdacae23bc4bba3b84d740
323e544d91d53a43670cab474cee269a1aa1d0e6
refs/heads/master
2021-08-23T03:43:59.243535
2017-12-02T03:32:43
2017-12-02T03:32:43
null
0
0
null
null
null
null
UTF-8
C
false
false
1,769
c
#include "shoes/app.h" #include "shoes/ruby.h" #include "shoes/config.h" #include "shoes/world.h" #include "shoes/native/native.h" #include "shoes/types/native.h" #include "shoes/internal.h" #include "shoes/native/gtk/gtkentryalt.h" #include "shoes/native/gtk/gtkeditline.h" SHOES_CONTROL_REF shoes_native_edit_line(VA...
[ "ian.trudel@gmail.com" ]
ian.trudel@gmail.com
37028eb6a3e545223f7f85f697d317756dddee04
78a2c3aa40f73038cc34708719f2d047ce46a0cd
/lex.yy.c
87890b813b8359e4bfa2eef8fa2019c47d5e4943
[]
no_license
fareyduran/Compiler_1
78798f8b4e6284e96f4482b6b391f829649c9d66
a74ee64513133914ee655abc84b304dc22c3e14a
refs/heads/master
2022-11-15T12:21:23.762206
2016-02-28T20:48:11
2016-02-28T20:48:11
null
0
0
null
null
null
null
UTF-8
C
false
false
54,618
c
#line 3 "lex.yy.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific...
[ "farey.duran@gmail.com" ]
farey.duran@gmail.com
68eeeb84c8d955af76bca65e578796fde7276871
4a7d20f21763809b9a061b95d1f308055f5a3fdf
/binarisation/bin_treshold.c
052676fb3be42becbe987e51239967f5295b5c5c
[]
no_license
multun/OCRe
ecd6b1bd57de25a91d4eea75edaa706a3b6b553e
c83b0a39af5136aa34e6921df1974a0efffad081
refs/heads/master
2021-01-19T03:09:44.697167
2016-12-05T14:54:45
2016-12-05T14:54:45
67,486,305
0
0
null
null
null
null
UTF-8
C
false
false
609
c
#include <stdlib.h> #include "binarise.h" #include "../bitmap/img.h" void bw_img_treshold(unsigned char treshold, t_bw_img *img) { unsigned int width = img->width; unsigned int height = img->height; for(unsigned int x = 0; x < width; x++) for(unsigned int y = 0; y < height; y++) { unsigned int off...
[ "victor.collod@epita.fr" ]
victor.collod@epita.fr
e5a21f57abe8367f9a69e7f833e06b6679247c80
ddef162b2d614f63ab8361c880ca75533b04b32e
/demo.c
d9cd069743860f46e264c917396698e9cc017f4c
[]
no_license
air2013/libRockey
9dac86fbc21603b2e0e008774d22bb65e2c792ef
f33739e76b89ba7be00cc675e60d1b703b69f0f0
refs/heads/master
2020-04-06T17:04:21.095548
2015-07-21T07:02:33
2015-07-21T07:02:33
null
0
0
null
null
null
null
UTF-8
C
false
false
685
c
#include <stdio.h> #include "utils.h" #include "utpm_api.h" int main() { short pcrnum = 0x7; char digest[] = { 0x22, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff}; if (utpm_pcr_extend(pcrnum, digest) != 0) { pr...
[ "johnxn@foxmail.com" ]
johnxn@foxmail.com
b0b1bff7442ffaf7c1d3b562d1b3e5a5d8293fe7
2a76e1899a814a2aa9bae18cc9bb9cc73372bba9
/testing/icgen/random_verschillende_resoluties_N-GenIC/gadget3_64/subfind_cont.c
4b761d5f8fdb1f112f1f46ea4f3e01da7d2193d2
[ "Apache-2.0" ]
permissive
egpbos/egp
588ab3d18eef2e9bdae60c571dd602924bab6932
5e82c2de9e6884795b4ee89f2b15ed5dde70388f
refs/heads/master
2020-04-25T10:45:57.675997
2020-01-27T15:54:14
2020-01-27T15:54:14
172,720,830
0
0
null
null
null
null
UTF-8
C
false
false
10,389
c
#include <mpi.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <gsl/gsl_math.h> #include <sys/stat.h> #include <sys/types.h> #include "allvars.h" #include "proto.h" #ifdef SUBFIND #include "fof.h" #include "subfind.h" /*! Structure for communication during the density comp...
[ "pbos@astro.rug.nl" ]
pbos@astro.rug.nl
c18d87f406735461c406d258422dc7c13a81cc7b
6ef6213d2fa39d1d0ab7e2373d882b9d263e8c6d
/ti_components/cg_tools/linux/ti-cgt-c6000_8.2.4/lib/src/atanhf.c
a0b09e661b1dfb93f3df7bfa946fc04c4f2b651b
[]
no_license
Zhangh2018/PROCESSOR_SDK_VISION_03_06_00_00
9c380d3167b156a11a8f21814e94ac5550cddc87
05c72de5d031006c7565d4234abd53670a926acd
refs/heads/master
2021-10-16T13:43:05.313842
2019-02-11T09:10:44
2019-02-11T09:10:44
null
0
0
null
null
null
null
UTF-8
C
false
false
2,955
c
/****************************************************************************/ /* atanhf.c v8.2.4 */ /* */ /* Copyright (c) 1997-2018 Texas Instruments Incorporated */ /* h...
[ "yukichen@otobrite.com" ]
yukichen@otobrite.com
681eb4d8341dded445241d819855b4f7f7cb44d9
4c521d6be326ab8fe574e90c5023ecd95e4cfc15
/main.c
7a74ccc52eb6980aaf4b93ef35bb5e48cbfcd3c1
[]
no_license
Mike-show/BonusProject
c4f3e84ef2a62294be6ce1c2b164233cb8db9ab7
ae3b90d7db509023444e7814fa18f952e8cfc0f5
refs/heads/master
2023-04-14T06:28:13.116011
2021-05-02T15:04:46
2021-05-02T15:04:46
363,583,920
0
0
null
null
null
null
UTF-8
C
false
false
961
c
#include "Wlan.h" int main(void){ system(CMD); int Count; FILE *Data; Data = fopen("wlan.txt", "r"); char Choice = '\0'; if(Data != NULL){ Count = WlanCount(Data); printf("%d WLANs have been found!\n\n", Count); const int SizeWlan = sizeof(struct ssid); struct ss...
[ "e2002026@DESKTOP-N6DCJCN" ]
e2002026@DESKTOP-N6DCJCN
6768b81c1820aa74ee43e72bf88812a00df5642b
e5b45ef28d128f072e5cc318371731b0fbdd4399
/DataStructure/Tree/BinaryTree/BinaryTree/LinkedQueue.c
dd4c2ddac6548ea823c1cf46c05ec72b2b660a17
[]
no_license
KianaGX/test
8e12550bef48f689d9d9abace0bd1efefe045586
15ba7dcd6cf114b6ca45a4f8442f08c202bfaff9
refs/heads/master
2022-12-08T08:00:03.152204
2020-08-29T15:42:56
2020-08-29T15:42:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,074
c
#include "BinaryTree.h" #include "LinkedQueue.h" void QueueInit(Queue* q) { q->front = q->rear = NULL; } DataType QueueFront(Queue* q) { assert(q); return q->front->val; } DataType QueueBack(Queue* q) { assert(q); return q->rear->val; } int QueueEmpty(Queue* q) { return q->front ? 0 : 1; } int QueueSize(Que...
[ "756687451@qq.com" ]
756687451@qq.com
f14c1817cd3baa4613c4c7510c4b367ba5a67976
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/media/usb/cx231xx/extr_cx231xx-i2c.c_cx231xx_i2c_mux_unregister.c
2bb4865bfe7f8ebe5de35cbfb65d2c612f2ce254
[]
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
594
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
8bc702e071187dde4bc22221ffcf8524b87828b5
0641d87fac176bab11c613e64050330246569e5c
/branches/mishonok/regex-2009/source/tools/gennorm/store.c
ddd4f7fd8f9a9154ef78ab3364d9d3b81c0f5458
[ "LicenseRef-scancode-unicode", "ICU" ]
permissive
svn2github/libicu_full
ecf883cedfe024efa5aeda4c8527f227a9dbf100
f1246dcb7fec5a23ebd6d36ff3515ff0395aeb29
refs/heads/master
2021-01-01T17:00:58.555108
2015-01-27T16:59:40
2015-01-27T16:59:40
9,308,333
0
2
null
null
null
null
UTF-8
C
false
false
77,622
c
/* ******************************************************************************* * * Copyright (C) 1999-2010, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * file name: store.c * encoding: US...
[ "mishonok@251d0590-4201-4cf1-90de-194747b24ca1" ]
mishonok@251d0590-4201-4cf1-90de-194747b24ca1
14f2918893608dcbda814d000ec27731854b2efb
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/media/usb/gspca/extr_stk1135.c_stk1135_camera_disable.c
e22540920d879d43fd93bf2f3e8ff9b920e0cf26
[]
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,635
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
9dce21efba513ad9bc87f118731c4b5cb914e606
9d107a4d6451b6d352ed434fc3fa1bdec3c5791c
/sqlite/splitsource/mem1.c
ed3ff250d8fd0c5cff5fa6c7237784fc2cd619e5
[]
no_license
HarrtTong/Bitcoin-History
d50c7476452fe4f1fa6c6634eb37b10c5f7db67a
ef06995188b4ccb3126d56710ada272c278169f8
refs/heads/master
2020-05-23T01:08:02.873643
2014-05-15T00:57:17
2014-05-15T00:57:17
null
0
0
null
null
null
null
UTF-8
C
false
false
3,885
c
/* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************...
[ "shenjian74@gmail.com" ]
shenjian74@gmail.com
9560b3da1e2b04962d88f6882a32ae35454a2387
ba1bc65118e9d130ccb4ae96a29fafcc7fd27a54
/src/VmCommon/src/fields.h
5fb8a19b2617e591895cd9d45986dc3a097a59db
[]
no_license
ganyao114/j2me
9497fb1345f6cecf35d8e5d50e10057a333204e2
bcc1d7ea68f0764b726023431cd8cee2b9acbf0c
refs/heads/master
2020-03-27T01:10:12.121310
2017-08-01T03:24:03
2017-08-01T03:24:03
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
9,997
h
/* * Copyright © 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * */ /*========================================================================= * SYSTEM: KVM * SUBSYSTEM: Internal runtime structures * FILE: fields.h * OVERVIEW: Inter...
[ "wychenjiechen@jd.com" ]
wychenjiechen@jd.com
37fdefe38fec1a1a1cc3199a9b1d36abc1eea196
db573dfca63e68963de9795a30e77534079385ce
/C-Program-Solve/string-cut.c
8421572cfb40018fe1af2a5fa520ad80d2506f5c
[]
no_license
nibedika/C-Programming
72cf4b1e5848f5edfb4f968c7ddfc246987e253a
208a72d883c3da9adae17ec888f1bad7187fb6cb
refs/heads/master
2022-12-25T02:23:19.321774
2020-09-12T22:23:30
2020-09-12T22:23:30
295,020,817
0
0
null
null
null
null
UTF-8
C
false
false
145
c
#include<stdio.h> #include<string.h> int main() { char s1[10]="Nibedika"; char s2[10]=" Dhar"; strcat(s1,s2); printf("%s",s1); }
[ "nibedikadhar1712@gmail.com" ]
nibedikadhar1712@gmail.com
32f9ac09c66b72625716729cdd9a49b242d4ebe4
2d618311750fbd45a026ce89d287edcc2ca6f53c
/20170926/quantityBreak.c
9217fc3488c9be1b86478a46e3489c95b69e95e4
[]
no_license
Suzyy/C_Practice
257061e8f48180e274a77fff9a3a06964d46bbdf
b0faa3b63c502cc79f025185f39fda1da9f8932e
refs/heads/master
2021-09-14T04:01:46.533591
2018-05-08T03:55:46
2018-05-08T03:55:46
116,067,356
0
0
null
null
null
null
UTF-8
C
false
false
922
c
#include <stdio.h> main(){ int quantity; float price; float discountRate; float discountAmount; float salesAmount; printf("Please enter a quantity: "); scanf("%d", &quantity); printf("Please enter the price: "); scanf("%f", &price); if((quantity >= 1)&&(quantity <= 99)){ discountRate = 0.00; } else i...
[ "Suzy@isujiui-MacBook-Pro.local" ]
Suzy@isujiui-MacBook-Pro.local
8fab794a02d9e03f26cae2099f7e1fa7bbec0e54
5d52c6480d1321dea2d15b5ee46685bde993f95a
/kelley_pohl/chapter_6/find_roots/fct.c
373e4d8c2ac45c78757cf0dd5f07f8c4999e3a09
[]
no_license
rdp84/c-exercises
7c8bcb52cb97f2c5c81f137fdd739f20812406d1
3f8e44a99e473232a145b3247f27b66f04fa599b
refs/heads/master
2023-08-07T15:33:59.525680
2022-09-22T16:28:36
2022-09-22T16:28:36
119,397,230
0
0
null
2022-09-22T16:28:37
2018-01-29T14:59:48
C
UTF-8
C
false
false
110
c
#include "find_root.h" dbl f(dbl x) { return ((x * x * x * x * x) - (7.0 * x) - 3.0); /* x^5 - 7x - 3 */ }
[ "pearson.bobby@gmail.com" ]
pearson.bobby@gmail.com
7621f686f4f137181a8477b3f7270dd9ce2e0214
20673ba95c7aae14500531d3bb909ec3a10f2553
/src/renderer.c
f8917f4913913cbba246544337a0608ee7d427e8
[]
no_license
NaviRice/renderer
514bd73791d91af8d8be057aea9986c470e0d6ca
9e138968a3b588e36da2623395495a1b17e9527f
refs/heads/master
2021-09-12T19:24:51.640404
2018-04-20T03:33:30
2018-04-20T03:33:30
110,404,707
1
0
null
2017-12-02T22:10:26
2017-11-12T04:28:52
C
UTF-8
C
false
false
2,944
c
//Sys includes //local includes #include "globaldefs.h" #include "renderer.h" //#include "glmanager.h" #include "glfwmanager.h" //init #include "glmanager.h" //init #include "cvarmanager.h" #include "matrixlib.h" #include "entitymanager.h" //init #include "contextmanager.h" #include "headclient.h" #include "navicli...
[ "roboman2444@gmail.com" ]
roboman2444@gmail.com
9bf7c8daba76274879806ec7f51df892924de5ea
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/base/pnp/setupapi/devicon.c
f7fa35b67f8848ba8cb517c0752cb3ac869cde48
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C
false
false
57,547
c
/*++ Copyright (c) 1993-2000 Microsoft Corporation Module Name: devicon.c Abstract: Device Installer routines dealing with retrieval/display of icons. Author: Lonny McMichael (lonnym) 28-Aug--1995 Notes: You must include "basetyps.h" first. --*/ #include "precomp.h" #pragma hdrstop #include <...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
1f6ca9d308a1aa2bb4a6be4aa14df4a1a9607136
e6c65e2e354336a4bea5b6a4ccbccd3682915fe2
/out-bin/py/google/fhir/models/run_locally.runfiles/com_google_fhir/external/pypi__tensorflow_1_12_0/tensorflow-1.12.0.data/purelib/tensorflow/include/external/jpeg/jconfig.h
61baae07a09652646be5fcfbea69b1ab778cca4a
[ "Apache-2.0" ]
permissive
rasalt/fhir-datalab
c30ab773d84983dd04a37e9d0ddec8bf2824b8a4
3e329fc8b4226d3e3a4a7c23c306a86e7a9ea0de
refs/heads/master
2021-10-09T05:51:04.593416
2018-12-21T18:11:03
2018-12-22T05:38:32
162,744,237
0
0
null
null
null
null
UTF-8
C
false
false
183
h
/home/rkharwar/.cache/bazel/_bazel_rkharwar/0ddaa3627472ad9d1367a008236ce2f5/external/pypi__tensorflow_1_12_0/tensorflow-1.12.0.data/purelib/tensorflow/include/external/jpeg/jconfig.h
[ "ruchika.kharwar@gmail.com" ]
ruchika.kharwar@gmail.com
ee62d5497141a31a4913593354dc6dbe71796b34
1c27b37dd3f961cf9911fd9e1e9166f61dc35a00
/j/e/parse.c
ad1f636a282a756bf6b6dd93632a1289ad166787
[ "MIT", "LicenseRef-scancode-public-domain" ]
permissive
yosoyubik/urbit-2015
7d635bba9795dfc755aa1f54416092f16d142853
5b625d11d950c38e2c4d974f494508bf45738d43
refs/heads/master
2021-08-19T11:25:39.698165
2019-09-01T09:52:32
2019-09-01T09:52:32
205,657,485
0
0
MIT
2020-07-18T03:44:40
2019-09-01T09:51:06
C
UTF-8
C
false
false
22,441
c
/* j/5/parse.c ** */ #include "all.h" static u3_noun _slip( u3_noun weq, u3_noun naz) { u3_noun p_naz, q_naz; u3x_cell(naz, &p_naz, &q_naz); if ( 10 == weq ) { return u3nc(u3x_good( u3i_vint(u3k(p_naz))), 1); }...
[ "bellod.cisneros@gmail.com" ]
bellod.cisneros@gmail.com