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
9b5167455d3724e201c4d3b844df7072bbe63f35
9128a48a9d196690e8e3e3b734a28364c923dcd9
/CSharpVersion/CSharp_CPPCompiler/CompilerProject/y.tab.h
ffeef1d696de758cd1d632852bb9665670f89c4f
[]
no_license
donghlcxx/SpineACT_PlaygroundOSS
94ce25745cafc625f4108967d94f5d548b8a53c3
7a73614ba3adf7e72520839b1e862324527e29fb
refs/heads/master
2022-11-10T04:17:42.933846
2020-06-24T02:43:18
2020-06-24T02:43:18
270,545,386
0
0
null
null
null
null
UTF-8
C
false
false
1,153
h
/* Copyright 2013 KLab Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed ...
[ "261709905@qq.com" ]
261709905@qq.com
4b7ba361b5434896d79559c19e453a35218d7f2c
6395a348bb77bdfe781783ccc94056fd7e839d8d
/C C++/SERVER_API/cname_to_comp.c
8558bafef633e9345177ab84a6f316c163354f9f
[]
no_license
redrye/Algorithms
1b6bd5724aac69e86a47db7a3e3e2677d203dc70
d70866bbcd2926ec11c11e3fcae9200ddaf68d4f
refs/heads/master
2020-06-30T21:43:16.332516
2019-08-07T03:12:24
2019-08-07T03:12:24
200,959,159
0
0
null
null
null
null
UTF-8
C
false
false
1,160
c
/* cname_to_comp.c */ #include <cnaiapi.h> /*----------------------------------------------------------------------- * cname_to_comp - look up a host by name and return its IP address *----------------------------------------------------------------------- */ computer cname_to_comp(char *cname) { compu...
[ "noreply@github.com" ]
redrye.noreply@github.com
728faf024194eb9744a90b3ce606d4e290f63302
d980dd4702474ae30cea0e997f210ba0d562af2f
/tcp/tcp.h
b5108a76da20a6736ee53945eda17b8cd5a927f8
[]
no_license
crackercracked/TCP-IP-UDP
21fa03862b8059b6a5323a285450ee02a932205e
1fd066601a0a9febdcbfebb9e255646740a554fb
refs/heads/master
2016-09-06T13:00:51.277003
2014-01-24T18:49:27
2014-01-24T18:49:27
13,047,942
2
3
null
null
null
null
UTF-8
C
false
false
3,680
h
/* * Copyright (c) 1982, 1986, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above...
[ "crackercracked@hotmail.com" ]
crackercracked@hotmail.com
ad2982ecae9bcb43bc38e087c08198e6649a9b7b
93d827fa3d169b37d50bc1424e14cdde347bebbd
/C/quick_sort.c
fe212e99103614d077af8c7be8873fab6893b671
[]
no_license
JesperMell/Education
deadb12a970ca60fc7df2c0cf5b5323e1c2c7dd6
9803f8a7e2c847a71967fb9005fc008b0850843e
refs/heads/master
2023-01-24T14:27:49.904495
2019-08-02T06:02:12
2019-08-02T06:02:12
200,174,607
0
0
null
2022-12-14T06:37:57
2019-08-02T06:00:43
HTML
UTF-8
C
false
false
778
c
#include <stdio.h> #include <stdlib.h> void swap(int* a, int* b) { int t = *a; *a = *b; *b = t; } int partition(int arr[], int low, int high) { int pivot = arr[high]; int i = (low - 1); for (int j = low; j <= high-1; j++) { if(arr[j] < pivot) { i++; swap(&arr[i], &arr[j]); } ...
[ "Jesper@hldesign.se" ]
Jesper@hldesign.se
84303828af50cf1f799d98bab99af3a316e0b908
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/gpu/drm/nouveau/nvkm/subdev/clk/extr_nv50.c_nv50_clk_new_.c
b3d85d6682238d35d573cb755fd93f03909a8f6a
[]
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,718
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
e2c33a3c12c5d4de73605a306e725ed0fc34b0e0
8e3f08fc9a602871733f4fd8244348799214ecd1
/c/sample_ex6-3.c
53f4dcd5e648c2bd3b34f14c8911671801306ca4
[]
no_license
kimura121212/udemy_c_c-
2ff02fdd15e7edbeb44d91c831675986e2a666a4
92a690c5f79c0b7d8d2de0366dafc581ad5c67f3
refs/heads/master
2022-07-20T00:55:12.885784
2020-05-09T16:54:25
2020-05-09T16:54:25
261,649,831
0
0
null
null
null
null
UTF-8
C
false
false
731
c
#include <stdio.h> #include <stdlib.h> void main() { FILE *file; // ファイルポインタ(読み込み用) int c; // 読み込む文字のコード file = fopen("./sample.txt", "r"); // ファイルを読み込み用にオープン if (file == NULL) { // オープン失敗時 printf("ファイル...
[ "ykimuranoi@gmail.com" ]
ykimuranoi@gmail.com
baaa7eb0f124e6203652892ac28763a4f11e401a
759eb44724689944ad40f53c165e9dd78f6e3647
/ci/libraries_tests/nrf5_app_pwm/main.c
2dc669aec0e1f219a88983722a3cf95fcedebae0
[ "MIT" ]
permissive
xanecs/cmake-nRF5x
e2bfa8fff06e167a44a444e5721c4a5464888ea4
e42e6f11e5c9d78c43afc69ec94b81e2b4efdf40
refs/heads/master
2023-06-11T12:31:08.941121
2021-06-30T20:50:36
2021-06-30T20:50:36
381,829,556
0
0
null
null
null
null
UTF-8
C
false
false
120
c
#include "app_pwm.h" int main() { app_pwm_config_t cfg = {0}; app_pwm_init(NULL, &cfg, NULL); return 0; }
[ "borys.jelenski@polidea.com" ]
borys.jelenski@polidea.com
54939a6f1e7678e538fa390eb17e189c5318a5ea
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/0a8a0514-f023-4c7f-a89d-dba06dba1d1d.c
82dca6288cc4664aeb597945e017770444a167fa
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
566
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=14; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = j%j; l = i/j; k = k-k*k; //variables /* START VULNERABILITY */ int a; int b[54]; int c[68]; a = 0; do { a++; //ran...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
faed0df922487f700ed1d7036f4f76f55f9f36dc
010279e2ba272d09e9d2c4e903722e5faba2cf7a
/contrib/libs/ibdrv/include/infiniband/mlx5_user_ioctl_verbs.h
a1aa36abad9108300a68494a5a80f1ade80dd54d
[ "Apache-2.0" ]
permissive
catboost/catboost
854c1a1f439a96f1ae6b48e16644be20aa04dba2
f5042e35b945aded77b23470ead62d7eacefde92
refs/heads/master
2023-09-01T12:14:14.174108
2023-09-01T10:01:01
2023-09-01T10:22:12
97,556,265
8,012
1,425
Apache-2.0
2023-09-11T03:32:32
2017-07-18T05:29:04
Python
UTF-8
C
false
false
3,349
h
/* * Copyright (c) 2018, Mellanox Technologies inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of th...
[ "akhropov@yandex-team.com" ]
akhropov@yandex-team.com
9ba0602b7dddef02298f5579a7e44974981cb4bc
b356adc9bd515d919edcdda9b2aceded1b7dc905
/drivers/mmc/host/mt81xx-sd.c
9c738c17f2ce190ffb38fc390cd4d9bfd2e7664d
[]
no_license
wisen/tiny_kernel_comment
ca57b10a4df8eef989435ac5974fae5df0f1cc20
3401fe62392c62f735fc6dac1d96c51cca44d249
refs/heads/master
2020-03-17T21:48:36.830903
2018-11-05T16:52:57
2018-11-05T16:52:57
133,976,587
0
0
null
null
null
null
UTF-8
C
false
false
61,361
c
/* * Copyright (c) 2014-2015 MediaTek Inc. * Author: Chaotian.Jing <chaotian.jing@mediatek.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is di...
[ "wisen.wang.ah@gmail.com" ]
wisen.wang.ah@gmail.com
ddc14522fa3410715e225459b68e0f64e99cc908
08bfc8a1f8e44adc624d1f1c6250a3d9635f99de
/SDKs/OSVR/include/osvr/Client/Export.h
820d89f185a6e20ffea5ee9ab083a30f4e96ec2a
[]
no_license
Personwithhat/CE_SDKs
cd998a2181fcbc9e3de8c58c7cc7b2156ca21d02
7afbd2f7767c9c5e95912a1af42b37c24d57f0d4
refs/heads/master
2020-04-09T22:14:56.917176
2019-07-04T00:19:11
2019-07-04T00:19:11
160,623,495
0
0
null
null
null
null
UTF-8
C
false
false
129
h
version https://git-lfs.github.com/spec/v1 oid sha256:b56bdc43a23b9821c15a0762160b35835ffc2a29216113ee139db42ded69df4a size 3918
[ "personwithhats2@Gmail.com" ]
personwithhats2@Gmail.com
bb1c44cbd3c48ac665841bfaf25f60678f484aa7
7b55cacf46bf2fd6298315bccfa4b6f0375e3865
/src/sys/dev/usb/uhidev.c
e497226b345674a4268b83f20aa2f9705299380f
[ "MIT", "LicenseRef-scancode-bsd-3-clause-jtag", "BSD-2-Clause" ]
permissive
libos-nuse/frankenlibc
7f33a86f277ea13eeae573e0339b03c5e2a9ff58
b2e9db0084847aaa63fcddce2f5bf2e0e43669d5
refs/heads/lkl-musl
2021-01-21T23:30:07.179889
2018-06-21T07:46:36
2018-08-14T03:52:22
47,620,000
9
6
NOASSERTION
2019-02-21T14:53:00
2015-12-08T12:13:28
C
UTF-8
C
false
false
19,268
c
/* $NetBSD: uhidev.c,v 1.64 2015/04/13 16:33:25 riastradh Exp $ */ /* * Copyright (c) 2001, 2012 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Lennart Augustsson (lennart@augustsson.net) at * Carlstedt Research & Technology and...
[ "justin@specialbusservice.com" ]
justin@specialbusservice.com
58862ed4e700c2ded8139c0882cf2c4486facdcd
63beda462ba0492d02f712e72c9601b5f11dc8cd
/view.h
95bce69c64583e26e68e7a19928b4f86498e4d65
[]
no_license
djmadcat/Doom2D-Original
c66f2ff220373d6f8fa8ee5f167b4daca8916e1a
76540e4c570b5d489dd6154442d5b7daa03ad04a
refs/heads/master
2021-01-11T08:31:23.632700
2016-12-23T21:17:02
2016-12-23T21:21:53
76,744,241
0
0
null
null
null
null
UTF-8
C
false
false
1,260
h
// View functions // object data structure typedef struct { int x, y; // coordinates int xv, yv; // velocity int vx, vy; int r, h; // radius, height } obj_t; typedef struct { int x, y; byte d; } pos_t; enum { HIT_SOME, HIT_ROCKET, HIT_BFG, HI...
[ "djmadcat@gmail.com" ]
djmadcat@gmail.com
79d559c0067584f5fceab377488d3e91b632d6c8
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/ImportedShareRoot/UNIX_ImportedShareRootProvider.h
4808c754a8e970c1e5e3e8cc63bcb79bef00a3da
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C
false
false
2,249
h
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor lice...
[ "brunolauze@msn.com" ]
brunolauze@msn.com
4994b81160dd8d147b33bf3a36235d160429960f
60c275f5670d8a509421dbe53a704cdf85289035
/SWExpertAcademy/SWEA8016.c
ca724b58b8e12d1fb8e054563ac389bd54515332
[ "MIT" ]
permissive
Cutyroach/Solve_Algorithms
f02f03c5ad146550b136e19292a3599b2eff6702
97d9f8bb65055fe5ad62d108a9359b91f0f40c49
refs/heads/master
2023-03-02T21:27:03.214056
2021-02-09T23:58:47
2021-02-09T23:58:47
null
0
0
null
null
null
null
UTF-8
C
false
false
459
c
#include <stdio.h> #define ll long long int main() { int T; scanf("%d", &T); for(int test_c = 1; test_c <= T; test_c++) { ll l_value = 1; ll r_value = 1; long long n; scanf("%lld", &n); if (n > 1) { r_value = 2 * (n * n) - 1; n =...
[ "spe0678@gmail.com" ]
spe0678@gmail.com
06401cd86a87bec4c45e88b1f2dee8514cdad5da
c54b16b05178f5f8155fcb5e7a86cb91925c9801
/Alchemy/XMLUtil/PreComp.h
03d120ed34a1e92784d75f1f3523c076076af7aa
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
SiegeLord/TranscendenceDev
72e9b668da82e89d36dad0d1655b7752dfabad1c
e936d0c0ab7d9202a05f6261c6cd14497947a3ac
refs/heads/master
2021-07-19T09:20:22.178976
2019-01-18T04:24:57
2019-01-18T04:24:57
166,512,940
0
0
NOASSERTION
2019-01-19T06:10:02
2019-01-19T06:10:02
null
UTF-8
C
false
false
176
h
// PreComp.h // // XMLUtil pre-compiled headers // Copyright (c) 2019 Kronosaur Productions, LLC. All Rights Reserved. #pragma once #include "Alchemy.h" #include "XMLUtil.h"
[ "public@neurohack.com" ]
public@neurohack.com
2ac1b8401321f99f8eb78fb9477a32b712bc228b
754fd692f37142bd696f2f0f41d3fd5bbaced605
/codec/common/inc/msa_macros.h
2eef0e5b838141cf7977237a05539944bbbaa287
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause" ]
permissive
cisco/openh264
a341ed3bb02256f7aaead24a51f1f776fc14422a
986606644aca8f795fc04f76dcc758d88378e4a0
refs/heads/master
2023-08-28T13:33:38.192735
2023-04-20T01:23:13
2023-04-20T01:23:13
13,909,573
4,223
1,522
BSD-2-Clause
2023-08-31T07:53:03
2013-10-27T20:20:31
C++
UTF-8
C
false
false
111,087
h
/* * Copyright © 2020 Loongson Technology Co. Ltd. * * 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,...
[ "guxiwei-hf@loongson.cn" ]
guxiwei-hf@loongson.cn
066518d67fab175fe4a54ccafcf0f2550aee24cf
9d705086b5e4ec336dcc4d9b91e8df1ad67d4056
/testeString.c
c3f9ea7b4949f3e303b7899f85cd99a8e1878783
[]
no_license
fernando2dias/uri-
92f6f14816c5178c4d74b7d9099aa16c683a860e
4a28eafc986b902fa046bbee19dd660c4fff2c68
refs/heads/master
2021-09-26T11:56:40.513451
2018-10-29T22:10:21
2018-10-29T22:10:21
null
0
0
null
null
null
null
UTF-8
C
false
false
194
c
#include <stdio.h> int main(){ char nome[81]; printf("Digite seu nome: "); gets(nome); printf("-> %s",nome); //puts("puts() pula linha sozinha"); //puts(&nome[4]); return 0; }
[ "noreply@github.com" ]
fernando2dias.noreply@github.com
ef995c9f4b7870729d58457d415146f217db034c
51ea24b5e309f9cde1e214d5a5b66422b3597478
/Testing/mercury_rpc_cb.c
d52f4b0f0530c01d5ad897b9072ebacde7b34e3f
[ "LicenseRef-scancode-generic-cla" ]
no_license
ael-code/mercury
97bf91c39bf70fb72130fedafe343a95f789724f
94560e9e113ac14dd57bdcb6e995f6066eec4613
refs/heads/master
2020-04-01T06:57:18.161931
2018-10-14T12:25:01
2018-10-14T12:25:01
152,970,880
0
0
null
null
null
null
UTF-8
C
false
false
29,905
c
/* * Copyright (C) 2013-2017 Argonne National Laboratory, Department of Energy, * UChicago Argonne, LLC and The HDF Group. * All rights reserved. * * The full copyright notice, including terms governing use, modification, * and redistribution, is contained in the COPYING file that can be * fou...
[ "jsoumagne@hdfgroup.org" ]
jsoumagne@hdfgroup.org
cb7807d150b3ed3001766a38d91c707d07beabc3
191707dd19837f7abd6f4255cd42b78d3ca741c5
/X11R4/contrib/toolkits/InterViews/src/bin/mailbox/mailbox.c
ec09fc6f215b3efba3cb0c4cfd58918698c7986c
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive" ]
permissive
yoya/x.org
4709089f97b1b48f7de2cfbeff1881c59ea1d28e
fb9e6d4bd0c880cfc674d4697322331fe39864d9
refs/heads/master
2023-08-08T02:00:51.277615
2023-07-25T14:05:05
2023-07-25T14:05:05
163,954,490
2
0
null
null
null
null
UTF-8
C
false
false
13,062
c
/* * Copyright (c) 1987, 1988, 1989 Stanford University * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided * that the above copyright notice appear in all copies and that both that * copyright notice and this perm...
[ "yoya@awm.jp" ]
yoya@awm.jp
b85c2a29d2f079ba5d34e661a9b2732f10b6f610
fdb81564a47827726bc6f095149d1f738449680f
/Src/BSW/ComStack_cfg/Com_Pcfg.h
877b2e60d06d8721f7b2eb60f0166df6bf4c8c35
[]
no_license
EbrahimHamouda/Final_Gradution_MU_ECED_2020
7611e4fd7a33db463e749fe593d825ff744bc929
c904d6bdac1753576cc46b279442eb9cd9e984c1
refs/heads/master
2022-12-21T20:09:20.895433
2020-09-28T07:57:57
2020-09-28T07:57:57
289,324,473
4
0
null
null
null
null
UTF-8
C
false
false
783
h
/* * Com_Pcfg.h * * Created: 6/22/2020 6:35:43 AM * Author: ebrah */ #ifndef COM_PCFG_H_ #define COM_PCFG_H_ #define NUM_COM_IPDUs 3 #define COM_PDU_MAX_BUFFER_SIZE 8 #define Num_GROUP_SIGNAL 3 #define Num_SIGNAL_GROUP_PDU0 6 #define Num_SIGNAL_GROUP_PDU1 3 #define Num_SIGNAL_GROUP_PDU2 4 t...
[ "ebrahim.hamouda25@gmail.com" ]
ebrahim.hamouda25@gmail.com
fedcef8e9fccf621323007b574170e667cc05c2d
5cbe1da391d646c76b047f80db63c8af00308389
/snippets/socket-faq-examples/nbserver.c
6a4fa044df7d9561ec6259bb4b19aa7bd94da987
[]
no_license
s-ltf/IMS
f0f2fa3ef515ec6ffe715c5872328d8bbeaae60e
b6fd3583422d2ba468cca0daa423915c219bfea1
refs/heads/master
2020-06-04T14:22:24.219234
2014-10-10T23:07:02
2014-10-10T23:07:02
16,423,585
1
0
null
2014-03-10T19:13:28
2014-01-31T23:10:58
null
UTF-8
C
false
false
7,768
c
/* PLEASE READ THE FILE NB-APOLOGY!!!! There are some things you should know about this source before you read it. Thanks. Non blocking server demo By Vic Metcalfe (vic@acm.org) For the unix-socket-faq */ #include "sockhelp.h" #include <ctype.h> #include <sys/time.h> #include <fcntl.h> struct conn...
[ "iras146@gmail.com" ]
iras146@gmail.com
4a910ced9a45283e466df22672941a2501c261fc
26d3639f5234f84834b142aabc77c9650914bf67
/bigintmult.c
64c21a4c976747ca54830114f876f17da564e73a
[]
no_license
hedbladucf/BigIntMult
764f2b0942c9622a665039e1529a30b579df52b3
e4ef107f4283a8bcf0e77c4e9ee07abab9f7b2af
refs/heads/master
2021-01-20T17:23:44.785647
2016-07-22T19:20:50
2016-07-22T19:20:50
63,977,712
0
0
null
null
null
null
UTF-8
C
false
false
6,154
c
/* OSCAR HEDBLAD COP3502, 0001 DESCRIPTION: A program that reads in a very large integer and multiplies it. The file "bigint.txt" will be read. It needs to contain integers in the right format to yield a correct solution. */ // Include the necessary packages. #include <stdlib.h> #include <stdio.h> #include <string.h>...
[ "ohedblad@flhi.com" ]
ohedblad@flhi.com
082ca8eb962c596248502b996f62c75e56e7039d
3681a9f9e30d33c24d4eb7e175e63a0bf9d4b65d
/artoo/src/mavlink/c_library/ardupilotmega/mavlink_msg_ahrs3.h
32fb8f4a82547b209cba5cfd5ef986d243aab829
[ "Apache-2.0" ]
permissive
webbbn/OpenSolo
b99f34837e3c3d6b619046a0fab79a35470caddf
e144cbd49155cffd581f9d02b885098cee37d1df
refs/heads/master
2020-12-28T07:48:42.090829
2020-03-29T17:21:11
2020-03-29T17:21:11
238,234,133
1
0
Apache-2.0
2020-02-04T15:06:51
2020-02-04T15:06:50
null
UTF-8
C
false
false
13,410
h
// MESSAGE AHRS3 PACKING #define MAVLINK_MSG_ID_AHRS3 182 typedef struct __mavlink_ahrs3_t { float roll; ///< Roll angle (rad) float pitch; ///< Pitch angle (rad) float yaw; ///< Yaw angle (rad) float altitude; ///< Altitude (MSL) int32_t lat; ///< Latitude in degrees * 1E7 int32_t lng; ///< Longitude in degree...
[ "davidbuzz@gmail.com" ]
davidbuzz@gmail.com
c1b31102812099240439155d3f26211b64dfc577
decf9d68088e69f561bf51681b47ce084301caae
/cinema/glad/glad.h
e7b0feaa68e2523d50b56d4cd9d77bdb685fa75e
[]
no_license
pratikunterwegs/Kleptomove
25b3c1732142cfeceffe28e90779f46e384ab6fe
2849570f4357b99b05b08b368d39e94c675c3f36
refs/heads/master
2023-04-09T11:25:47.974826
2022-03-29T11:38:44
2022-03-29T11:38:44
279,252,388
0
1
null
2022-03-29T11:38:45
2020-07-13T09:07:55
C++
UTF-8
C
false
false
1,077
h
/* glad.h OpenGL version selector Hanno 2016 */ #if GLSL_OPENGL_MAJOR_VERSION == 2 #if GLSL_OPENGL_MINOR_VERSION == 0 #include "2_0/glad.h" #elif GLSL_OPENGL_MINOR_VERSION == 1 #include "2_1/glad.h" #endif #elif GLSL_OPENGL_MAJOR_VERSION == 3 #if GLSL_OPENGL_MINOR_VERSION == 0 #include "3_0/...
[ "c.f.g.netz@rug,.nl" ]
c.f.g.netz@rug,.nl
7474ac08cee857f2e578ce5688d918f022b81d21
c4afbfe1885e8d0c7a1c8b928563f7bb8ab6a683
/GreenDemonstrator/src/OBU/Generated_Code/KCG-ERSA/API_Frontend_balises_prelim_TM_API.c
3428c048f85287e89ca1ba4edf520e03ce52fa34
[]
no_license
VladislavLasmann/srcAndBinary
cd48ebaa2f1f7f697ba5df9f38abb9ed50658e10
13aa76e545b9596f6dac84fb20480dffae7584d8
refs/heads/master
2021-05-08T15:04:05.709079
2016-01-22T12:40:10
2016-01-22T12:40:10
null
0
0
null
null
null
null
UTF-8
C
false
false
4,831
c
/* $**************** KCG Version 6.4 (build i21) **************** ** Command: kcg64.exe -config R:/Repositories/modeling/model/Scade/System/OBU_PreIntegrations/Demonstrators/ERSA_EVC_Testrunner/config.txt ** Generation date: 2015-12-10T15:16:03 *************************************************************$ */ #include...
[ "info@stefankarg-it.de" ]
info@stefankarg-it.de
d16c49aeed8d11971b7fe8301edcf95d7d4a8120
4626b2ff5fcb2491083c8a2fc6b7e4bbdbca31cf
/kotel/nrf/fw/kotel/halconf.h
744fcfd0e99a92447c36e921b0d83740c5dd7a7f
[]
no_license
kubanecxxx/homeautomation
172849833d7c5775ae4ec9ca4ba4668c7cae0d2a
3e45837125317bdd3aa6bcaf174349d214dc1ddb
refs/heads/master
2021-01-25T06:00:52.772830
2015-09-08T23:57:08
2015-09-08T23:57:08
18,609,327
0
0
null
null
null
null
UTF-8
C
false
false
9,606
h
/* ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless req...
[ "kubanecxxx@gmail.com" ]
kubanecxxx@gmail.com
06432f34c7c43af0dcbf1a5cfc7247705ac00266
5a05fe8180c5cb54ce5b42649eac221849f350c5
/src/test/test_pqueue.c
363e0e2a301c2611d6bfc1bc85e15ab48e647ea3
[ "BSD-3-Clause" ]
permissive
alexokonski/heelhook
96120fe0fb3e5a4225c15385bb1a2137eba4ef90
41687cb40f373ca1cd47e819ee9d5c113dea958b
refs/heads/master
2021-01-13T01:26:46.983424
2015-06-11T09:36:01
2015-06-11T09:36:01
9,515,219
2
0
null
null
null
null
UTF-8
C
false
false
6,827
c
/* pqueue - generic priority queue, based on the algorithms found in * Cormen, Leiserson, Rivest, Stein. Also includes support for * constant time random access and iteration over the queue * * Copyright (c) 2013, Alex O'Konski * All rights reserved. * * Redistribution and use in source and bi...
[ "alexanderokonski@gmail.com" ]
alexanderokonski@gmail.com
55ae4de9dda9cf8e2026f81a82449b1f60c9bfda
f6be60be84271d747ed35a371f993cb9b74190eb
/DeallyEngine/Thirdparty/grpc-release-0_14/src/core/lib/surface/version.c
c18ea7bb9f28bdded1fd621acbd6204816288b56
[ "BSD-3-Clause" ]
permissive
jaccen/DeallyEngine
e2e8ccf58c9d1dea34608d79b660f7571643f1c0
27ec95d90ec450bfd0b56c50c391c4c12ff8f3ca
refs/heads/master
2023-04-14T16:23:42.761382
2023-04-07T07:37:51
2023-04-07T07:37:51
92,156,474
0
2
null
2022-12-13T04:20:15
2017-05-23T09:46:54
C++
UTF-8
C
false
false
1,747
c
/* * * Copyright 2015, Google 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: * * * Redistributions of source code must retain the above copyright * notice, this list of condi...
[ "jaccen2007@163.com" ]
jaccen2007@163.com
b8676c40f84b65fe2e37411610e397fd134cf842
740b9bb41ea64307c5f7c85cff818b9190d7a02c
/examples/proprietary_rf/esb_ptx/main.c
31bf0f0137d5d5e75368bb9fc4e349f94843aee2
[]
no_license
thumb2/nrf51sdk12_3
4fefe074ef34b69054613ff8ab3faba18f6aa8d1
d6956d24ae6ada32db9139ca5da4885377003bf8
refs/heads/master
2020-04-26T07:26:49.519306
2018-01-12T02:08:34
2018-01-12T02:08:34
173,394,420
0
1
null
null
null
null
UTF-8
C
false
false
6,027
c
/** * Copyright (c) 2014 - 2017, Nordic Semiconductor ASA * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright no...
[ "johnson@btsmartshield.com" ]
johnson@btsmartshield.com
2bdb61e5fffbe64ece995d83e0424c35b1988dd2
969e852a088f97a88ffc1826c907e78c03362e27
/uspace/app/cpp/cpp.c
cd1519d2f1aec0c4dca9d319bbf04b63e2e9eef6
[]
no_license
fhector/helenOS-0.5-Hector
1f9a0bca016d004eb0eca22b3e39199b073150a3
c7af670be800ee49c8ea2b9a187dd9086006d0a3
refs/heads/master
2021-01-22T12:02:19.078636
2014-08-28T16:03:21
2014-08-28T16:03:21
null
0
0
null
null
null
null
UTF-8
C
false
false
38,625
c
/* $Id: cpp.c,v 1.124.2.2 2011/03/27 13:17:19 ragge Exp $ */ /* * Copyright (c) 2004,2010 Anders Magnusson (ragge@ludd.luth.se). * 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. Redi...
[ "f_hector@hotmail.com" ]
f_hector@hotmail.com
0d3f5bd2b6d0778e68164f0f25149c2d7984c7b6
74425398ac208de073555dd686eb5ffde111afa0
/epsilon7.ysc.c
56cccb9e57bc0290e10a9f72d9deaab7b364084e
[]
no_license
Pocakking/GTAV-1.46-Scripts
0ed63b566d38cc0af07a68dda32f7e1e7e3b8869
6e22574c536031f17df7b905d07a4423c64730d9
refs/heads/master
2021-10-16T05:36:28.661079
2019-02-08T07:08:47
2019-02-08T07:08:47
168,979,402
7
1
null
null
null
null
UTF-8
C
false
false
1,697,181
c
#region Local Var var uLocal_0 = 0; var uLocal_1 = 0; int iLocal_2 = 0; int iLocal_3 = 0; int iLocal_4 = 0; int iLocal_5 = 0; int iLocal_6 = 0; int iLocal_7 = 0; int iLocal_8 = 0; int iLocal_9 = 0; int iLocal_10 = 0; int iLocal_11 = 0; var uLocal_12 = 0; var uLocal_13 = 0; float fLocal_14 = 0f; var uLoc...
[ "pizzafinom123@gmail.com" ]
pizzafinom123@gmail.com
1ab05ae2486afe79d8d21882c9cf5a127d81748b
83885e407252f8bdc31ec436bfbcfa43c574edc4
/src/examples/stm/flash_test/config.h
5a888394f6af1ddd6039195e7a15aaa5f68d520a
[]
no_license
jpgvandijk/assembly-cortex-m3
68eba7e391e1692899d4852d90c108d4b5d42362
f3ade5e165322034b6a6d78c87f6ff718e2d6db7
refs/heads/master
2020-05-25T10:40:03.117298
2015-01-31T11:49:59
2015-01-31T11:49:59
22,101,944
3
0
null
null
null
null
UTF-8
C
false
false
2,927
h
/************************************************************************************ * * Author: J.P.G. van Dijk * ************************************************************************************/ #ifndef _CONFIG_H_ #define _CONFIG_H_ // Select the target #define STM /*******************************************...
[ "jeroen-van-dijk@hotmail.com" ]
jeroen-van-dijk@hotmail.com
87037a4bbb74169c4d96d2f82aadd9f9ba3dc24c
96880d1746eef05ce251bfad5a149686d5e055db
/Piscine/C/C08/ex03/ft_point.h
55d91abac5bdc851ea5459a444231d5d227c7ba9
[]
no_license
revarsavr/couscous
937199712854819f388c0c4e437537193ff5252a
4b469c14227150cc9990d571c0c8e83bbf443e94
refs/heads/master
2021-12-27T03:18:22.828237
2021-12-22T08:13:46
2021-12-22T08:13:46
243,968,057
0
0
null
null
null
null
UTF-8
C
false
false
995
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.h :+: :+: :+: ...
[ "daarriba@c1r11s3.42madrid.com" ]
daarriba@c1r11s3.42madrid.com
e6480e553b8b1d8bd28c0da6ae58f8ac41a30799
7f243d5c7eb5a3f0a86a6ccb075448d13cdafd04
/Lab1/ST7735.c
2591c1c71877c2c33c8abc55e6f47590ce3205dc
[]
no_license
OsvaldoMontielFuentes/RTOS-EE445M
680d7f06219adb0ed8049d8a479b9dd78cc9c567
7afd94cb2b1e80aa12c7cd353d76c4e1542c9186
refs/heads/master
2023-03-24T11:54:52.197786
2019-05-22T03:31:21
2019-05-22T03:39:10
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
61,519
c
/*************************************************** This is a library for the Adafruit 1.8" SPI display. This library works with the Adafruit 1.8" TFT Breakout w/SD card ----> http://www.adafruit.com/products/358 as well as Adafruit raw 1.8" TFT displayun ----> http://www.adafruit.com/products/618 Check o...
[ "michael.coulter@arm.com" ]
michael.coulter@arm.com
865f97873ff4c562b980a13a195527eda81ea55d
019b085ac8ef4594fb43a1566b8e984cd34fac16
/platforms/nuttx/NuttX/nuttx/configs/stm3240g-eval/src/stm32_selectsram.c
fcbef4d9c816b30ea22b966470dbb01014b39e0c
[ "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "LicenseRef-scancode-other-permissive", "ISC", "MIT" ]
permissive
JJRnumrous/Firmware
fffabcee637b5fe00f374b6849894ae518b8c8af
7c3505dffa465be7bcef4602976df853d587e467
refs/heads/master
2020-08-17T20:26:09.876510
2019-10-17T05:22:09
2019-10-17T05:22:09
150,714,296
0
0
BSD-3-Clause
2018-09-28T09:06:12
2018-09-28T09:06:12
null
UTF-8
C
false
false
7,883
c
/************************************************************************************ * configs/stm3240g-eval/src/stm32_selectsram.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <gnutt@nuttx.org> * * Redistribution and use in source and binary forms, with or without * modi...
[ "18231349@sun.ac.za" ]
18231349@sun.ac.za
fdab48e26c7eaa2dd9a94538eb94ac5b50ce0056
5211b0e54ac12db99f7825701cb6c87173c9fd98
/include/metalang99/eval/eval.h
af851d74dbe647f49e3253057469a86a09f519df
[ "MIT" ]
permissive
aerosayan/gefork-metalang99
f5d91b58bcec6fb8b4ead45673f92c595cd7f9a3
7d7c7ac7f06aa1cb8dc332cded42e45f71a66ef9
refs/heads/master
2023-06-26T21:08:10.743996
2021-07-27T23:13:34
2021-07-27T23:13:34
null
0
0
null
null
null
null
UTF-8
C
false
false
7,649
h
#ifndef ML99_EVAL_EVAL_H #define ML99_EVAL_EVAL_H // Explanation is in the spec: <https://github.com/Hirrolot/metalang99/blob/master/spec/spec.pdf>. #include <metalang99/priv/util.h> #include <metalang99/eval/acc.h> #include <metalang99/eval/rec.h> #include <metalang99/eval/syntax_checker.h> #include <metalang99/eva...
[ "hirrolot@gmail.com" ]
hirrolot@gmail.com
8bbf2cf4c1b8efc5244142e6561acc7c92c660ff
4fdb7e682e2a1227ccf2d54e846a0aba48c241d1
/str_extract.c
1ed7ebc232eeb00c26ad97b1316d79d871307119
[ "MIT" ]
permissive
nobody-mb/asm-crap
1504167c3bbc129b9e735defd26d0597dbc8e00b
0c357df054d7507c8d7f24bc1b0e356f16bab741
refs/heads/master
2021-01-10T05:42:20.869685
2016-04-04T20:55:25
2016-04-04T20:55:25
55,333,149
1
0
null
null
null
null
UTF-8
C
false
false
2,801
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #define rdtscl(val) asm volatile ("rdtsc" : "=A" (val) : : ); void old_str_extract(const char *input, char *output, const char *start, const char *end); void new_str_extract(const char *input, char *output, const char *start, const char *e...
[ "nobody1@nobody1s-MacBook-Pro.local" ]
nobody1@nobody1s-MacBook-Pro.local
e48055edb4fb05cb85f69ed3bdaf2df2f71ee175
99429b3ab939d973036111724935bfd583a0d2b2
/bolib/src/file/File.protected.h
14af73729c98a833596ccc66353ad41b0ed7c8ce
[ "MIT" ]
permissive
boldowa/disperry
3f9f8ff50c75c73f22403c4bfb43e423325284bd
37c86f5b4f9f97444c11ac28642a0e12bac164d7
refs/heads/master
2021-01-20T05:37:25.751610
2017-08-26T09:30:53
2017-08-26T09:30:53
101,457,748
0
0
null
null
null
null
UTF-8
C
false
false
406
h
#pragma once /** * File.protected.h */ /** * File main instance */ struct _File_protected { /* File path */ FilePath* filePath; /* File pointer */ FILE *fp; /* File mode */ char* mode; /* File size */ long size; }; /** * detete own members method prototype * I recommend it that you move this method in "...
[ "boldowa.q@gmail.com" ]
boldowa.q@gmail.com
dfd391e250b7e8faf5a4cb2fac2778876348034c
77861deda8b3046bdda221d3cb80b77e84b14523
/sse-trie/c/trie-binary.c
cba58971a7e8ef744d98ae0a90e09a54704a6b7d
[ "BSD-2-Clause" ]
permissive
WojciechMula/toys
b73f09212ca19f1e76bbf2afaa5ad2efcea95175
6110b59de45dc1ce44388b21c6437eff49a7655c
refs/heads/master
2023-08-18T12:54:25.919406
2023-08-05T09:20:14
2023-08-05T09:20:14
14,905,115
302
44
BSD-2-Clause
2020-04-17T17:10:42
2013-12-03T20:35:37
C++
UTF-8
C
false
false
1,797
c
/************************************************************************ Trie speedup - trie_next: binary search author: Wojciech Muła e-mail: wojciech_mula@poczta.onet.pl last update: 2013-09-30 license: simplifed BSD ************************************************************************/ #include "trie.h...
[ "wojciech_mula@poczta.onet.pl" ]
wojciech_mula@poczta.onet.pl
3ffd0670056e22d19c0a10b3de9da1c895e6ee52
10398d917a4828ce3f1a26e315dd7db636faa2e0
/云台+底盘电机 V1.4.3.11/HARDWARE/can.c
e6057f78ed825f8978282a2e4074a49d70121f2e
[]
no_license
SLDX2018/Ambition_infantry
2424c4f6eeb7465537201a1593379ea143dcd8d0
7c7734d3cd943940c3eda5de60c5aebe18a2012b
refs/heads/master
2021-04-12T08:21:22.445539
2018-03-25T10:39:41
2018-03-25T10:39:41
null
0
0
null
null
null
null
GB18030
C
false
false
7,179
c
#include "can.h" #include "delay.h" #include "usart.h" ////////////////////////////////////////// //RM2018 云台实验程序 //STM32F4工程模板-库函数版本 //版本 1.0.10.16 //初步实验 //作者:沈理电协Ambition Wx //CAN数据收发 //外部变量 //u8 Can_buf[7][8]; 0-3电机->1234; 4->Pitch 5->Yaw ;拨弹轮电机->6 /////////////////////////////////////////// //CAN初始化 //tsjw:重新同步跳...
[ "wx1998@hotmail.com" ]
wx1998@hotmail.com
6da8509f7dc9625fba9ab3ddeeea8fc078dd947a
11f1c0c85b34b5948b0026235909fbbc9b7c9e97
/dev/rt/deh.c
956ac9cc281b35cb50f34e1374d712440925d49f
[]
no_license
DinrusGroup/RuladaEnglish
ad02037081dd2fd420a0cb6251f36de9f750bb4c
424536a4e06c667d22e7eb1b899f25b4efd21b19
refs/heads/master
2021-01-10T18:03:49.374772
2016-01-21T05:01:30
2016-01-21T05:01:30
45,520,297
1
0
null
null
null
null
UTF-8
C
false
false
19,043
c
// // Copyright (c) 1999-2003 by Digital Mars, www.digitalmars.com // All Rights Reserved // Written by Walter Bright // Exception handling support #include <stdio.h> #include <string.h> #include <assert.h> #include <stdlib.h> /* ======================== Win32 =============================== */ #if _W...
[ "vit_klich@list.ru" ]
vit_klich@list.ru
46a42835a3c6c01057f810bcfd4221a280e5c7f0
83465412cb2673205caf74a400088956d277ff93
/合并有序线性表/源.c
32285500be8ff7cf428219c8312b12fdcc817494
[]
no_license
Koo-ling/Data-structure-work-and-practic
c9d072137b3358235ed4b8389941ee70b1de2f86
4875245989f8d673bae41fd227ca4f4166443363
refs/heads/master
2021-07-19T22:05:38.007448
2020-10-20T07:03:52
2020-10-20T07:03:52
223,519,254
0
0
null
null
null
null
GB18030
C
false
false
1,649
c
#include <stdio.h> #include <stdlib.h> #define TURE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 #define list_init_size 80 //初始分配存储空间 #define listincreament 10 //存储空间分配增量 typedef char ElemType; typedef char Belem; typedef struct node { //结构体定义 Belem data; ...
[ "noreply@github.com" ]
Koo-ling.noreply@github.com
ce3e16efe233c027909c2feb4c786f11072bf4e5
b65649b0de67a98a78920818303462e2264d56cb
/miniboard/firmware/src/s-bus.c
6d65cde2c9bc8ba40d97c4300387e0b72e10fcc8
[]
no_license
YangZhaoxiong/Rover2017
33ff42a254c9d3322d772674a4ef8d7b58e68f92
e76a1f6aa6c90cd38bb2eecd5a56e5f52f2331d6
refs/heads/master
2021-01-09T06:18:20.710033
2017-02-04T21:42:28
2017-02-04T21:42:28
null
0
0
null
null
null
null
UTF-8
C
false
false
3,190
c
/* OSU Robotics Club Rover 2016 * Miniboard Firmware * * sbus.c - Futaba S-BUS receiver module. * Author(s) Aaron Cohen */ #include <stdint.h> #include <avr/io.h> #include "ax12.h" #include "sabertooth.h" #include "uart.h" #include "s-bus.h" #define SBUS_PACKET_LENGTH 25 #define SBUS_START_BYTE 0xF0 #define SBU...
[ "NickAmes@users.noreply.github.com" ]
NickAmes@users.noreply.github.com
6ab5e6e5a590085cb45912a53896735b78837070
b24023e83fa159e175e506a1d54d10444fd8426a
/Etape1/main.c
4348e36ff09a1eebfb854b09e49bce2680750807
[]
no_license
dalilsami/Cardboard-Pulley
1d8e251813c01686d55519094a81909ea986643d
91e2683bf56b5ef377d45a5e15838458319d0bc8
refs/heads/master
2021-01-20T02:57:28.259732
2017-01-20T16:09:35
2017-01-20T16:09:35
89,474,587
0
0
null
null
null
null
UTF-8
C
false
false
1,424
c
/* ** main.c for Cardboard Pulley in /home/bab/Projet_Poulet/lemoin_a/Etape1 ** ** Made by LE MOINE Adrien ** Login <lemoin_a@etna-alternance.net> ** ** Started on Fri Jan 20 10:13:51 2017 LE MOINE Adrien ** Last update Fri Jan 20 10:13:51 2017 LE MOINE Adrien */ #include "game.h" int main() { t_room salle; ...
[ "lemoin_a@318c02d6-d926-42e8-9ef7-ea02efed1679" ]
lemoin_a@318c02d6-d926-42e8-9ef7-ea02efed1679
efc155e0646d268ab1a5163d6c059e8696351bbf
74ceb87e79430f7eb2d41217babb49cfe4cff7fa
/partos/example_average/main.c
0e28a872b401f721ca489aaeeca51b8a00a4f408
[]
no_license
thebluekit/exam
5b55389c110ce6eaba8dde90a33a90bf1d9e174a
1017de449b20471c766b7bdafdaa81b264903172
refs/heads/master
2020-04-17T18:52:25.118850
2019-01-29T08:01:31
2019-01-29T08:01:31
166,844,692
0
1
null
null
null
null
UTF-8
C
false
false
908
c
//В файле находятся целые числа, сформировать односвязный список этих целых чисел, найти среднее арифметическое. //Вывести кол-во чисел больше среднего арифметического. #include <stdlib.h> #include <stdio.h> #include "list.h" #include "io.h" int main() { FILE *f = fopen("in.txt", "r"); if (!f) ...
[ "mr.marashli@gmail.com" ]
mr.marashli@gmail.com
2a13516dffe1bf0ac71461f7af65892f628451a8
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/e87b0138-0242-4504-8bce-e39e51ad2343.c
6aadfa6ffd25e506d028f1a8f1ab8d81cba54810
[]
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
599
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=122; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = j/j; l = l%j; l = k-j*j; //variables //random /* START VULNERABILITY */ int a; int b[59]; int c[11]; a = 0; do { a++;...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
12f9635c7ee9c45bf81df1bf9a14605056b89e7a
5d417f03f724f4e23000f28cd629c92bc9297a23
/sam/drivers/usart/usart_irda_example/sam4e16e_sam4e_ek/conf_board.h
350cd87d967f0633e105d4aac7c6be10cde923bd
[]
no_license
siliconunited/atmel-asf
5ac78a123cb0f5026ffb9a0ba66b75abcccb788f
19e02800a6cc33d203f5d12f7dfca0c39195d879
refs/heads/master
2021-01-22T21:34:10.563981
2017-03-19T04:45:30
2017-03-19T04:45:30
85,439,630
6
3
null
2020-03-08T01:34:35
2017-03-18T23:56:24
C
UTF-8
C
false
false
2,185
h
/** * \file * * \brief Board configuration. * * Copyright (c) 2014-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * ...
[ "robksawyer@gmail.com" ]
robksawyer@gmail.com
73613ae50d942a415db6bfa4ec5e206fd4019569
17c15855f097df714507eea7ab8f7042871853f5
/Palin.c
e2ef7af44e95704220ddbb8bf98f15603a98a5fa
[]
no_license
CJBJ1/C-study
470fb99247224fb2f20c793eaf3bd302788aaf13
4ef76d0dc9b822cd238106cf3275d3317cb05fab
refs/heads/master
2020-04-15T22:24:53.322864
2019-04-02T12:56:29
2019-04-02T12:56:29
165,071,922
0
0
null
null
null
null
UTF-8
C
false
false
711
c
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> int solution(char* s) { int answer = 0; int i = 0, n = 0, j = 0; int p1, p2; bool jud= true; int max=0; n = strlen(s); if (n == 0) return 0; if (n == 1) return 1; for (i = 0; i < n-1; i++) { if (answe...
[ "noreply@github.com" ]
CJBJ1.noreply@github.com
0054b7be6b2756da12fb2b58ea42707e0ace5ebf
dc1d3a409169ac6e788944df06f338e3cb644163
/0x13-more_singly_linked_lists/4-free_listint.c
8ece1891d6cc667d5e171d172362365658180560
[]
no_license
StaciAF/holbertonschool-low_level_programming
5243e3546f4394ccc9dfb17c18a26552e0cdb445
9dea6dd00b319641178cb5cd3af9709e4c94a8c0
refs/heads/master
2020-12-29T07:44:04.453068
2020-09-02T23:43:32
2020-09-02T23:43:32
238,519,538
0
0
null
null
null
null
UTF-8
C
false
false
285
c
#include "lists.h" /** * free_listint - function that free allocated memory from linked list * @head: list to be freed * * Returns: Nothing */ void free_listint(listint_t *head) { listint_t *temp; while (head != NULL) { temp = head; head = head->next; free(temp); } }
[ "aaen.it19@gmail.com" ]
aaen.it19@gmail.com
805b915dfa9efe59b79660349a5d2609e74e31e1
4eff06d37177aa67d057d155b5a1550da2fdd5ee
/t02/mx_strlen.c
628fc237d89cc106555544c95f6707234548896f
[]
no_license
ArseniyZenzerya/Ucode-refresh-marafon
4628cd32590de081b0f4028364d32abb3ea4230c
ff188b03cebc8dda44fdc2b059268899dab7a672
refs/heads/main
2023-08-14T12:43:07.838791
2021-10-13T15:11:53
2021-10-13T15:11:53
null
0
0
null
null
null
null
UTF-8
C
false
false
148
c
int mx_strlen(const char *s); int mx_strlen(const char *s){ int lenth = 0; while (s[lenth]) { lenth++; } return lenth; }
[ "noreply@github.com" ]
ArseniyZenzerya.noreply@github.com
961142b2c75de71c87676b7bff4b7f38b678ee0f
c6130b53f5b7694604875e84b80b7dfe19add732
/Data Structures - NKUA.GR/ask3 2014/code/TownsCitiesManagement.c
09b5a58e4f742a04d4da98087fc10f7ccd213f6a
[]
no_license
nmpegetis/University-Projects-for-Other-Schools
c4b4bd85c9287224c2283b64a30f4873b224e894
b941735610b678481beb135c99af86705b0cfc88
refs/heads/master
2021-08-30T15:03:39.545934
2017-12-18T11:17:19
2017-12-18T11:17:19
114,631,049
0
0
null
null
null
null
UTF-8
C
false
false
8,869
c
/************************************************************************ Programma pelaths : TownsCitiesManagement.c Syggrafeas : Skopos : skeleton main for askhsh 3 *************************************************************************/ #include <stdio.h> #include <sys/time.h> /* for gettimeof...
[ "n.mpegetis@silensec.com" ]
n.mpegetis@silensec.com
66a12575d01bca6c419b788a5cc293a1ab7f9146
5cb8e6ed8f6fa3136ffc99266364bf860b4a6e5d
/pa2/List.c
94de6bfab18be6f2de2988938c56c8f56d55b072
[ "MIT" ]
permissive
t2fu/CMPS101
eb98bab95fe799af40140e1c203877c7c3fbd256
1c4fe200608efaddc78f75f5693e8312bd3f6bb1
refs/heads/master
2020-09-24T10:45:33.151520
2019-12-04T00:19:02
2019-12-04T00:19:02
225,739,057
0
0
null
null
null
null
UTF-8
C
false
false
6,961
c
/* * Assignment: Programming Assignment 2 * Programmer: Tiancheng Fu * CruzId: tfu6 * Student id: 1600058 */ #include<stdio.h> #include<stdlib.h> #include"List.h" typedef struct NodeObj{ int Data; struct NodeObj* next; struct NodeObj* previous; } NodeObj; // Node typedef NodeObj* Node; // newNode() // ...
[ "tfu6@ucsc.edu" ]
tfu6@ucsc.edu
30d2c0efd5a2e375f0ca72fc5a8c149673dbf23c
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/reactos/modules/rostests/winetests/msvcrt/extr_file.c_test_get_osfhandle.c
d86da68c2d1bf568ea80f0cf4c28d97602629494
[]
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,730
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
f7ab3597c056a9d17c780f105d25f517ad4206d1
13103acc4c5f44ee6c9f4339875f3237978afa5f
/SPX-12-update2.04/Core/Modified_OpenSource/watchdog-src/watchdog_core.h
4ef4d89c544822b06dfc8589ed50e91efbf6ca2f
[]
no_license
ami-megarac/OSSW
668e0d5a408dc6f2e0837b6d9382c2fe3aba2196
f85e00204c85c79b9555db581b42443bab472e10
refs/heads/master
2021-12-14T16:31:15.666604
2021-12-10T10:32:23
2021-12-10T10:32:23
137,410,679
3
6
null
null
null
null
UTF-8
C
false
false
1,285
h
/**************************************************************** **************************************************************** ** ** ** (C)Copyright 2009-2015, American Megatrends Inc. ** ** ...
[ "nathanlee@ami.com.tw" ]
nathanlee@ami.com.tw
6015daefbbd7aba204302bd746ab4f99bb3a5cfd
0ac5b8a6550769be58720d06685cc76cd17ba84c
/hw/mcu/atmel/samd21xx/src/sam0/utils/cmsis/samd21/include/instance/gclk.h
318a89516fa9b8c1554e6a58fb34fa9c6d431226
[ "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
runtimeco/mynewt_arduino_zero
cb17c0ab123586483a76475643415fd4f2b44860
1209f1f061706648de442e83d0f0973f6ca3ca49
refs/heads/master
2023-08-17T01:09:53.271640
2023-08-09T13:42:00
2023-08-09T13:55:42
52,636,418
2
7
Apache-2.0
2023-09-07T12:00:18
2016-02-26T22:16:39
C
UTF-8
C
false
false
4,294
h
/** * \file * * \brief Instance description for GCLK * * Copyright (c) 2014-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are me...
[ "paulfdietrich@yahoo.com" ]
paulfdietrich@yahoo.com
4432a2ac90be75d56315269560d215462d0e3d9f
2ce4e110ce17de5aa998f335c85bac97296ab85d
/picox_external/uthash/utarray.h
0435735d10a2b92e6f93d5dab65264ee20d1a4f7
[ "BSD-3-Clause", "Apache-2.0", "MIT", "BSD-1-Clause" ]
permissive
maskedw/picox
8e61dd32f94ee44ade9ed3fe4c1e77880c717a16
b8ddeb022741f4ff37c07d04a8e6f87ad5366bfe
refs/heads/master
2020-05-21T19:56:47.944829
2019-05-06T06:49:29
2019-05-06T06:49:29
37,407,774
29
1
null
null
null
null
UTF-8
C
false
false
12,946
h
/* Copyright (c) 2008-2014, Troy D. Hanson http://troydhanson.github.com/uthash/ 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 ...
[ "maskedw00@gmail.com" ]
maskedw00@gmail.com
f22785c87326b120351a6c7e4bedee259b2afbbf
cd7d4702ed32524432c9d30a534d069b8e4793b0
/Projects/STM32F767ZI-Nucleo/Examples_LL/TIM/TIM_OnePulse/Inc/main.h
82f9c3126c6e4230e8ecfacfd0bcc27121da9db8
[ "BSD-2-Clause" ]
permissive
jonlamb-gh/STM32Cube_FW_F7_V1.8.0
8a8f36f2c981d6f2a8f6c26a4bfe43c0891e3c00
19f6ed7ab7c0d2ba60ecb09d46ad75324c029b95
refs/heads/master
2020-03-10T22:10:18.579553
2018-04-15T13:32:10
2018-04-15T13:32:10
129,612,739
0
1
null
2020-03-07T20:12:19
2018-04-15T13:27:52
C
UTF-8
C
false
false
4,509
h
/** ****************************************************************************** * @file Examples_LL/TIM/TIM_OnePulse/Inc/main.h * @author MCD Application Team * @brief Header for main.c module ****************************************************************************** * @attention * ...
[ "jonlambusn@gmail.com" ]
jonlambusn@gmail.com
83b93ad5bbb170c7ad9e5adefdc2c9d78e995f22
bfd258f4fba8307fa0a0614cd37be1b7edfaace5
/get_function.c
5ad63eaa628a0f3d1bbe95422b26047b667fafd1
[]
no_license
noahchernet/printf
48306c2401842087159b25ff023100218f49249f
a078e131e2af33bbadd92927399bf4fef5162418
refs/heads/master
2023-08-12T21:03:19.721334
2021-10-07T10:51:09
2021-10-07T10:51:09
null
0
0
null
null
null
null
UTF-8
C
false
false
1,136
c
#include "main.h" /** * get_printing_func - runs a function based on the specifier @a passed * @a: the format specifier * @ap: the list of arguments passed to the _printf function * * Return: the number of characters printed (depends on which function is * called) * 1 if there is there is no corresponding fu...
[ "noahchernet@yahoo.com" ]
noahchernet@yahoo.com
bdf0f4a90c01c906e0dbde001c7ec3aeecb39682
719d2763c85a5ea6e16135e07f2b7c724528b3fe
/libft/srcs/ft_isdigit.c
5d5127e63dc42dba19e7f54a14e3a31f1cbb7bec
[]
no_license
zhasni/2048
30fbd88ab3e9720580afd88ff6a5e831e2b1a6eb
85426c2a8520669de0dcbbc57a61cf962879208e
refs/heads/master
2021-01-10T01:48:46.638008
2016-01-20T13:40:29
2016-01-20T13:40:29
50,032,428
0
0
null
null
null
null
UTF-8
C
false
false
1,000
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: ...
[ "zhasni@e2r3p10.42.fr" ]
zhasni@e2r3p10.42.fr
6a3319c9f413cfdd56a8522c1a0d7de693d6fdea
68d935f3ac825f26871088d7efdc7d61262c1a4d
/String/Freq.c
426878590671b589cddc024f43aca80ad483650e
[]
no_license
ombhujbal/C-Programming-Example
211ebca29a00f206d02800a3593085134ad02f7d
28b063eb4d7a01d72454508f80a942dd835aa513
refs/heads/master
2021-10-11T01:54:39.140762
2019-01-21T07:07:19
2019-01-21T07:07:19
null
0
0
null
null
null
null
UTF-8
C
false
false
854
c
/******************************************************* Statement - Find a frequenct of character in string Programmer - Vineet Choudhary Written For - http://developerinsider.in *******************************************************/ #include <stdio.h> #include <string.h> #include <conio.h> void find_frequency...
[ "vineetchoudhary@live.in" ]
vineetchoudhary@live.in
c224b490e649aeb26e06609e6d8b690ffacaccc1
dc2ee17b7dec7dbbdba47d712306a45f7d6f58a0
/asm/check/check_commentary.c
ca1f1591be975c33deb4aab1ce74906fd608fb10
[]
no_license
ethanke/Corewar
d531953d51cf7c961fe5504feeeb68f2541460f0
1e8691a8fc7158f8eca762384d664b10d2482049
refs/heads/master
2020-04-10T18:51:55.607368
2018-08-16T12:28:16
2019-06-25T15:12:47
52,277,993
0
1
null
null
null
null
UTF-8
C
false
false
649
c
/* ** check_commentary.c for in /Users/ethankerdelhue/Documents/Shared/Corewar/asm/check/ ** ** Made by Ethan Kerdelhue ** Login <kerdel_e@epitech.eu> ** ** Started on Tue Mar 22 23:02:37 2016 Ethan Kerdelhue ** Last update Tue Mar 22 23:02:44 2016 Ethan Kerdelhue */ #include "asm.h" int containCommentChar(char *...
[ "kerdel_e@epitech.eu" ]
kerdel_e@epitech.eu
29bdd99ea41c6ed3b11d1c94d234a21efc261c41
4a1b388fc7254e7f8fa2b72df9d61999bf7df341
/ThirdParty/ros/include/rcutils/snprintf.h
5d39fbded9f53d7d2b4bc30036609c2658a0e0be
[ "Apache-2.0" ]
permissive
rapyuta-robotics/rclUE
a2055cf772d7ca4d7c36e991ee9c8920e0475fd2
7613773cd4c1226957603d705d68a2d2b4a69166
refs/heads/devel
2023-08-19T04:06:31.306109
2023-07-24T15:23:29
2023-07-24T15:23:29
334,819,367
75
17
Apache-2.0
2023-09-06T02:34:56
2021-02-01T03:29:17
C++
UTF-8
C
false
false
2,399
h
// Copyright 2017 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appli...
[ "christian.conti@rapyuta-robotics.com" ]
christian.conti@rapyuta-robotics.com
ebeb783f0e081d12a37936444ae0ed2f9ac09581
27b3c7fa81a61d9f600ec3010c1e82002ef79b80
/arm/mirrr/inc/adtgen.h
e07beb83ac621dc7989f6b0b8e993aff8edc3ca9
[]
no_license
siemens-elfloader/elf
d9222a44481d3a6d2669446cd08c110a80f26225
878f7315e755a061967e6d8e0f59566829a9fbdf
refs/heads/master
2023-02-13T06:59:48.187208
2021-01-06T09:41:52
2021-01-06T09:41:52
327,263,185
2
0
null
null
null
null
UTF-8
C
false
false
8,580
h
//+----------------------------------------------------------------------- // // Microsoft Windows // // Copyright (c) Microsoft Corporation 2000 // // File: A D T G E N . H // // Contents: definitions of types/functions required for // generating generic audits. // // !!...
[ "danile71@gmail.com" ]
danile71@gmail.com
251791344894f21c0b60337b08d42f9f599041cc
28d0f8c01599f8f6c711bdde0b59f9c2cd221203
/sys/arch/emips/stand/common/ace.h
02666abf44702c794e945c689ba5f58bf417cb23
[]
no_license
NetBSD/src
1a9cbc22ed778be638b37869ed4fb5c8dd616166
23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c
refs/heads/trunk
2023-08-31T13:24:58.105962
2023-08-27T15:50:47
2023-08-27T15:50:47
88,439,547
656
348
null
2023-07-20T20:07:24
2017-04-16T20:03:43
null
UTF-8
C
false
false
1,806
h
/* $NetBSD: ace.h,v 1.1 2011/01/26 01:18:54 pooka Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. * All rights reserved. * * This code was written by Alessandro Forin and Neil Pittman * at Microsoft Research and contributed to The NetBSD Foundation * by Microsoft Corporation. * * Redistribut...
[ "pooka@NetBSD.org" ]
pooka@NetBSD.org
f63108bacd9e9208f89b20a86755e0e228257503
c43f9e98eea76e2ff5187c8b17774455ad975e09
/libft/ft_realloc.c
96ed052dea3e8b10783ddee17d56adc0e0010de0
[]
no_license
brozorec/minishell2
3863286bd0b0d1886992b0b5954d97d2d8406b6b
b263552abf144a49edc31f79a1b78865a3358d19
refs/heads/master
2021-01-24T04:36:05.287572
2015-04-30T11:40:44
2015-04-30T11:40:44
32,987,650
0
1
null
null
null
null
UTF-8
C
false
false
1,224
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_realloc.c :+: :+: :+: ...
[ "boyan.barakov@gmail.com" ]
boyan.barakov@gmail.com
1b901947129a624043eddf4969e80e35a03bdd15
bfa16d6ffa0d73b4d119c9e6d9c588d42c2b5755
/ft_strrchr.c
54c38d5cb32b003c0b055862683e4cb5b4c40122
[]
no_license
shamurzaevdev/libft
38d55ae8682cb90fe20cfd87af3bb40be5012036
af8e78610bbb83787ec3c94754e49d07e9922c16
refs/heads/master
2023-03-26T04:46:34.692487
2021-03-22T12:52:10
2021-03-22T12:52:10
350,340,289
0
0
null
null
null
null
UTF-8
C
false
false
1,197
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strrchr.c :+: :+: :+: ...
[ "ashamurz@c1r4p7.42nice.fr" ]
ashamurz@c1r4p7.42nice.fr
75f98c961f6a1107b686a2d2a99d542c3c4159c1
c403144c4d0f1358d66320f799999f96384ff3ec
/src/delete_path.c
40ef0e2088c55c8712ff54e31cfaeca2fae0939e
[]
no_license
c2d5c6/Pathfinder
961becc4a1a7a46032d490898df12621c417c8df
77be70f2ba11724c4f47f0d4c33bd2ed167e48d3
refs/heads/master
2023-06-14T19:27:34.792983
2021-03-16T14:49:40
2021-03-16T14:49:40
null
0
0
null
null
null
null
UTF-8
C
false
false
889
c
#include "../inc/pathfinder.h" static void pop_all_bond(t_path **head) { t_path *p = NULL; if (!head || !(*head)) { return; } while ((*head)->nextConnect) { p = (*head)->nextConnect; free(*head); *head = p; } if (!(*head)->nextConnect && !(*head)->nextPath) ...
[ "totopashka2@gmail.com" ]
totopashka2@gmail.com
6ffd324ddc781d3639fbe4cdedcc3b99c3fa2619
3d643e50e304d3ffd3f697905e441556be377cfc
/ios/Pods/Headers/Private/EXCellular/EXCellularModule.h
b40e5082c188a51f8edad1f3613a4532a07a9765
[ "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
Qdigital/expo
326c5c1c0167295c173f2388f078a2f1e73835c9
8865a523d754b2332ffb512096da4998c18c9822
refs/heads/master
2023-07-07T18:37:39.814195
2020-02-18T23:28:20
2020-02-18T23:28:20
241,549,344
1
0
MIT
2023-07-06T14:55:15
2020-02-19T06:28:39
null
UTF-8
C
false
false
71
h
../../../../../packages/expo-cellular/ios/EXCellular/EXCellularModule.h
[ "noreply@github.com" ]
Qdigital.noreply@github.com
383a3bbb05e30ff8e1ff9fee3b508092d73ec02c
e6920a010ee1d5c40c5318884510d83b4f576137
/srcs/sh_lp_tokenizer.c
07abd0ce9a327d9f00c2ffdc5287b2dc5325724e
[]
no_license
Arigowin/42sh
df241012c505882978216f30c2553f7b619123a2
b0d5c339e92fe02015d43fd47ad6818af90c876c
refs/heads/master
2021-01-23T00:25:51.807308
2017-05-22T11:47:48
2017-05-22T11:47:48
85,732,691
0
0
null
null
null
null
UTF-8
C
false
false
3,134
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* sh_lp_tokenizer.c :+: :+: :+: ...
[ "dolewski@student.42.fr" ]
dolewski@student.42.fr
75faa05765a2542b67e262e9eae532e1586aefc7
701f43d348ef7a6694e5a439cace6630654138cc
/beginner/code kata/set4/count_char.c
c8a89cedab1fd16ae19e5f48b7a6fbe7a9f22d1f
[]
no_license
nandhiniv303154/c-1
64ab48ad7acf44eacdfe4b9b5130e27cf6043b35
23e3525cc004c9af979fd5f26464f30221fadea4
refs/heads/master
2020-04-24T16:10:50.029854
2018-05-18T18:48:06
2018-05-18T18:48:06
null
0
0
null
null
null
null
UTF-8
C
false
false
167
c
#include <stdio.h> int main(void) { // your code goes here char s[50]; scanf("%s",s); int n=0; for(int i=0;s[i]!='\0';i++) { n++; } printf("%d",n); return 0; }
[ "noreply@github.com" ]
nandhiniv303154.noreply@github.com
1b399e10409a60dbd375672996ac4274e7d953a5
cd4673aea4e41a212ff5c57e2b1d99a7ade1fbf1
/src/svec3cmpWrapper.c
057595e9aca84ac8315775154b1aaaa96ee62f2d
[]
no_license
cran/sdpt3r
62765e36a08557f846fe50312a2ced20debdf153
6668a2744cfbe777717e3175d0a79ac542823e2c
refs/heads/master
2021-07-15T04:50:22.141609
2019-02-11T07:50:03
2019-02-11T07:50:03
102,360,434
1
0
null
null
null
null
UTF-8
C
false
false
307
c
#include "svec.h" void svec3cmpWrapper(int *n, double *r2, double *A, int *irA, int *jcA, int *isspA, double *B, int *irB, int *jcB, int *isspB, double *AI, double *BI){ svec3cmp(n[0], r2[0], A, irA, jcA, isspA[0], B, irB, jcB, isspB[0], AI, BI); }
[ "csardi.gabor+cran@gmail.com" ]
csardi.gabor+cran@gmail.com
dbd0259cb4045df157ea74854e043a01b80f92e9
afd6eb16c5d5c174005e5e7c0d6ce75a45d1ff35
/Cpp/Kld.h
939faf3a16d97b3bab0d5995bc98de886ba14722
[]
no_license
TooAboil/FiveInARowRobot
42ca9bd4f2fb01c90ee17e065512234a7e6eddaa
9d1fa5cb9a4ac91d80077e78a177cad4bf6e794a
refs/heads/master
2020-04-08T02:41:18.521881
2018-11-24T17:37:31
2018-11-24T17:37:31
158,944,899
2
0
null
null
null
null
UTF-8
C
false
false
1,786
h
extern "C" _declspec(dllexport)void KLD_Set_Unite(int mode); extern "C" _declspec(dllexport)int KLD_Get_Unite(); extern "C" _declspec(dllexport)void Set_Base_Address(unsigned int Address); extern "C" _declspec(dllexport)unsigned int Read_Base_Address(); extern "C" _declspec(dllexport)void KLD_InitDevice(); extern ...
[ "noreply@github.com" ]
TooAboil.noreply@github.com
4ec789e6899a70a4242048b00e94c5a1573fc0c2
01f32cd5de0225a26e7839434f0143d371a1373c
/Krishna/experiments/ds/Sortings/Quick_sort/Lists/HEADER/header.h
e85199db20ab7f4b53dc420a3b6b7dbefafeda94
[]
no_license
bmknaidu555/ge_work
d7c4666463b61b608206b6cdcc411f00aab8b9d0
adf082207fd367329acdd474fbc860875a31bba7
refs/heads/master
2020-04-05T12:46:53.736619
2019-03-21T16:40:19
2019-03-21T16:40:19
156,880,124
0
0
null
null
null
null
UTF-8
C
false
false
304
h
#include <stdio.h> #include <stdlib.h> struct node { struct node *prev; int data; struct node *next; }; struct node *create_list(struct node *, unsigned long); struct node *create(); void display(struct node*); void swap(struct node*, struct node*); struct node * insertion_sort(struct node *);
[ "bmknaidu555@gmail.com" ]
bmknaidu555@gmail.com
1876fc709976e25d5f5b5bcfd281e2f58a3a3779
dd673f95140e08224e056b3282eb6de1e9818dde
/week2/day6/strcount2.c
9cecece5dc68fa83dbbc2cefedafe2c60903ba1f
[]
no_license
hdhwq/LED2
25cd33411cbfded78880c50de3caa8bd32616d44
05d2471cb4ac8169f4aaed5901538ee3b4aa1082
refs/heads/master
2020-05-25T15:22:58.550542
2017-04-21T14:39:06
2017-04-21T14:39:06
84,943,633
0
0
null
null
null
null
UTF-8
C
false
false
506
c
#include <stdio.h> #include <string.h> #include <stdlib.h> int cmp(const void *a, const void *b) { return *(char *)a - *(char *)b; } int main() { char str[64]; scanf("%s", str); qsort(str, strlen(str), 1, cmp); puts(str); int i=0; char ch; int cnt=0; while(str[i]!='\0') { if(cnt==0) { ch = str[i];...
[ "1208024806@qq.com" ]
1208024806@qq.com
f146692293a3d9e8b504967746710dcd51d06f60
20590f704b70d730f70efb849f430cac350e4533
/StandAlone/src/display/fonts/Corsiva_12.h
ab5e3b81578eda6fa2b02b5fd0b554855bf51a42
[]
no_license
DeathFaller/PumpControl
93294ffc3918935c14c8d57965140a8181123cb8
35d3bb34df7ab38926e756489e2f44daf36a4e95
refs/heads/main
2023-07-30T00:24:29.886958
2021-09-21T07:50:58
2021-09-21T07:50:58
408,732,019
0
0
null
null
null
null
UTF-8
C
false
false
9,196
h
/* * * Corsiva_12 * * created with FontCreator * written by F. Maximilian Thiele * * http://www.apetech.de/fontCreator * me@apetech.de * * File Name : corsiva_12.h * Date : 29.01.2005 * Font size in bytes : 5690 * Font width : 10 * Font height : 11 ...
[ "noreply@github.com" ]
DeathFaller.noreply@github.com
33a7e057b472f4697d35dce105428dcb32c09073
3515908a1861c1dd05b6286fafae6a068403d081
/Pods/Headers/Private/AudioKit/Mandolin.h
6d8098b72bc19230230d706561860b14350b6039
[ "MIT" ]
permissive
joeblau/Zenphones-Sample-Code
ba929254bf3e61b47a546796e9027b0f480e0a1d
f8db24dbbf2574c06d17b72696c4a6bfe8a28e85
refs/heads/master
2021-06-08T08:55:16.727817
2016-09-17T11:36:05
2016-09-17T11:36:05
41,007,582
4
1
null
null
null
null
UTF-8
C
false
false
70
h
../../../AudioKit/AudioKit/Utilities/Instruments/Emulations/Mandolin.h
[ "jblau@uberatc.com" ]
jblau@uberatc.com
b271c7d790d4e647b3a75a44774f27c0113c89c9
c3918975f7dc625a1253cb174186a8afb0876da4
/tarea.c
6ec1a068cb9c1836e8907959cb3066fb0e59ac9e
[]
no_license
SebastianMunozAmigo/LP
26c439f77afc80cb55a0f9eab56dfaa0bfa6428c
44151ff72d9d473a60f1b5c6486e9ccab8e2eb9b
refs/heads/master
2021-01-13T02:23:51.168062
2015-07-06T00:04:53
2015-07-06T00:04:53
35,682,792
0
0
null
null
null
null
UTF-8
C
false
false
180
c
#include <stdio.h> #define M 10 #define D 8 #define Y -1 int main (){ int a=1, b=1; int resultado=0; resultado=((a+b-++a+--b)*M-D*a)/Y; printf("%d\n",resultado); return 0; }
[ "MewatCh.09@live.cl" ]
MewatCh.09@live.cl
c21926062819e375867b237340c8a6d7e358a7c6
8c0ea960fe90e2a2d84bce1f37d1a66bae3314c7
/EE424/cachelab-handout/trans.c
b3184e7b6e282e904611e89772d0242ea7d96926
[]
no_license
cramsted/cramshall
dc3af75c719c721952c7c49006381f8d442935d5
53f56093b4778a835887f0fbe44db1d3c4525736
refs/heads/master
2020-05-25T18:55:10.463383
2017-03-14T13:58:52
2017-03-14T13:58:52
84,955,160
1
0
null
null
null
null
UTF-8
C
false
false
7,275
c
/* * trans.c - Matrix transpose B = A^T * *Clayton Ramstedt - cramsted *Marshall Garey - mgarey2 * * Each transpose function must have a prototype of the form: * void trans(int M, int N, int A[N][M], int B[M][N]); * * A transpose function is evaluated by counting the number of misses * on a 1KB direct mapped...
[ "theartoffreefall@gmail.com" ]
theartoffreefall@gmail.com
8323175961cb54d96d41d06c4c65e1754cd414d5
c16e261fbbbc382fe31f723f0b448d56270827cb
/MayRecord31st(N)/MayRecord31st/Temp/StagingArea/Data/il2cppOutput/UnityEngine.UnityWebRequestModule_CodeGen.c
1c9f06eb51d334c33fb0fab8b58d26a4d5755c4c
[]
no_license
TaiTruong21/SpeechProcessing
3a25ff30a1a4c12b7fab971bbc5c5a39d5f29960
740045f2cf9656878dd3b18d17e545fbede13d33
refs/heads/master
2022-03-02T17:55:53.165801
2019-10-26T05:14:49
2019-10-26T05:14:49
196,634,123
0
0
null
null
null
null
UTF-8
C
false
false
24,236
c
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "codegen/il2cpp-codegen-metadata.h" IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END // 0x00000001 System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor() extern void UnityWebRequestAsync...
[ "tpt010@ucsd.edu" ]
tpt010@ucsd.edu
eaf3389a535b81158a07d9846a3cd96e437106cc
162293d525a2427bce2971d83f73b28500e254db
/测试套/debug_perf_t/debug_perf_t_src/testcase/record-e-mem-arm/read_data_83.c
6a5e0822840b9e06b95ee9e9f7b328418ea88bee
[]
no_license
cherylling/OS-kerneltest
1f2380b68d0d5c88b67b797b591f6e3637d9fff0
3b626ee3b7b23102a950823ec961b87ffa3ce67d
refs/heads/master
2022-01-08T12:40:42.820047
2019-03-08T08:10:59
2019-03-08T08:10:59
174,490,016
2
1
null
null
null
null
UTF-8
C
false
false
992
c
#include<stdio.h> #include<stdlib.h> static int write_data=1; static char write_char2=2; static char write_char3=3; static char write_char4=4; static char write_char5=5; static short write_short6=6; static short write_short7=7; int func(int n) { short planck=1; if(n>1) { return func(n-1)+planck; ...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
0ae92c5929cc847322f400424d8db151df4768e9
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/video/backlight/extr_tosa_lcd.c_tosa_bl_enable.c
0aa828e2ab80afdfc9943ac3718180ae4c9f08c5
[]
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
683
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
89fa6aaf7c184e387feab23cb0b93c6d8bee11e8
840e664437ece0e29bd189731005c9805875c0e0
/src/alg-opt/convolve_after.h
dc3ab16dbe868f43cbc994734b632d32fba553f7
[]
no_license
TylerGillson/convolution-reverb-optimization
b0e2b7c94177affd5190968085fde823d594ba7a
b26cedbb752a9a28ac8de8a1bfe58dfd4165c765
refs/heads/master
2020-05-02T09:40:11.784142
2019-04-08T22:35:34
2019-04-08T22:35:34
177,877,762
3
1
null
null
null
null
UTF-8
C
false
false
5,307
h
/** * Load the next segment of the input file's sample data * into XX, zero-padding all entries to the right of the * filter kernel, then shift the sliding window over. */ int slide_window(int xx_len, int segment_len, int window_idx, double *XX) { for (int i = 0; i < xx_len; i++) XX[i] = (i < segment_len) ? X.sa...
[ "tyler.gillson@gmail.com" ]
tyler.gillson@gmail.com
da6524cbdf33e55e0bf75ceea6ffb14e82bdc689
4b0ccf39a8faaed9295564f79d6ff6f83044409f
/courses/prog_base/labs/lab3/lab3.c
c466181ddcf0b2aec0923974e9c1f734bedfa1bb
[]
no_license
pakhomova/repository
95e258c9c878fba7705a7ff43bc6ee56712dec90
ad20db9e04be1f23bf0d853147ceeab52e6d4098
refs/heads/master
2020-04-06T06:59:04.076707
2016-06-12T15:52:32
2016-06-12T15:52:32
41,991,735
0
2
null
null
null
null
WINDOWS-1251
C
false
false
14,032
c
#include <stdio.h> #include <math.h> #include <stdlib.h> #include <time.h> #include <windows.h> #include <ctype.h> void fillRand(int n, int m, int mat[n][m], int diapason1, int diapason2) { int i, j, a; if (diapason1 == diapason2){ for ( i = 0; i < n; i++ ) { for ( j = 0; j < m; j++ ) { mat[i][j] = diapason1;...
[ "evgpakhomova@gmail.com" ]
evgpakhomova@gmail.com
2b585d5bed03a608b3077d7133a7768f0d631b10
fae884b3160a4a1cfe89adb150ab364dafd435da
/byte_conversion_chart/byte_conversion_chart.c
c3f4e8d476ef10c8bbd1c2e230c1465604ca6119
[]
no_license
anstn1993/c_practice
0225cf1944d922aa8c2c507a83f3b943abff3d35
67e061e21d316e01dd997980cf89953905065ebd
refs/heads/master
2020-09-12T02:28:46.304921
2019-11-23T23:42:56
2019-11-23T23:42:56
222,270,909
0
0
null
null
null
null
UHC
C
false
false
875
c
#include <stdio.h> #include "byte_conversion_chart.h" #define SCALE (1024.0f) #define BYTE (1.0f) #define KB (SCALE * BYTE) #define MB (SCALE * KB) #define GB (SCALE * MB) #define TB (SCALE * GB) #define PB (SCALE * TB) #define LENGTH (6) /* 해당 데이터 단위들을 변환할 때 사용할 표를 만들 예정 */ static const char* const DATA_STORAGE_N...
[ "anstn1993@gmail.com" ]
anstn1993@gmail.com
93cf7bc5f9710bbbdd2e94fce7e5de7096d92c9d
95678dcf655cfde9f3220f486312d8e399fa10f7
/xdebug-2.0.3/xdebug-2.0.5/xdebug_mm.h
9480f925a5bb37d05d135d065276b11b3f99452b
[]
no_license
andresilveirabsb/php-5.2_wheezy
1586aee30e56b087080d6129b082e37698b1f3d3
3a34142924ada3cf3a5d157e7dfe6af32ab846ad
refs/heads/master
2021-06-09T20:09:34.521552
2016-05-30T07:58:59
2016-05-30T07:58:59
null
0
0
null
null
null
null
UTF-8
C
false
false
1,599
h
/* +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ | Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 Derick Rethans | +---------...
[ "root@titan30.mirohost.net" ]
root@titan30.mirohost.net
20ce0dae48e401f06b4f03d3be0c0edc0079d361
24199cac56f788c38cba00d9527e3287e9a0ca7a
/Examples/STM32/WF200_driver_F429ZI_FreeRTOS-LwIP/Src/wf200_host/wf200_task.c
f5887702b520820f295909c1ce0b2f73a5dcd0bb
[]
no_license
silabs-JulienT/wfx-fullMAC-tools
c7ea7c96052c41ee71ea8788d7005bae578508c9
2138560ed324f35c0ff619e11fcee48fe95c2408
refs/heads/master
2021-10-16T18:24:47.774375
2019-02-12T13:47:47
2019-02-12T13:47:47
null
0
0
null
null
null
null
UTF-8
C
false
false
2,413
c
/* * EVALUATION AND USE OF THIS SOFTWARE IS SUBJECT TO THE TERMS AND * CONDITIONS OF THE CONTROLLING LICENSE AGREEMENT FOUND AT LICENSE.md * IN THIS SDK. IF YOU DO NOT AGREE TO THE LICENSE TERMS AND CONDITIONS, * PLEASE RETURN ALL SOURCE FILES TO SILICON LABORATORIES. * (c) Copyright 2018, Silicon Laboratories Inc...
[ "julien.tiron@silabs.com" ]
julien.tiron@silabs.com
70433d108c7a9b530f4d8611b20cc95e912cc3cc
ada384d8eb34456cd7cce38bbda6d3a534d44d7b
/6_Language/2_Conversions/36_uint/test008.c
4dc82e79552d7763c83a94095f6fee8d7f750662
[]
no_license
KeiHasegawa/ISO_IEC_9899
4e077e5b74880d460fdb26f265948f337d100275
47cf4a324730861548a876eb89adccb29f9a8293
refs/heads/master
2022-04-26T10:38:54.497856
2022-03-09T05:09:13
2022-03-09T05:09:13
178,567,470
0
0
null
null
null
null
UTF-8
C
false
false
327
c
#include <stdio.h> unsigned int x = 0x12345678; unsigned int y = 0x56789abc; unsigned int z = 0x9abcdef0; short int a = 256; int main() { printf("x = %d\n",x); printf("y = %d\n",y); printf("z = %d\n",z); y = a; printf("x = %d\n",x); printf("y = %d\n",y); printf("z = %d\n",z); return ...
[ "kei.hasegawa.18@gmail.com" ]
kei.hasegawa.18@gmail.com
39d602657ea40250e97c65ccebd6a34014eabc81
081f9835532d0addcf6e2d8c29c82ae1cff980dc
/APUE/chapter3_file_io/processes_access_shared_file_good.c
1b99b0403c1577fb0d38e99c633f74685379b99f
[]
no_license
jicahoo/books
b2caa39807f864d2e3e2d32c5149081711b3f666
7784d950ebba9843fdeee28973978bd9925a8d2d
refs/heads/master
2020-03-25T13:58:28.899994
2019-04-23T03:33:08
2019-04-23T03:33:08
143,849,726
0
0
null
null
null
null
UTF-8
C
false
false
988
c
#include <fcntl.h> #include <stdio.h> #include <unistd.h> #define BUFFSIZE 5 void write_to_file(pid_t pid, char* buf) { int i = 100; int fd = open("./test.txt", O_APPEND|O_RDWR); for(i =0 ;i < 1000; i++) { ssize_t size = pwrite(fd, buf, 5, 0); //printf("%d Char written: %d\n", pid, size);...
[ "Jichao.Zhang@emc.com" ]
Jichao.Zhang@emc.com
3f6ce1bcc6bb5441a24371023308fdcf5a5bca5a
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/reactos/drivers/bus/acpi/acpica/hardware/extr_hwpci.c_AcpiHwDerivePciId.c
b02ad4f2c39fb8e1475a2d445f370eb12f485c2c
[]
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,866
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
93986c8a4cdec7a7bce6ddfabd4b8955f9a53a50
536eadd34945b035aeb46d4c352d75dc30ceec1b
/PointerActivity/read_data.c
458ae181b6df1097b51d85ae7188ddcbb9fd2ae8
[]
no_license
sanchitmonga22/C-projects
b519de2f3b43f21998bb4baf4cd8a9d64c1f6c9e
fdef26b20eff56a432d278e3b3aa30717724c94a
refs/heads/master
2022-07-04T00:12:41.575672
2020-05-20T16:38:06
2020-05-20T16:38:06
265,617,294
0
0
null
null
null
null
UTF-8
C
false
false
2,216
c
/* * Implementation of the read_data module. * * See read_data.h for a description of the read_data function's * specification. * * Note that the parameter declarations in this module must be * compatible with those in the read_data.h header file. */ #include <stdlib.h> #include <stdio.h> #include <string.h> #...
[ "sanchitmonga22@gmail.com" ]
sanchitmonga22@gmail.com
2bede9c54baee85b58fb926fac72f9bc2ca85ac0
b87a1439475d3c2b2ad85d93635f85dc65a51768
/SymTab.c
f2b9438d0a9f2f01e59ba0ff68a54dff74ef4ba8
[]
no_license
rappetteluca/Y-To-ASM
85d05640c4b509bbac569b707f01569eebc75bb5
a23a83e17bafc7e9fc8f7548bc98b640cd39b7ba
refs/heads/master
2020-03-18T20:26:08.392960
2018-06-01T22:28:43
2018-06-01T22:28:43
135,215,625
0
0
null
null
null
null
UTF-8
C
false
false
6,878
c
/* Author: Lucas Rappette Created: 02/05.18 Resources: Past CS421 Linked List assignment */ #include <stdlib.h> #include <string.h> #include <stdio.h> #include <limits.h> #include "SymTab.h" /* The symbol table entry structure proper. */ struct SymEntry { struct SymTab * table; char *name; int...
[ "rappette.luca@uwlax.edu" ]
rappette.luca@uwlax.edu
c3c128df6af7f0205614a8a39bf6e0b928d5dc6d
8d7514271b08caaa8c757d0747853d54642e9e63
/hal/system/bootloader/inc/bl_setting.h
aa067e3ad92f5793743e3ad7104ab63c92a11543
[]
no_license
npnet/MyCode
0bd3e32d5890c411b16e01cdb8acf5624c7c0a02
9fa7aa78d62f1cd3c2a39a36875cb41cf00522fe
refs/heads/master
2023-07-23T13:19:29.575050
2018-07-05T13:01:09
2018-07-05T13:01:09
140,229,839
1
2
null
2023-07-21T10:21:01
2018-07-09T04:07:28
C
UTF-8
C
false
false
7,129
h
/***************************************************************************** * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained * herein is confidential. The software may not be copied and the information * contained herein may not be used or dis...
[ "zhaoran.jia@nbbsw.com" ]
zhaoran.jia@nbbsw.com
f89ebb207df22aa42fe2ff3178ce88df3cf583f9
d2e148acaffccbbb8c874db0b4c6ecb773c9314d
/MachOView-修改版/MachOView-master/capstone/inttypes.h
b02129a16588ec868f16927d3af32e309602d088
[ "MIT" ]
permissive
long-woo/Cydia
84eedeccece1001be92dfdffcb411f073e7862ad
17a514f2d530763a45170f58c0a6d97e57c78bc8
refs/heads/master
2023-06-10T18:42:01.094005
2023-03-03T07:09:13
2023-03-03T07:09:13
256,098,047
2
0
MIT
2020-04-16T03:19:25
2020-04-16T03:19:24
null
UTF-8
C
false
false
112
h
#if defined(_MSC_VER) && _MSC_VER <= 1700 #include "msvc/headers/inttypes.h" #else #include <inttypes.h> #endif
[ "xlsn0wios@gmail.com" ]
xlsn0wios@gmail.com
2fca9653850899b026b12c7a7576d7ff5b5dc328
85b419b69a51d77c9eeef3702f9ea55025241bfd
/Hastur/src/module-apache/mod_sandbox.c
537c28ce47f072fd48b61a8cb8b239649cdb1a63
[]
no_license
YoungC2015/twctf-2016-problems
2d0005fe21367d4fe1267b926c42c7bffa58a622
bc770f06161d4e448b91052472b2fa118793bc1f
refs/heads/master
2021-01-23T16:43:36.982398
2016-11-07T16:59:23
2016-11-07T16:59:23
null
0
0
null
null
null
null
UTF-8
C
false
false
1,847
c
// apxs -c -o mod_sandbox.so mod_sandbox.c // strip --strip-debug .libs/mod_sandbox.so #include "httpd.h" #include "http_config.h" #include "http_protocol.h" #include "http_connection.h" #include "ap_config.h" #include "ap_listen.h" #include "unixd.h" const char *user_name = "sandbox", *group_name = "sandbox"; int lim...
[ "ytoku42@gmail.com" ]
ytoku42@gmail.com
e9cbc38354df30105b3d029f02b124eb671f0800
97132c97051e09369eaecbb25ad3de70b2f3a5ab
/PAT/乙级/t.c
10aaa560ea2f55db49fe8034805533ff2e2424bc
[]
no_license
LITturtlee/Programming-Practice
a3948c8de704ef9542d4414bbeb44db1a2772727
1ff744c37f21105f742b9d6864f8120591d57eae
refs/heads/main
2023-06-18T06:13:21.172660
2021-07-23T09:28:26
2021-07-23T09:28:26
354,049,837
0
0
null
null
null
null
UTF-8
C
false
false
781
c
#include <stdio.h> #include <string.h> int main() { printf("Enter your C-string!\r\n"); char str[512]; scanf("%s",&str); printf("This is your C-string: %s",str); int len = strlen(str); int dots = 0; int dashes = 0; int invalid = 0; for (int i = 0; i < len; ++i) { printf("%qu...
[ "39577838+beau753@users.noreply.github.com" ]
39577838+beau753@users.noreply.github.com
09c1685dda9197f4d97c48b941a581d4fdf2dc15
01d45312ee1dffc4ba6a88719a00ff5f675dc403
/ONENET_G55/G_METER_3/src/ASF/common/services/usb/class/msc/sbc_protocol.h
7c0d164b5df2e0007a44eb32866e30981100573e
[]
no_license
upcmgl/G55FS
d69c521510e3f0f681f1d5dbcab4feea012c077f
73cbe87aff93edc7d47938151ab8506065038b20
refs/heads/master
2020-09-01T09:04:49.824256
2019-11-01T06:29:19
2019-11-01T06:29:19
218,925,988
0
1
null
null
null
null
UTF-8
C
false
false
5,726
h
/** * \file * * \brief SCSI Block Commands * * This file contains definitions of some of the commands found in the * SCSI SBC-2 standard. * * Note that the SBC specification depends on several commands defined * by the SCSI Primary Commands (SPC) standard. Each version of the SBC * standard is meant to be use...
[ "maguolei@topscomm.com" ]
maguolei@topscomm.com
4322c46db8901149d7cbc618cdff374a465a7dbc
ca7511ba568c6dbb02d74d0a7a3ea6806502d523
/HAL/STPM/STPM_private.h
6e9ea544c946b9d7f304452c1fb5602d3d552305
[]
no_license
GovaniSamy/Garage-Project
f412cd88ceefa3bd9da2f9fa18ff783a8e817695
ef0fad2070f9ee1e6e3b5b2c5cbeae1362c3359a
refs/heads/main
2023-08-14T15:25:09.578645
2021-10-01T22:53:32
2021-10-01T22:53:32
412,611,848
0
0
null
null
null
null
UTF-8
C
false
false
62
h
#ifndef STPM_PRIVATE_H #define STPM_PRIVATE_H #endif
[ "noreply@github.com" ]
GovaniSamy.noreply@github.com
8ca3396b6d1b69921d812faf06d2f57fd34b7107
af35ea379819041aceafb4e604d61b6421d4f4e1
/mod4/FibonacciR.h
427fac61f373af122327b40f0d2b56213906931f
[]
no_license
ywh3589/CS162_OOP_with_Cplusplus
5e68b51cf28bb0dcfbe1d9039a328c667341a070
d2518dbae744576cfa58f9ab744f88ee8426250d
refs/heads/master
2021-01-12T09:08:42.353443
2016-12-18T09:13:04
2016-12-18T09:13:04
null
0
0
null
null
null
null
UTF-8
C
false
false
746
h
/********************************************************************************** ** Program Filename : state.hpp ** Author: Woohyuk Yang ** Date: May. 5th. 2016 ** Description: CS162 ModE ** Input : ** Output : STD simulation *******************************************************************************...
[ "ywh3589@naver.com" ]
ywh3589@naver.com
62dab0bb6a7978d508c4bd7b0ceb768036366166
7fc6c68f49801fde8e5abdb46355654e19d3fbc5
/include/ctMisc.h
ef0263963d5dd2b684f66790e05ebee8ee898eba
[]
no_license
patengelbert/tourtre-simple
aeca12bb6d06ea73fe63560ccc93318716aa12ea
4fe78f9628e62d2c7114f4fe74948e18d53e2a15
refs/heads/master
2021-01-21T06:59:46.145008
2017-03-07T16:29:00
2017-03-07T16:29:00
83,302,436
0
0
null
null
null
null
UTF-8
C
false
false
1,528
h
/* Copyright (c) 2006, Scott E. Dillard 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 and the ...
[ "patengelbert@hotmail.co.uk" ]
patengelbert@hotmail.co.uk