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
25667fdebfbc27c5f33299a624f502c23eae2248
0d47754caf245cce6b0736e2564deb66042136ae
/C/structure/queue_circle.c
3afac16186429fb74ad941148221710824aa8e1e
[]
no_license
baixc1/course
fbe3d5f1664488c299c0c95607169aecb99aa434
e3a22c5daa30a95ac3f7f6f58f901e38feefc882
refs/heads/master
2023-01-20T21:58:47.482051
2019-11-15T10:18:30
2019-11-15T10:18:30
129,537,607
0
0
null
2023-01-14T00:22:49
2018-04-14T17:07:32
JavaScript
UTF-8
C
false
false
1,530
c
#include <stdio.h> #define max 5//表示顺序表申请的空间大小 int enQueue(int *a,int front,int rear,int data){ //添加判断语句,如果rear超过max,则直接将其从a[0]重新开始存储,如果rear+1和front重合,则表示数组已满 if ((rear+1)%max==front) { printf("空间已满"); return rear; } a[rear]=data; rear = (rear+1)%max; return rear; } int deQue...
[ "863562441@qq.ocm" ]
863562441@qq.ocm
2aee8db4510060f13ee2afb8306ba296b4d1017d
000d45bdbb44d95ec200dd8146df105c56eb347a
/factorial.c
c370cee10accc50706736153a49f8dc1e69c7d4c
[]
no_license
brendonmatos/mips-assembler-factorial
3b2ee5e647ea7e22892e06af7bd4062686d6fe19
3205a2c4182708e190aae78d9d880c0be7c90177
refs/heads/master
2021-06-14T14:09:55.711193
2017-04-02T23:39:09
2017-04-02T23:39:09
null
0
0
null
null
null
null
UTF-8
C
false
false
321
c
#include<stdio.h> int fat(num){ if( num <= 0 ){ return 1; } else { return num * fat(num-1); } } int main(int argc, char const *argv[]){ int result = fat(5); printf("%d\n", result); return 0; } /* Acumular a parte fracionaria / Recursivo / 1 / (!n) / EULER NUMBER E / Descobrir o valor de E */...
[ "compras@megamidia.com. br" ]
compras@megamidia.com. br
9f17643482d6a27e6e28648ef0c378a34242bea3
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/staging/comedi/drivers/extr_ni_labpc_common.c_labpc_ao_write.c
608fabfa18a244606dd449ab178c9c7bebd179f2
[]
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,251
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
157b867d80e9aaef18575c8aabb9ba27d9dbaaec
628ae308aaa67cbea9c5b839a979140ef8c1ce25
/src/builtin_interfaces/msg/detail/time__struct.h
4d2c99bf87439dcd98c09a1ba52b5e1fb2095c25
[ "Apache-2.0" ]
permissive
arafat877/micro_ros
f676a06bd2ca4828b3a6c07ae110914ac338e9b7
56676e56ceed07af4dedf1f92b8a4f4768691921
refs/heads/master
2023-05-09T18:11:00.706157
2021-06-14T15:12:33
2021-06-14T15:13:04
null
0
0
null
null
null
null
UTF-8
C
false
false
1,053
h
// generated from rosidl_generator_c/resource/idl__struct.h.em // with input from builtin_interfaces:msg/Time.idl // generated code does not contain a copyright notice #ifndef BUILTIN_INTERFACES__MSG__DETAIL__TIME__STRUCT_H_ #define BUILTIN_INTERFACES__MSG__DETAIL__TIME__STRUCT_H_ #ifdef __cplusplus extern "C...
[ "wuhanstudio@qq.com" ]
wuhanstudio@qq.com
605840313e066291a74117e95703fc1849a0fe64
51f63ffbecc7d1f4c59ee8d576f5b1eceb1ef868
/lab2/ls/lab2.c
b5f45d70f05549732389cbcea20248ea523bb7c1
[]
no_license
7D24H/Python
9b749f14069c63a06dc1f57986de8365bab8c898
e12d8f69adbaa4543b9509ca6aa995feea90bb6d
refs/heads/master
2020-03-16T22:38:05.781778
2019-05-03T08:48:37
2019-05-03T08:48:37
133,046,823
0
0
null
null
null
null
UTF-8
C
false
false
15,172
c
#include<stdio.h> #include<stdlib.h> #include<string.h> char root[10][12]; //十层目录,每层文件名最多10字节 int byteOffset[10]; int byteNum[10]; int canFind; int isRoot ; int deepOfDir; int RootEntCnt; //根目录最大文件数 char root2[10][12]; //用于存储搜索的根目录 int deepOfDir2; //用于存储搜索的根目录长度-1 int fileOrDirByteOffset; //输出文件内容或目录统计时需要的...
[ "dada7d24h@163.com" ]
dada7d24h@163.com
9a8eb55aa8b21b4fe198414e531c6a2baaaf9f2f
864c4b0691cfff9d1fc970dbc4a60935fb81d51e
/C-programming/TDL/tdl/src/_TDL_WithStatementTreeNode.C
d9a5d2a877386ade224e202289e6bf7e7b6ef062
[]
no_license
guillep19/frob
7b4ecb1d3d54ef3160e999badb80228b05ac53ba
ca25fab485ca24bc2910161956fc5f5d961d3c98
refs/heads/master
2021-01-22T03:39:51.534803
2015-12-18T03:20:36
2015-12-18T03:20:36
19,125,922
0
1
null
2015-10-26T03:06:35
2014-04-24T22:14:09
C
UTF-8
C
false
false
3,452
c
/* * Copyright (c) 2008, Carnegie Mellon University * This software is distributed under the terms of the * Simplified BSD License (see tdl/LICENSE.TXT) */ #include "_TDL_WithStatementTreeNode.H" /*virtual*/ _TDL_WithStatementTreeNode::~_TDL_WithStatementTreeNode() { } /*************************...
[ "kurco19@gmail.com" ]
kurco19@gmail.com
3d9f367b0e63073d0adc3efa768a66abfe9341e6
c17df9027095555bf6718693eaa8b532b36dc2d6
/hr-tecs/workspace/unit_test/gen/nMruby_tsKernel_Initializer.c
c0f6e877c0287054339eddb20a53253f77a291e6
[]
no_license
seito-zoso/tecsunit_mruby-on-ev3rt-tecs
8ab5754883637d3d2f6759fbdfe06c620eb49abe
67511793bd45e3a0a7c3ce2d3377ba8cb5d36c85
refs/heads/master
2020-07-20T21:38:16.915051
2019-09-12T06:10:59
2019-09-12T06:10:59
206,712,522
1
0
null
null
null
null
EUC-JP
C
false
false
5,996
c
/* * このファイルは tecsgen により自動生成されました * このファイルを編集して使用することは、意図されていません */ /* #[<PREAMBLE>]# * #[<...>]# から #[</...>]# で囲まれたコメントは編集しないでください * tecsmerge によるマージに使用されます * * #[</PREAMBLE>]# */ /* プロトタイプ宣言や変数の定義をここに書きます #_PAC_# */ #include "nMruby_tsKernel_Initializer_tecsgen.h" #ifndef E_OK #define E_OK 0 /* success */ ...
[ "ioplkj0987@gmail.com" ]
ioplkj0987@gmail.com
b34b585f1f618795031aff173d7c8cff63df5ccd
0d00c0a869f59c52fb73169c6880754490b3f0a6
/nyist_143_1.c
6b9654424456eb01988218d96e79e9580434af75
[]
no_license
wchyumo2009/nyist
d95b6e72cc363c02271ea04986029c38f105ebe6
4b62319ffd31cf6762eaa8e541950ee535b31578
refs/heads/master
2021-01-15T14:46:37.332085
2015-04-05T06:58:39
2015-04-05T06:58:39
9,580,395
0
0
null
null
null
null
UTF-8
C
false
false
363
c
/* auther: C.H King * build time: 2013/4/27 */ #include <stdio.h> #include <string.h> int main () { int t, m, n, i; char str[210]; scanf ("%d", &t); while (t --){ scanf ("%d %s %d", &m, str, &n); for (i = 0; i < m; ++ i){ str[i+m] = str[i]; } n %= m; for (i = n; i < n+m; ++ i){ printf ("%c", str...
[ "wchyumo2009@163.com" ]
wchyumo2009@163.com
c1733118c0d3cd7fb60ca2c1338042f2834ee810
42e191420093cd48d0bc6735cbd5833ebedcc724
/glza/GLZAformat.c
0fd666b8f8febf490ae7b6d2be8c946273704e4a
[ "Apache-2.0" ]
permissive
xsbchen/TurboBench
848a493325a9232892561486e785d87e2571c607
54fc827edff94ec39c0d0d63c308d0ae39a747e0
refs/heads/master
2020-12-12T03:20:14.121067
2020-01-14T19:15:19
2020-01-14T19:15:19
234,028,971
1
0
null
2020-01-15T08:00:16
2020-01-15T08:00:16
null
UTF-8
C
false
false
38,009
c
/*********************************************************************** Copyright 2014-2017 Kennon Conrad 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/license...
[ "powturbo@gmail.com" ]
powturbo@gmail.com
a70f1d67f95d155e1c483079cd95257096460aef
7784002f7bbd38dad52b7e6c3aed292936373f07
/src/Linux/Atomic.inline.h
767f1af9cd405c1a395e4294112d5a8ce8f1ea9e
[ "Apache-2.0" ]
permissive
Enseed/GenericAtomic
be12c970c16067cb296864b7f52b77d0dd85c42b
daf3eb64a3e4a6f0bb277a6617327270a98274ba
refs/heads/master
2023-08-01T11:38:30.962242
2015-08-02T14:41:25
2015-08-02T14:41:25
38,550,990
0
0
null
null
null
null
UTF-8
C
false
false
2,028
h
/******************************************************************************* Copyright 2006-2010 Enseed inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including with...
[ "gaspardpetit@enseed.com" ]
gaspardpetit@enseed.com
2e379c0dc4fe5c85090342a8a0f6d958d1da8455
ca8ef5e7495edb3485c0d30f64f70d7144f258b6
/src/platform/user_main.c
f2ba3b364534c9c53a7ed045035f6ae8342ff724
[]
no_license
fandw06/scdpm-cpp
b9358fec20a3f0fb41eb314d5e6751757bfa5d71
8fa40d2272c25733f0c3a05c5fecd38df67d9763
refs/heads/master
2021-09-18T23:48:45.285764
2018-07-21T21:44:59
2018-07-21T21:44:59
81,577,298
0
0
null
null
null
null
UTF-8
C
false
false
10,385
c
/** **************************************************************************************** * * @file user_main.c * * @brief Assist source code. * **************************************************************************************** */ /** ******************************************************************...
[ "fandw06@gmail.com" ]
fandw06@gmail.com
07ed652d4ad850617328fae117ed7484326cf587
06edbf3158ee9858dee0a58ba85910bb41c1da30
/pong/paddle.c
f630e75a6fe110886466baf5e1395da423d306ae
[]
no_license
a7sharp9/E53
4b65707c79033dc3b40b36928221b52fa97b3092
b4f8bf885c528c49d0c8bc4be5744569688f8029
refs/heads/main
2023-01-13T10:45:37.409176
2020-11-17T21:32:41
2020-11-17T21:32:41
313,747,844
0
0
null
null
null
null
UTF-8
C
false
false
3,062
c
/* * paddle.c * * Created on: Mar 11, 2018 * Author: Yuri */ #include "paddle.h" #include <signal.h> #include <stddef.h> #include <curses.h> #include "drawable.h" static struct paddle { struct drawable position; // the current position of the paddle's top // and its length in y-direction struct b...
[ "git@machkasov.com" ]
git@machkasov.com
97146a6b8f55fc0a15b60ab5b4deb029e3b33d62
83312a3db939d315a676eee10f2f97b61952b1e0
/evaluation of sufix.c
46ee403ee9e5ce6123f4dc71092ba785b7cec6b9
[]
no_license
lakshmankollipara/Data-Structures
22a7a75148c43f8cd0956488a7a5a7b5176d6df5
996d4baddaaf61598caf0b0968980ce64d493543
refs/heads/master
2016-09-10T04:38:58.144716
2015-09-06T20:18:38
2015-09-06T20:18:38
42,017,508
0
0
null
null
null
null
UTF-8
C
false
false
1,155
c
#include<stdio.h> #include<string.h> #define maxsize 10 typedef int stackentry; typedef struct stack { int top; stackentry entry[maxsize]; }stack; int stackfull(stack *s) { return s->top>=maxsize; } int stackempty(stack *s) { return s->top<=0; } int createstack(stack *s) { s->top=0; } void push(stackentry item,stack *s...
[ "lakshmankollipara@gmail.com" ]
lakshmankollipara@gmail.com
7337d85a745be01673320576f44d28cc8e3dd6e2
f262085a295c6a12b5f4f86b1a36d92e2e254b3d
/simulator/lvgl/LVGL.Simulator/lv_drivers/display/monitor.h
e908a6fb0bd384ebe943df34cad1d3833f63d727
[ "MIT" ]
permissive
fxsheep/8910DM_LVGL
a7419a0ec4ff8b0612200b0073759c7beb7fad5e
652a91d7ebda374be58fbb927714263234a78698
refs/heads/master
2023-07-09T16:37:09.962057
2021-08-11T07:18:47
2021-08-11T07:18:47
391,400,407
2
0
null
2021-07-31T15:55:06
2021-07-31T15:55:06
null
UTF-8
C
false
false
1,035
h
/** * @file monitor.h * */ #ifndef MONITOR_H #define MONITOR_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifndef LV_DRV_NO_CONF #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_drv_conf.h" #else #include "../../lv_drv_conf.h" #endif #endi...
[ "864876693@qq.com" ]
864876693@qq.com
b8301947e8ed9d652b2f5f89c76961151eb61cd2
6b5d6690678f05a71837b85016db3da52359a2f6
/src/net/third_party/nss/ssl/sslcon.c
ccd00260ec2ef853069c5da46df496177bebedf7
[ "BSD-3-Clause", "MIT", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MPL-2.0", "LGPL-2.1-only", "LGPL-2.1-or-later", "GPL-2.0-or-later" ]
permissive
bopopescu/MQUIC
eda5477bacc68f30656488e3cef243af6f7460e6
703e944ec981366cfd2528943b1def2c72b7e49d
refs/heads/master
2022-11-22T07:41:11.374401
2016-04-08T22:27:32
2016-04-08T22:27:32
282,352,335
0
0
MIT
2020-07-25T02:05:49
2020-07-25T02:05:49
null
UTF-8
C
false
false
108,951
c
/* * SSL v2 handshake functions, and functions common to SSL2 and SSL3. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nssrenam.h" #include "cert....
[ "junhuac@hotmail.com" ]
junhuac@hotmail.com
5ac907413705b03f8889f574a43a83678f7ed236
49efdb90fae2f61c72d441d54d47b2e0d4263771
/linux/yunosemaphore/src/release-yunosemaphore.c
a1081b811f16c8b69f13f3b7eabe84f57a179070
[ "MIT" ]
permissive
Tikubonn/yuno
0214775e18f8424e3702afec1303f84dbf892d2b
8d118d964439d455c4e7c204eed9b06327a2ffed
refs/heads/master
2020-08-02T19:04:21.523416
2020-06-11T07:42:00
2020-06-11T07:42:00
211,473,621
0
0
null
null
null
null
UTF-8
C
false
false
322
c
#include <yuno.h> #include <semaphore.h> int release_yunosemaphore (yunosemaphore *semaphore){ reset_yunoerror(); if (semaphore->closedp == false){ if (sem_post(semaphore->semaphorep) != 0){ set_yunoerror(YUNOOS_ERROR); return 1; } return 0; } else { set_yunoerror(YUNOALREADY_CLOSED); return 1; } ...
[ "tikubonn@outlook.com" ]
tikubonn@outlook.com
76871021426c9394f622d12342be2eabb92d0238
c52bf4ec52bb11d8a2a913412ec0aedb5748f888
/tek1/graph/rt/.svn/pristine/76/76871021426c9394f622d12342be2eabb92d0238.svn-base
d697297f3a6981657aa67d88b06f4d0635d36a3c
[]
no_license
platelk/project
5f8e1a155bac7f7f9b65a27c668cbfc9d06a3b0f
53eda72963f667e2c07d741ba0b03b8bec5926cf
refs/heads/master
2021-01-18T22:34:53.703760
2016-05-10T14:45:57
2016-05-10T14:45:57
13,128,086
2
6
null
null
null
null
UTF-8
C
false
false
987
/* ** mlx.h for raytracer in /home/leprov_a//depot/rt/inc ** ** Made by alexis leprovost ** Login <leprov_a@epitech.net> ** ** Started on Wed May 2 17:36:18 2012 alexis leprovost ** Last update Sun Jun 3 06:17:22 2012 kevin platel */ #ifndef __MLX_H__ #define __MLX_H__ #include "global.h" #include "color.h" #i...
[ "kevin.platel@epitech.eu" ]
kevin.platel@epitech.eu
b6f52c90bca36d64a72e15702e250b2c87e00dfe
c475cd8531a94ffae69cc92371d41531dbbddb6c
/Libraries/freetype-2.12.1/include/freetype/ttnameid.h
37b505a05bdc5e2960799cb047ef4c9a14e7e38f
[ "Apache-2.0", "LicenseRef-scancode-free-unknown", "FTL", "GPL-1.0-or-later", "BSD-3-Clause", "GPL-2.0-only", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain", "GPL-3.0-only", "LicenseRef-scancode-unknown", "Zlib" ]
permissive
WolfireGames/overgrowth
72d3dd29cbd7254337265c29f8de3e5c32400114
594a2a4f9da0855304ee8cd5335d042f8e954ce1
refs/heads/main
2023-08-15T19:36:56.156578
2023-05-17T08:17:53
2023-05-17T08:20:36
467,448,492
2,264
245
Apache-2.0
2023-05-09T07:29:58
2022-03-08T09:38:54
C++
UTF-8
C
false
false
58,769
h
/**************************************************************************** * * ttnameid.h * * TrueType name ID definitions (specification only). * * Copyright (C) 1996-2022 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modifi...
[ "max@autious.net" ]
max@autious.net
ef207ae80e02e6c53cf5f8cfa3b9bb0c9e85e350
319a039d8fdb27ba5cd03bb46cf56aee7866ab45
/sw/riscv_test/qsys_spi.h
68d521fb902d3f64d265c3c64976919b7426fd88
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
panda5mt/scr1-sdk
4fbb39ea424450ce452588a0c9a50dffa0bd5024
8cba9804bdc6c80aad83832adc043b2e998bc194
refs/heads/master
2021-05-21T16:49:41.586323
2020-04-05T04:53:57
2020-04-05T04:53:57
252,723,839
0
0
NOASSERTION
2020-04-03T12:21:13
2020-04-03T12:21:12
null
UTF-8
C
false
false
1,015
h
#ifndef SCR_QSYS_SPI_H #define SCR_QSYS_SPI_H #include <stdint.h> #include "plf_de10lite_scr1.h" #include "qsys_mem_map.h" #ifndef SYSTEM_BUS_WIDTH #define SYSTEM_BUS_WIDTH 32 #endif #ifndef CAL_ADDR(BASE, REGNUM) #define CAL_ADDR(BASE, REGNUM) (((BASE) + ((REGNUM) * (SYSTEM_BUS_WIDTH/8)))) #endif // define SPI_0_B...
[ "lynxeyed@live.jp" ]
lynxeyed@live.jp
bad007d891bfffba96669d13a8c0d736c6d6bb27
31bc1c7d7a11dd5cc893ecd83b3f7ee6a1ed8ac6
/piscine-c/j11/ex01/main.c
ba8ec62c16073844737a5a52980800af9a35095e
[]
no_license
maur1th/42-core
7ace89584b832b6a17ac0e67fa7adc24c71d9e8b
7bc6d8729d0f317281e07691b3125ca8583642ec
refs/heads/master
2021-03-24T14:01:56.303810
2016-03-21T23:29:11
2016-03-21T23:29:11
43,626,193
0
0
null
null
null
null
UTF-8
C
false
false
476
c
#include "ft_list.h" void ft_putstr(char *str); void ft_list_push_back(t_list **begin_list, void *data); void print_list(t_list *list) { while (list != NULL) { ft_putstr(list->data); ft_putstr("->"); list = list->next; } ft_putstr("\n"); } int main(void) { t_list *list; list = NULL; ft_list_push_back(...
[ "maurin.th@gmail.com" ]
maurin.th@gmail.com
7f2b5f99005a06e93956df52e31681daebb7feda
1ba4abd0d77a1984117ed6abdb415f9993fdfe82
/nuttx/nuttx/arch/arm/src/tsb/tsb_es2_unipro.c
8371ebec19e9afd1eea4a9d72e477f6bef88ebcd
[ "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "MIT", "LicenseRef-scancode-other-permissive", "ISC" ]
permissive
vixadd/FMoto
5ce3ee3712212ac5dc40d2e05458bab1ffbb00eb
a266307517a19069813b3480d10073f73970c11b
refs/heads/master
2022-06-17T20:20:30.564111
2020-05-08T14:34:51
2020-05-08T14:34:51
103,983,945
4
0
null
null
null
null
UTF-8
C
false
false
1,954
c
/** * Copyright (c) 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: * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions an...
[ "dkroell@acm.org" ]
dkroell@acm.org
9900e5d7c8e2028e7fda7fc9e816a0c9e2253bbc
b6dcaec955c00b2a3b2977de58d882dc70ce84f7
/DOS Prgms/BCKSRCE/TC/INCHARMS.C
ef942f4f10707824f221d774b9e5ce42b526f510
[]
no_license
xxdoc/blacklotussoftware
4097f8372631c96c04a48eed834c594dc1425d65
e462493915b08c6dd1dac19f25f484dfe609f99d
refs/heads/master
2023-03-21T08:45:34.578315
2020-04-22T04:18:15
2020-04-22T04:18:15
null
0
0
null
null
null
null
IBM852
C
false
false
2,317
c
/* module title: inchar.c * function names: int inchar() * void outchar() * * author: Kim J. Brand * * revision history: * version/--date--/by reason-------------------------------------------- * 1.0 10/01/84 kb Common C Functions initial release * * compiled with: stdio.h...
[ "jonhyland@hotmail.com" ]
jonhyland@hotmail.com
f47436a3ed5d650600c602e1486617b002fa8947
1c6a7ae5dca2a38c68fde97a676478c6573bca02
/linux-3.0.1/drivers/staging/octeon/ethernet-defines.h
6a2cd50a17dfe0e4f76747ea67d10f6285c597c2
[ "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later", "Apache-2.0" ]
permissive
tonghua209/samsun6410_linux_3_0_0_1_for_aws
fab70b79dc3e506dc03ac1149e2356137869c6ca
31aa0dc27c4aab51a92309a74fd84ca65e8c6a58
refs/heads/master
2020-04-02T04:24:32.928744
2019-01-20T13:51:34
2019-01-20T13:51:34
154,015,176
0
0
Apache-2.0
2018-10-24T14:51:04
2018-10-21T14:07:31
C
UTF-8
C
false
false
4,158
h
/********************************************************************** * Author: Cavium Networks * * Contact: support@caviumnetworks.com * This file is part of the OCTEON SDK * * Copyright (c) 2003-2007 Cavium Networks * * This file is free software; you can redistribute it and/or modify * it under the terms ...
[ "kyh1022@163.com" ]
kyh1022@163.com
572a4c8629e9677dc3cfe262f2f961c4070c199c
6a9fd0fb0b798aea16b59093b5934d6183110dfe
/nemu/src/cpu/exec/call/jo.c
c8b00db06296ea1cd3bb2a553696fd8d5b98181e
[]
no_license
cosikng/NEMU2020
80d987f99b8505dc875281943dacb2f048b30cd0
ebd8c53c1cff9cad46a4515679dec07c833ae979
refs/heads/master
2023-06-10T17:43:34.104337
2020-12-28T07:41:48
2020-12-28T07:41:48
298,558,717
0
0
null
null
null
null
UTF-8
C
false
false
283
c
#include "cpu/exec/helper.h" #define DATA_BYTE 1 #include "jo-template.h" #undef DATA_BYTE #define DATA_BYTE 2 #include "jo-template.h" #undef DATA_BYTE #define DATA_BYTE 4 #include "jo-template.h" #undef DATA_BYTE /* for instruction encoding overloading */ make_helper_v(jo_si)
[ "ysdsko0@126.com" ]
ysdsko0@126.com
a1c70f0e6d4b422229c755140bfc2ea410c09af1
e70a0191d5134e77ee7f53a41a95d44d372d6d17
/Int-Divide Recursion/int-divide.c
0539f438e344a4ffeac2b63c76f721df224a654d
[]
no_license
jenniferjsmmiller/CS277
6c0116c85339b432649e5ddc0a230b8c597f3ebb
02dfcf18c2aadfba4c605bb6091ffa450ee095b9
refs/heads/master
2016-09-10T00:13:00.887629
2016-02-26T21:44:27
2016-02-26T21:44:27
39,055,367
0
0
null
null
null
null
UTF-8
C
false
false
301
c
#include <stdio.h> int int_divide(int a, int b) { if (b == 0) { return 0; } else if (a - b == 0) { return 1; } else if (a < b) { return 0; } else { return (1 + int_divide(a - b, b)); } } int main(void) { int c = int_divide(10, 5); printf("%d\n", c); return 0; }
[ "jenniferjsmmiller@gmail.com" ]
jenniferjsmmiller@gmail.com
764afb556f1ddef17bef2420d875af671c5359b2
c20f9377e47cc74621dadbd18c5a1e47b22d4712
/src/backend/cuda/kernel/sha/hmac.h
9911733c31df5d596dbf4be8a33332de364d411c
[]
no_license
JJJollyjim/entrust-cuda-rs
96e8d70a90074cf3be92f22fd87d7de77fa32b99
190526fd313511f58fd51ebec6592bafd8507e78
refs/heads/master
2020-12-28T16:06:51.908623
2020-02-05T08:29:08
2020-02-05T08:31:50
238,398,927
0
0
null
null
null
null
UTF-8
C
false
false
2,953
h
/* --------------------------------------------------------------------------- Copyright (c) 1998-2010, Brian Gladman, Worcester, UK. All rights reserved. The redistribution and use of this software (with or without changes) is allowed without the payment of fees or royalties provided that: source code distribution...
[ "jamie@kwiius.com" ]
jamie@kwiius.com
42d96dfb319f8c2599edaf4025b3ea8bc6ec6975
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/25b53d63-4487-48de-8653-db0356e1a98d.c
53a9c3cbbf2bbc995efb5ecd0dd7b7b8085d3c1e
[]
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
540
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; i = 53; l = 64; k = i/j; l = i/j; l = i%j; l = l/j; k = i-k*i; //variables /* START VULNERABILITY */ int a; long b[8]; long c[90]; a = 0; do { //random ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
a132fc0af5f9d713f7dd13fe2ed3c767539f4326
9242ce27c03464b12cbbedb1bea384bf5c279041
/asn1_gen/MeasObjectId-v1310.h
6309acf7d1085c91d7393128cca1a06207647d9d
[]
no_license
zhuminfeng/asn1c_test_mini
765d669bd6a5bc3cfa3a0e43ce9e1e6dc2fe2c96
4ddc50e555823572d089fa5f5618f34d69f66305
refs/heads/master
2021-06-18T18:50:13.431850
2017-03-15T10:56:40
2017-03-15T10:56:40
null
0
0
null
null
null
null
UTF-8
C
false
false
1,190
h
/* * Generated by asn1c-0.9.28 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "../asn1_defs/EUTRA-RRC-Definitions.asn" * `asn1c -gen-PER -fcompound-names -fnative-types` */ #ifndef _MeasObjectId_v1310_H_ #define _MeasObjectId_v1310_H_ #include <asn_application.h> /* Includi...
[ "andre@softwareradiosystems.com" ]
andre@softwareradiosystems.com
205fde38035b917a22db1f3298ef4db58b6eac9e
70484f48a15f2ded2f6b0bc2df805eac55d7e572
/kerberosV/src/lib/otp/roken_rename.h
7248f224181a091f9ffaff001f7cf0355cae1b04
[ "BSD-3-Clause" ]
permissive
jakch79/test-src
7d4e2a093c3116e81a806c92ceaceb149b451bf4
b9d7c75651a80b9b67eacedcef0a716e973dd707
refs/heads/master
2021-01-13T02:26:14.923981
2014-01-05T16:03:49
2014-01-05T16:03:49
24,812,476
1
0
null
null
null
null
UTF-8
C
false
false
2,504
h
/* * Copyright (c) 1998 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * 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 sourc...
[ "robert@openbsd.org" ]
robert@openbsd.org
96366ee94815c4a56abc97b2a9c646db8be59c95
00bc11b60e1088f22b11bafdd9b1e755aa004c12
/SRC/H/FRMAP3.H
ab33886567483e062a89254e8de2e6d3a278f4f8
[]
no_license
Almahmudrony/BattleOfBritain
7a29c28eccfad7c9fb5c4082a6a988bcfe9a3d7a
ab87c6c9490c48912f1f6bf65cc5da97d5e0515b
refs/heads/master
2022-01-11T16:19:14.153102
2015-08-11T22:39:41
2015-08-11T22:47:57
null
0
0
null
null
null
null
UTF-8
C
false
false
3,980
h
// // High res front end map water optimisation lookup // // #include "frmap3sk.h" {FIL_MAP32_1111,FIL_MAP32_1151,FIL_MAP32_2111,FIL_MAP32_2151,FIL_MAP32_3111,FIL_MAP32_3151,FIL_MAP32_4111,FIL_MAP32_4151,FIL_MAP32_5111,FIL_MAP32_5151,FIL_MAP32_6111,FIL_MAP32_6151,FIL_MAP32_7111,FIL_MAP32_7151,FIL_MAP32_8111,FIL_MAP32...
[ "hhhh@hotmail.com" ]
hhhh@hotmail.com
2039edbfeed27f81f40752759a1bcb0701a93578
628ae308aaa67cbea9c5b839a979140ef8c1ce25
/src/rmw/events_statuses/offered_deadline_missed.h
b96623f3244d9e576afc285d52bce6bdf2b39896
[ "Apache-2.0" ]
permissive
arafat877/micro_ros
f676a06bd2ca4828b3a6c07ae110914ac338e9b7
56676e56ceed07af4dedf1f92b8a4f4768691921
refs/heads/master
2023-05-09T18:11:00.706157
2021-06-14T15:12:33
2021-06-14T15:13:04
null
0
0
null
null
null
null
UTF-8
C
false
false
1,512
h
// Copyright 2020 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 ...
[ "wuhanstudio@qq.com" ]
wuhanstudio@qq.com
7cde70f063ba69d260c840a04de2f49b3d981129
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/mmc/host/extr_sdhci-xenon-phy.c_xenon_emmc_phy_config_tuning.c
25641cdd4e5e4ccd03f6e8b65de1f08d578c7384
[]
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
2,620
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
54570bc4a4a2c4797957c235d20b0da933ecdb01
0fdee1f7b416e5ef339bdd968c1373916b3d8c87
/Supp_07/strlen.c
75ef7a05c10d732a867b448474acd06ce6739976
[]
no_license
Scott-S-Lin/C_language3
febef238b3942d46c14461f7656b97b81fa995b5
d82b93d79bb25e2fa65df5748b0a51405d5f753d
refs/heads/master
2020-05-15T10:43:07.885770
2019-04-19T03:43:06
2019-04-19T03:43:06
182,196,497
0
0
null
null
null
null
UTF-8
C
false
false
476
c
#include <stdio.h> #include <string.h> /*int my_strlen(char *str) { int i; for(i=0; str[i]!='\0'; i++) ; return i; }*/ int my_strlen(char *str) { int i; for( i=0; *str!='\0'; str++, i++) ; return i; } int main() { char msg[100] ...
[ "noreply@github.com" ]
Scott-S-Lin.noreply@github.com
e1fa916fc44c9e6236ff8a4bb229f6c5749cd00a
993a4b71475061978574f361a703204fc37f5138
/phoneme_feature-mr1-rel-b04/pisces/src/native/common/include/PiscesUtil.h
c0c79d338f50406261990fd715ab9e36b292f9d7
[]
no_license
PhoneJ2ME/releases
1d93e51e0081a1d331ea0cf1c1f1e5d55f0914cc
6585f23149f090e0ff3a94ee61cae6bf2394e78b
refs/heads/master
2021-01-19T10:39:17.955758
2008-12-17T20:32:36
2008-12-17T20:32:36
82,216,780
4
1
null
null
null
null
UTF-8
C
false
false
3,049
h
/* * * Copyright 1990-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free ...
[ "rajaa@6dfe35fe-931f-0410-af5f-a91b034811cd" ]
rajaa@6dfe35fe-931f-0410-af5f-a91b034811cd
792708a5e787283fa8a253a6f7adc816e5d6c0bb
61cbb50e4c7a9b2fe9f26092c47e30ae0c9d4fa7
/STM_PROG_C2_SILABS/STM_PROG_C2_SILABS_V2/SRC/LIB/stm32f10x_exti.c
52dd587696dc98db2db3df51d38fa27befb4443f
[]
no_license
RobusAsmCoder/SiLabs-Programmer
80283faa186592a747a804075515912c74c34f54
fe671c793f541986e398aec55573a01a28786cbb
refs/heads/main
2023-05-03T00:03:35.408409
2021-05-25T05:46:39
2021-05-25T05:46:39
370,576,285
3
0
null
null
null
null
MacCentralEurope
C
false
false
8,744
c
/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_exti.c * Author : MCD Application Team * Version : V2.0.1 * Date : 06/13/2008 * Description : This file provides all the EXTI firmware functions. **********...
[ "RobusAsmCoder@ukr.net" ]
RobusAsmCoder@ukr.net
d67d3a7fe411e5d3778f99299f0636524b6baf69
b7dd78009818913ebcd638f25a7ae9298c76577f
/1-0-ft_strcpy/ft_strcpy.c
c36ac7b5c2a70666e194bb26fe58366805cfe857
[]
no_license
rcomb/42exam
352f6292c46ae00fc73d0bd13f7ea3dd45c047d2
457b8b26bb8e73d3405575600bc16c5bb05fbf01
refs/heads/master
2020-03-31T02:12:24.092742
2019-04-28T05:23:14
2019-04-28T05:23:14
151,812,945
0
0
null
null
null
null
UTF-8
C
false
false
1,018
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strcpy.c :+: :+: :+: ...
[ "rcombe@e1z2r8p2.42.us.org" ]
rcombe@e1z2r8p2.42.us.org
9dadd8b15a7fdf6eb1e893875e5e965a1391a327
10e64f8dca0b596b339169f80c8706edb51eed9f
/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/share/ti/ti-dsplib-c66x-tree/packages/ti/dsplib/src/DSPF_sp_lud_sol_cmplx/c66/DSPF_sp_lud_sol_cmplx.c
4a374f5aef99d7b3c200b5625da9b80f9e5977f9
[]
no_license
wangy2000/LeezBoard_TI5708
264cea03d04402cf14714e35f1ca9efd4a1ef7cb
1c0e92c5b61de16f8d8aeb86852c9d53ed99ac58
refs/heads/master
2020-06-16T22:01:26.340391
2019-04-23T13:21:54
2019-04-23T13:21:54
null
0
0
null
null
null
null
UTF-8
C
false
false
7,540
c
/* ======================================================================= */ /* DSPF_sp_lud_sol_cmplx.c - complex linear solver by LUD, single precision*/ /* Optimized C Implementation */ /* */ /* R...
[ "82796620@qq.com" ]
82796620@qq.com
e67dd316d54daf83f70f5d6028071f4e36393bdf
ffac0a87766f82d051606d8866ef7be2f0046bf4
/TP/sets.h
9241761a9fc0371702ecf78b9f46fa7a23641809
[]
no_license
LukasForst/APO
3b7f5a9650372f6d9fb3a9e40241e9f05e4970bd
5a974d026f70b2239445674c58598b6f03a0538b
refs/heads/master
2021-01-19T00:52:50.244987
2017-05-23T13:54:24
2017-05-23T13:54:24
87,215,659
0
0
null
2017-05-15T20:27:37
2017-04-04T17:26:45
C
UTF-8
C
false
false
573
h
/** * @author Lukas Forst * */ #ifndef APO_SETS_H #define APO_SETS_H #include "color.h" #define NUMBER_OF_STORED_C 14 /** * Structure defining c number with real and imaginary part. * */ typedef struct { double real; double imaginary; } c_set; /** * Generate julia set according to the given parameters...
[ "forstluk@fel.cvut.cz" ]
forstluk@fel.cvut.cz
4699d20de7b72facb9d65b8f74e92fd88ea99417
237bd20d35188b10caf24f26489d8bdf6abad2d6
/enlatest/wattsup/energymon-wattsup.c
3bf6f18ddc8ba858145dea32c0acda779c198574
[ "MIT", "Apache-2.0" ]
permissive
kukzile/DPforDVFS
e99759c8392ccb2a9d75b8d7b98145eba41ce2e1
1d65f41c558d7dbffae607e2292398cfb8897258
refs/heads/master
2023-05-07T02:26:37.524870
2021-06-04T22:21:26
2021-06-04T22:21:26
273,262,415
0
0
null
null
null
null
UTF-8
C
false
false
11,922
c
/** * Energy reading from a Watts Up? Power Meter. * Written for communications protocol serial data format 1.8. * See: * https://www.wattsupmeters.com/secure/downloads/CommunicationsProtocol090824.pdf * * @author Connor Imes * @date 2016-02-08 */ #include <assert.h> #include <errno.h> #include <inttypes.h> #include <p...
[ "kritikukreja@Kritis-MacBook-Pro.local" ]
kritikukreja@Kritis-MacBook-Pro.local
2477c21a99c83df2a591d8c5b135f793666655db
28afeb3e271d68b46d55a693c5157a6e711c4a46
/c05/ex06/ft_is_prime.c
a07d4d0f7e3502bdf7cb40c8a7260c75d52123c0
[]
no_license
dkfnaly2k/har
fccce8125a8b256d2996c8a74069a86979216c7b
a30f1f71d437a366c1b5924203c0bbd4a27a7227
refs/heads/master
2023-01-28T08:44:46.323564
2020-12-10T17:16:03
2020-12-10T17:16:03
315,001,482
0
0
null
null
null
null
UTF-8
C
false
false
1,159
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_is_prime.c :+: :+: :+: ...
[ "Arumium@users.noreply.github.com" ]
Arumium@users.noreply.github.com
d3985063500a1033bbb5e5c8511d2c4115e28af6
37306ef7e36f2f5e46cbe4fb92d0c1de7426e124
/user/stm32f10xusb.c
15cf89f5c874baeb35534724c5ad0c21f1a617b6
[]
no_license
AndreyGribanov/USB-STM32F108
0ea37554341986990ba0998324005c2ff17df5e2
29b7373c5731274c3e546fefd4880d5aa8c478ff
refs/heads/master
2022-06-17T03:49:02.511096
2020-05-04T16:28:10
2020-05-04T16:28:10
261,240,538
0
0
null
null
null
null
WINDOWS-1251
C
false
false
1,166
c
#include "stm32f10x.h" #include "stm32f10xusb.h" void setStatTx(uint8_t ep, uint16_t stat) { register uint16_t tmp = USB->EPR[ep] & 0x73f;//спецификатор register указывает компилятору хранить значение tmp ^= (stat << 4); // переменной не в памяти, а в регистре процессора для быстрого до...
[ "agry@mail.ru" ]
agry@mail.ru
0bacba1352a9b30b4b65b2f5cc556ace6623f41e
d6d6badf1714b3f9e929c1d8fe329dbbe51a8585
/srcs/module/interpreter/interpreter.c
bca4dbb19e24e3ca87a6a1822c5ffe8cc34e7f76
[]
no_license
ffoissey/42sh_42
c072d6f20293c0014f8651bfb2ee6e7053b18371
ffb44b826356f694d137fcfd678ffeec1108ed4f
refs/heads/master
2021-07-19T12:22:34.577653
2020-07-20T19:27:57
2020-07-20T19:27:57
196,191,116
6
1
null
null
null
null
UTF-8
C
false
false
1,531
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* interpreter.c :+: :+: :+: ...
[ "frederic.foissey@gmail.com" ]
frederic.foissey@gmail.com
ed4faeb6b9eb3992accb58015cb6cbfe7c4e47ea
f90ab41db7e209c86c926749db0d3e765ebe4140
/c_int_add.c
df3cf673e6d0540f3d83949994d02027d5876aa9
[]
no_license
advx9600/easy_mistake
0f4936018b009371b7989b621e8aca0e6fb7b4a2
10c7a7051cb47c6dde35635805377de28185cd6b
refs/heads/master
2022-11-12T19:00:57.545645
2022-10-26T01:52:48
2022-10-26T01:52:48
19,851,130
0
0
null
null
null
null
UTF-8
C
false
false
125
c
#include <stdio.h> int main() { int a =1; a= (a++)%3; printf("a:%d\n",a); a= (a++)%3; printf("a:%d\n",a); return 0; }
[ "abc@abc-virtual-machine.(none)" ]
abc@abc-virtual-machine.(none)
aca04a1d11fdeb64162b3cf36d2dac92e3da9f7a
af1cd4d89ae1e1781164b5449c769153554421a5
/AiSD/Lista 3/zadanie 1/quicksortSelect.h
875bf76e3eab017424d0065a746f6bcccfc511e1
[]
no_license
Kubciooo/4SEM
123d0bc39721dd1912b12283f73e91ae6b378cd8
160f903298d54d7c99ef34a5362c6f678c66225e
refs/heads/master
2021-03-02T01:41:08.286900
2020-08-11T11:37:56
2020-08-11T11:37:56
245,827,651
0
0
null
null
null
null
UTF-8
C
false
false
1,856
h
int findMedian(int arr[], int n) ///znajdz mediane danej czesci tablicy { sort(arr, arr+n); return arr[n/2]; } void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; } int partition_r(int arr[], int l, int r, int x) { int i; ...
[ "noreply@github.com" ]
Kubciooo.noreply@github.com
d069d4decf5ce7e23ba75b9acbed3f621ebea3c5
92656502c2bc80217d5445fd30318743292a9847
/Beginner/sum of digits in integer.c
f1d8dabcc5fa1fe944e7caf54e3d25de9290d237
[]
no_license
oviyasuresh/C-Programming
37079e83bb8a1f7c90db4b22c92a8a0c13d8ac8f
89566e5931f73559081ea3e3c01eda139c07d20d
refs/heads/master
2022-12-28T02:07:56.614305
2018-05-30T14:39:12
2018-05-30T14:39:12
114,620,724
1
34
null
2020-10-02T06:23:55
2017-12-18T09:21:16
C
UTF-8
C
false
false
223
c
#include <stdio.h>   int main(void) { int num,temp,sum=0; printf("enter the number"); scanf("%d",&num); temp=num; while(num!=0) { temp=num%10; sum=sum+temp; num=num/10;   } printf("\n%d",sum); return 0; }
[ "noreply@github.com" ]
oviyasuresh.noreply@github.com
90494177bbe3ab9f46821d1a71fedb8a2540df42
fa32e1579b76c6e6e14001f10143ceeadea5aa72
/station/Drivers/BSP/STM32469I-Discovery/stm32469i_discovery_ts.h
0da0c4d9d54db8e696260d3d3ff350c369343e74
[ "MIT" ]
permissive
tigercosmos/bus-iot
0e155cb0a36a63969b1576f65865f913aa3098ec
a08427e41b33b9102c3dcc79f27599ad9b56b750
refs/heads/master
2021-01-19T15:17:18.752546
2020-03-09T04:04:59
2020-03-09T04:04:59
100,954,785
1
2
MIT
2020-03-09T04:05:00
2017-08-21T13:25:13
C
UTF-8
C
false
false
7,282
h
/** ****************************************************************************** * @file stm32469i_discovery_ts.h * @author MCD Application Team * @version V1.0.3 * @date 04-August-2016 * @brief This file contains the common defines and functions prototypes for * the stm32469i_discover...
[ "b04209032@ntu.edu.tw" ]
b04209032@ntu.edu.tw
144f869e5d737124dbca435dadc6eeb3d13e9413
94bcea8f25dbda339609fae0f2e109934944edaf
/src/dynamic-plugins/sf_preproc_example/sf_dynamic_preproc_lib.c
36b68e2ee9a3cc512159a4b35b92b60edb337b23
[]
no_license
sunzhuo1987/aegis--shield
490662adc33e4f4434a24d0c0726b4c18fef6615
3fa9fd0f04d964319c9fd26991d85e55ecb90f51
refs/heads/master
2021-01-10T19:20:43.154643
2010-09-12T03:08:36
2010-09-12T03:08:36
41,459,311
1
0
null
null
null
null
UTF-8
C
false
false
4,372
c
/* $Id$ */ /* ** Copyright (C) 2005-2008 Sourcefire, Inc. ** ** 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. You may not use, modify or ** distribute this program under any o...
[ "zhangwei198900@1dcb1bec-0506-11df-81fe-833e88af963c" ]
zhangwei198900@1dcb1bec-0506-11df-81fe-833e88af963c
4e9106aebb546c18f6846d6e99d028bd52425d99
d27bfad71b4cb539a82cebfa17d9b89f16f25c3d
/src/dataset_c/6a2e08f4e3bf4124accf9381ac92a7455b8dc50e.bin.c
43cd463a13f7848e4b73a0da98598ac7ecb9730d
[]
no_license
baammi/ddos_detection
3d9cdc4bad847a0f3c190b4f9415eb30854659fe
1120409a5457849391e31bcc82fcd65b6b13b2db
refs/heads/master
2018-09-07T17:52:21.425043
2018-06-04T20:18:44
2018-06-04T20:18:44
118,620,483
1
0
null
2018-03-10T10:18:26
2018-01-23T14:21:26
null
UTF-8
C
false
false
858,798
c
// // This file was generated by the Retargetable Decompiler // Website: https://retdec.com // Copyright (c) 2018 Retargetable Decompiler <info@retdec.com> // #include <fcntl.h> #include <signal.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include <stropts.h> #include <sys/mman.h> #include <sys/prc...
[ "noreply@github.com" ]
baammi.noreply@github.com
76e3d851e0403a062c0a5ca4711afdbb925d3509
96bef246c4a70515e90a1e03126f147eded0d673
/tests/transport.c
9992408b328a9c82383d4072a6a1959ff38b8ba0
[ "MIT", "GPL-1.0-or-later" ]
permissive
toppk/nng
2a6fa6d3afd11439553489d0c0985c47e60ff8e2
c1ec816164a4971908612258e6f17cd38e3e79b9
refs/heads/master
2020-03-10T16:51:59.548684
2018-04-14T18:39:02
2018-04-14T18:39:02
129,484,878
0
0
MIT
2018-04-14T05:26:30
2018-04-14T05:26:30
null
UTF-8
C
false
false
2,408
c
// // Copyright 2017 Garrett D'Amore <garrett@damore.org> // Copyright 2017 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also b...
[ "garrett@damore.org" ]
garrett@damore.org
7c2cb0c2658172338a1551e7f6da337cacc6b68b
bd3f1c7fe1ea844753379cfe54096d9fc3e55882
/NO.4/Project1/Project1/19救援.c
da8d66863d34d4ead2877c9066e8e742c077b4fe
[]
no_license
dqazzz/C_Learn
fc50963b617742fdeb264bf1cf327da4e62f2687
0c24e5dbf2ecb193331ee68bbfe21e8718736338
refs/heads/master
2020-03-24T16:17:47.324806
2018-07-30T03:41:53
2018-07-30T03:41:53
142,819,472
0
0
null
null
null
null
UTF-8
C
false
false
338
c
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main19() { int a,d,t; scanf("%d", &a); float b, c,e,f,g=0; for (int i = 0; i < a; i++) { scanf("%f %f %d", &b, &c, &d); float f= (b*b+c*c),r; r = sqrt(f); e = (float)1.5*d + 2 * r / 50; g += e; } t = g; if (g - t > 0) { t+=1; } printf("%d"...
[ "asuspc+dqazzz@users.noreply.github.com" ]
asuspc+dqazzz@users.noreply.github.com
92ac2fa7b70151184fbe1ac8de7c6a5f7121a9fd
ce1d4f9404eea588fc272b31db98c44f29dfa95a
/postfix.c
39e528a69b7e4dbb525982cf958546a4fec33b4d
[]
no_license
zaheem21/DSLab
37c0b61628eedda40c080129bc38e7834decfae2
44b67a7622dd4cfdd7fe3588314d860795fd93ca
refs/heads/master
2021-01-01T04:38:26.497813
2017-08-04T10:48:57
2017-08-04T10:48:57
97,216,370
0
0
null
null
null
null
UTF-8
C
false
false
893
c
#include<stdio.h> #include<ctype.h> typedef struct conversion { char a[30]; int top; }stack; void push(stack*,char); char pop(stack*); void convert(char[],char[]); int priority(char); int main() { char infix[30],postfix[30]; printf("\nEnter INFIX EXPRESSION\n"); scanf("%s",infix); convert(infix,postfix); printf("\n\nPO...
[ "alannathani96@gmail.com" ]
alannathani96@gmail.com
8884ae3bf658f2617d6dea49f313288b75083672
a3f5bf298e679b293795027bbf90c14060649038
/Headers/Private/StylingKit/PXAnimationInfo.h
fa476cb4568dc71f1933b084b36a4ab52f36f46f
[ "Apache-2.0" ]
permissive
StylingKit/StylingKit.Pods
b8ec535b4453b26ff1444d12454c4d45d5fcdd13
5aa4a3fea3427232f2dca7f4f5d44c468d54e07e
refs/heads/master
2016-08-12T11:55:57.222105
2016-01-19T08:08:01
2016-01-19T08:08:01
47,678,033
0
0
null
null
null
null
UTF-8
C
false
false
77
h
../../../../../Pod/Classes/freestyle/src/Core/Styling/Infos/PXAnimationInfo.h
[ "anton.matosov@gmail.com" ]
anton.matosov@gmail.com
1706729b776b54cda49ad5669114de6e58d79c4d
e9f1f1e85223f3d6d3b43686a2019ade76ce6eee
/ques2_assignment2.c
8179bc8af6234366cc706b2200377d62d6b28763
[]
no_license
sahilrastogi1234/basicFileHandlingOperations
625e79b510cf617f220ba512f1f34afc7d0415cf
6107761efa2987bdd4750b8f8a29d50c2d7697d5
refs/heads/main
2023-05-11T19:59:35.156885
2021-06-03T06:22:10
2021-06-03T06:22:10
373,402,404
0
0
null
null
null
null
UTF-8
C
false
false
607
c
// C program to Open a File, // Write in it, And Close the File # include <stdio.h> # include <string.h> int main( ) { FILE *filePtr ; char x[50] = "Writing a sample code for question 2"; filePtr = fopen(".c", "w") ; if ( filePtr == NULL ) { printf( "abc.txt file failed to open." ) ; }...
[ "noreply@github.com" ]
sahilrastogi1234.noreply@github.com
4393c85d52493ecf0e0efe5577459f75b808cf45
7a4640a884d513dc60e66617802e95be9fe9b3f5
/Unity/Temp/il2cppOutput/il2cppOutput/Mono_Security_Mono_Security_X509_X509StoreManager902433605MethodDeclarations.h
0e2531069911d0a1cfea1b2972908ee8f5ae2dfa
[]
no_license
eray-z/Game-Engine-Benchmarks
40e455c9eb04463fef1c9d11fdea80ecad4a6404
2b427d02a801a2c2c4fb496601a458634e646c8d
refs/heads/master
2020-12-25T14:13:36.908703
2016-06-03T16:05:24
2016-06-03T16:05:24
60,355,376
5
0
null
null
null
null
UTF-8
C
false
false
1,214
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // Mono.Security.X509.X509Stores struct X509Stores_t2754714603; // Mono.Security.X509.X509CertificateCollection struct X509CertificateCollecti...
[ "erayzesen@gmail.com" ]
erayzesen@gmail.com
9f751201fefa6697c5313f9459d1b010ebae14e5
145576cf26020ffc60e864b63e1cfcfa52707cd5
/operation_system_project2/SharedMemory.c
58510255ad4d4a47bf0917d398e2f0978a8df81a
[]
no_license
DimitraAvramidou/Operating_System_Project2
a84388de735350e91264dbd99b303cd1044fc050
d0edbc7a9fac9045d01576f58502dd1e62859009
refs/heads/master
2020-03-31T13:23:13.540297
2018-10-09T13:24:27
2018-10-09T13:24:27
152,253,510
0
0
null
null
null
null
UTF-8
C
false
false
635
c
#include "SharedMemory.h" int createShmem(int size) { int shmid = shmget(KEY_SHMEM, size, 0600 | IPC_CREAT); if (shmid < 0) { perror("shmget"); exit(0); } return shmid; } int accessShmem(int size) { int shmid = shmget(KEY_SHMEM, size, 0600); if (shmid < 0) { perror("shmget"); exit(0); } return shmid...
[ "dimav95@hotmail.com" ]
dimav95@hotmail.com
3f05e4de550f4e06c0d6562b742144afe266e1dc
18806aad7d6fdf15840e5472cc26380a91669552
/CS240/lab4-src/linked_list.h
51432ee27170a613799873c53f73187b67f05221
[]
no_license
guttamc7/CS_Projects
0233feb1c68e9d9ab85e67f421c74a1d3bdf6db6
66d9b7b6394741aebc7cbd63bd36b03fbc261110
refs/heads/master
2021-01-15T12:14:03.641695
2012-10-14T20:39:13
2012-10-14T20:39:13
null
0
0
null
null
null
null
UTF-8
C
false
false
1,650
h
#if !defined LINKED_LIST_H #define LINKED_LIST_H typedef struct LINKED_LIST_ENTRY { char * name; // name associated ot this entry char * value; // value associated to this name struct LINKED_LIST_ENTRY * next; // pointer to the next entry in the list. struc...
[ "martellaj@gmail.com" ]
martellaj@gmail.com
0e747ca03594bda8a54c94ed7a505ac480c6e82b
ec278ba0f0213d424898b17fa877bc23a9bd559f
/63xxxxx/631xxxx/6316794/description.txt
81d431e346e6b8f90bfe7d23f75c41b191f405ab
[]
no_license
Eugene007/6xxxxxx
a77fff095ef9c8cae047ff7ac8fedba2b74caca8
7c2090e6d77a71a101df5ec2014b7769fdff7ba0
refs/heads/master
2021-01-24T20:46:26.076200
2013-06-06T14:01:27
2013-06-06T14:01:27
null
0
0
null
null
null
null
UTF-8
C
false
false
83
txt
***********************************************************************************
[ "root@computer" ]
root@computer
c2a118c3c98a11c5b69b625178e3a7c3dc1099ce
cde2d0eb3909274736c961103a6c5e4ecd1925ce
/2. term/IJC/Project 1/eratosthenes.c
94f773102464ca6dbcabe5d66528bf6289d2b7c8
[]
no_license
Iorethan/School
6fa022cb245d368f1a7c7fd01e565996f6557d33
90a5976236ce3a935990dcec3ae6550aa94b3a17
refs/heads/master
2021-05-01T07:35:42.650271
2018-02-11T21:31:16
2018-02-11T21:31:16
121,159,597
0
0
null
null
null
null
UTF-8
C
false
false
524
c
// eratosthenes.c // Reseni IJC-DU1, priklad a), 20.3.2015 // Autor: Ondrej Vales, FIT // Prelozeno: gcc 4.8.4 #include <stdio.h> #include <stdlib.h> #include <math.h> #include "error.h" #include "bit-array.h" void Eratosthenes(BitArray_t pole) { type n = BA_size(pole) - 1; for (type i = 2; i <= sqrt(n)...
[ "xvales03@stud.fit.vutbr.cz" ]
xvales03@stud.fit.vutbr.cz
fd3817c82a9cf0bddd2d3db431215c50ed8f6211
60596ae10a8d9f4b0746808c1e77286781c03c76
/例程zhangwenchao/project/7.pwm脉宽实验/user/main.c
3c3470c4de4a90add62f3efbfefde946c7327469
[]
no_license
zhangwenchao12138/stm32_zwc
9b2670e8ba63372beae1df0a70ae0d16f58c3467
dccae57199c27bbe68da09463f86be53b63832b4
refs/heads/master
2022-05-08T07:19:37.232656
2019-03-18T15:10:35
2019-03-18T15:10:35
176,208,347
0
0
null
null
null
null
GB18030
C
false
false
1,117
c
#include "sysinc.h" int main(void) { //u32 tep=10000; NVIC_init(); SYSTICK_DelayInit(); //延时函数初始化 GPIO_QuickInit(HW_GPIOC, GPIO_Pin_13, GPIO_Mode_Out_PP);//初始化与LED连接的硬件接口 GPIO_QuickInit(HW_GPIOB, GPIO_Pin_9, GPIO_Mode_Out_PP);//初始化与LED连接的硬件接口 UART_QuickInit(HW_UART1, 9600, 2, 2, ENABLE); EXTI_Q...
[ "18003916404@163.com" ]
18003916404@163.com
ffd717fe6f18e8ee8c18c91668c95ec1e896f03f
bade93cbfc1f25160dfbe9493bfa83f853326475
/mwc/romana/relic/d/bin/check/clri.c
ef3b2b9a58c9dbcf0c983a4cf038493bc781a399
[ "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
1,259
c
/* * Clear inodes. */ #include <sys/filsys.h> #include <sys/ino.h> #include <canon.h> #include <stdio.h> union { struct filsys filsys_; struct dinode dinode_[INOPB]; } buff; #define fs buff.filsys_ #define di buff.dinode_ unsigned isize; main(argc, argv) register char **argv; { register fd; if (argc < 3) ...
[ "gspurki@gmail.com" ]
gspurki@gmail.com
e66802eccea3c5762ecc7c5b2ce75b86d8196035
2950a526aa06678ba8029fe22ea6cd9fb5e0a792
/ALDS_Assignment_2_(Code)/puzzle.c
bb9d89b89c7870a6ca6de83a41d1bb6bdef2268e
[]
no_license
Isodhi/ALDS_Projects
d486231f902e5754facbaea1d3eae18de8cc4236
20207a6e694aa9393436e6ba8313882ed752aa8c
refs/heads/master
2020-04-26T22:37:08.202427
2019-03-05T05:16:25
2019-03-05T05:16:25
173,875,665
0
0
null
null
null
null
UTF-8
C
false
false
7,392
c
#include <stdio.h> #include <string.h> #include <limits.h> #include <stdlib.h> #include <time.h> #include <string.h> #include <sys/types.h> #include <sys/resource.h> #include <sys/time.h> /** * READ THIS DESCRIPTION * * node data structure: containing state, g, f * you can extend it with more information if neede...
[ "ishan@Ishans-MacBook-Air.local" ]
ishan@Ishans-MacBook-Air.local
a20142addbf47f92b6c7d84891e901dcaafe6eb1
3944ad3ced99e89a98712ae1e9d3cda83e1b90c6
/reaverse string 2.c
cad35f30c21bee920825e9dd7056e8c53072c722
[]
no_license
PriyankaNohria/C_CODES
5be8171dcc437c8d7b362f4c93cafabde6e8d661
dd54dedc9f14c224d7106a00431e08be1fe8ecbb
refs/heads/master
2022-04-15T22:43:20.185988
2020-01-10T16:55:25
2020-01-10T16:55:25
197,817,515
0
0
null
null
null
null
UTF-8
C
false
false
205
c
#include<stdio.h> int main() { char str1[50]; int i=0; gets(str1); int l=strlen(str1); char temp; while(i<l){ temp=str1[i]; str1[i]=str1[l]; str1[l]=temp; i++; l--; } str1[i]='\0'; puts(str1); return 0; }
[ "priyankanohria1999@gmail.com" ]
priyankanohria1999@gmail.com
ff32faa201b37456b54c130f6556bcbaa85ffb62
45a6d87d4486b0ef2a047077f41aab4f83f06c67
/arcdps_buildpad/buildpad/resources/156634.h
a676db47136157c02ce7733721ba68bca15f2f16
[ "MIT" ]
permissive
darrylo/BuildPad
40948abe71fcf87a462de81ad347dfe5bc6dd7d0
4e51dd4e3534a8107941acb0227026959d1571c8
refs/heads/master
2020-09-01T05:03:06.848767
2020-06-28T22:12:04
2020-06-28T22:12:04
218,886,356
0
0
MIT
2020-06-28T22:12:05
2019-11-01T00:52:51
null
UTF-8
C
false
false
5,353
h
/* generated from 156634.png: do not edit */ const unsigned char tex156634[] = { 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, 0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x06,0x00,0x00,0x00,0x73,0x7a,0x7a, 0xf4,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x...
[ "43143822+xvwyh@users.noreply.github.com" ]
43143822+xvwyh@users.noreply.github.com
f83691f467de285ab23d4b0187f07afff0cbf740
099cfe87cd7fea8e9bab1c2dd0fd8fa0879f4c70
/src/arch/i686/include/kernel/registers.h
66829e78e6d05ca1e7240f05301f400006524d3d
[ "MIT" ]
permissive
miklhh/os4
8d6a61f0e2eb427b07471551b278ad49bdb44298
8fb7d926bb44a498ac50a4fd0dc2c1c8e0941d74
refs/heads/master
2021-01-12T04:01:50.905623
2017-07-26T17:52:57
2017-07-26T17:52:57
77,473,266
3
0
null
null
null
null
UTF-8
C
false
false
1,105
h
/* * Part of OS4, registers_h.h * Author: Mikael Henriksson, miklhh */ #ifndef _I686_REGISTERS_H #define _I686_REGISTERS_H #include <stdint.h> /* Structure for storing registers. Packed so that it can be used as a pointer * to a stack by the task switching routines. */ #ifdef COMMENT_OUT typedef struct register...
[ "mike.zx@hotmail.com" ]
mike.zx@hotmail.com
eda5c00c430f88d2fa9ee9f73e7f244b40365d44
24411817559aa1591a5dcdb5d02c44b2b02153b4
/initialize.h
172e510ad507d1e7285d1f908d1711d47e51cd61
[]
no_license
VT-Introduction-to-Embedded-systems/PWM_music_starter
2922db6a38c4821aa93ecd346eff73c6b1eaa219
06d7aed66d67ff58cce8bcd13b2471c8ad5528a2
refs/heads/master
2020-05-05T12:51:22.989308
2019-04-08T01:58:36
2019-04-08T01:58:36
180,048,036
0
0
null
null
null
null
UTF-8
C
false
false
651
h
/* * initalize.h * * Created on: Mar 21, 2019 * Author: */ #ifndef INITIALIZE_H_ #define INITIALIZE_H_ #include <ti/devices/msp432p4xx/driverlib/driverlib.h> // TODO: Initialization #defines // TODO: Master Init function prototype: Use this function to call your peripheral-specific function...
[ "noreply@github.com" ]
VT-Introduction-to-Embedded-systems.noreply@github.com
4c24892cff9e0d0a992e7350c3499e5279776ccc
5c255f911786e984286b1f7a4e6091a68419d049
/code/e50ff7ec-c925-4fc6-a1dd-59b8165a6590.c
7b41403d8a99b5cd3f7129b8f9358abb44f32410
[]
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
230
c
#include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 533; l = 64; k = i/j; l = i/j; l = l%j; l = i+j; l = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
4bf0a1c7e95a79f7ee6c2beaac53573be1a30523
c2cedcf36667730f558ab354bea4505b616c90d2
/players/maledicta/ares/rooms/city11.c
c01adffd85c762853f67eb9b2dc3f8366c1b648f
[]
no_license
wugouzi/Nirvlp312mudlib
965ed876c7080ab00e28c5d8cd5ea9fc9e46258f
616cad7472279cc97c9693f893940f5336916ff8
refs/heads/master
2023-03-16T03:45:05.510851
2017-09-21T17:05:00
2017-09-21T17:05:00
null
0
0
null
null
null
null
UTF-8
C
false
false
2,547
c
#include "../define.h" inherit ROOM; reset(arg) { if(!present("civilian_mob", this_object())){ MO(CO("/players/maledicta/ares/mobs/civilian"), this_object()); if(random(100) < 50) MO(CO("/players/maledicta/ares/mobs/civilian"), this_object()); } if(random(100) < 30){ if(!present("townguard_mob", this_...
[ "rump.nirv@gmail.com" ]
rump.nirv@gmail.com
88757787471814e59a3084cc3bb7a09c98c802bc
8ad9e3a055c45e15e4d9e3be8be090126d4c7914
/key1.0/Controlling_main0605/Controlling_main/HARDWARE/ds1339/ds1307.h
3593bfcb0fd24021809aaed8854eb2bf812d1402
[]
no_license
liuawei/firstlearngit
335237020fae770b209e636c3bcaae6903398202
c63f1d45f3671f8ba3e6c45d947eca06c250420a
refs/heads/master
2021-01-17T20:55:24.161457
2016-08-08T06:57:00
2016-08-08T06:57:00
64,997,915
0
0
null
null
null
null
GB18030
C
false
false
8,326
h
/****************************************************************************** * @ File name --> ds1307.h * @ Author --> By@ Sam Chan * @ Version --> V1.0 * @ Date --> 11 - 27 - 2013 * @ Brief --> 时钟芯片DS1307驱动 * @ --> 本驱动函数兼容DS1307、DS1338、DS1338Z芯片 * * @ Copyright (C) 20** * @ All rights reserv...
[ "317447534@qq.com" ]
317447534@qq.com
08707773de7f231d20c561bf2631425338d8ccc2
ca343a90353fda2c9191ddf96b36e969e775121d
/src/Win.h
1ca01c96e1891a8e4956a316eea6483c80def1ad
[]
no_license
pinakure/Tetris-Clone
c669f457fdd8df8db84592ea5e3cbfb573c8caf0
47878b67d58b2939a2e6decd85f972f9db645d9b
refs/heads/master
2022-12-19T12:33:58.369297
2020-09-23T22:41:52
2020-09-23T22:41:52
298,110,986
1
0
null
null
null
null
UTF-8
C
false
false
552
h
// // Win.h: Win32 code // #ifndef __WIN_H #define __WIN_H /* ======== WinInit ======== Initializes the Win32 GDI window, and binds Allegro to it. hInst: first parameter given to WinMain. */ int WinInit(HINSTANCE hInst); /* ================== WinHandleMessages ================== Handles all pend...
[ "pinakure@gmail.com" ]
pinakure@gmail.com
a04f49448a511f9ac0b0c46fb250e34672ac7baf
c31767d5d5d7f9267a2607bbddd261a72cc9a6f6
/sm/src/sm-sbi-opensbi.c
e579fda246dd2ead902fdb356b66cdf1ed8efc92
[ "Zlib", "BSD-3-Clause", "MIT", "LicenseRef-scancode-bsd-3-clause-jtag" ]
permissive
keystone-enclave/keystone
39986d7d4d7f1f651a77ccf338ac0ebaf2744a55
9b9dd5a015cc77725b3576441f589c3ea2c7ced0
refs/heads/master
2023-09-03T15:18:31.943293
2023-08-30T02:28:55
2023-08-30T02:28:55
137,123,646
409
136
NOASSERTION
2023-09-09T00:28:40
2018-06-12T20:23:19
C
UTF-8
C
false
false
2,530
c
#include <sbi/sbi_trap.h> #include <sbi/sbi_error.h> #include <sbi/sbi_tlb.h> #include <sbi/sbi_ipi.h> #include <sbi/sbi_string.h> #include <sbi/riscv_locks.h> #include <sbi/sbi_console.h> #include <sbi/sbi_scratch.h> #include <sbi/riscv_asm.h> #include <sbi/sbi_ecall.h> #include "sm-sbi-opensbi.h" #include "pmp.h" #in...
[ "noreply@github.com" ]
keystone-enclave.noreply@github.com
b9bed7eb18ab279c5134c6e4be7981322c65ccb6
9672f2634c58d9b0c4fb92e20570ae4302aceeee
/1000ProgrameC/Examen6/main.c
e2019746a2ab1f952370b1430db601a297edfe9f
[ "MIT" ]
permissive
mhcrnl/01Anul2018
dcec45011b374276b020f96bdb470e25d5b9378f
fcd8ed6950fc5154a8c5092113f08632a3f35329
refs/heads/master
2020-03-12T09:17:37.464094
2018-04-22T10:13:22
2018-04-22T10:13:22
130,549,525
0
0
null
null
null
null
UTF-8
C
false
false
133
c
void f(void) { } int main(void) { int i; i = f(); printf("%d",i); return 0; }
[ "mhcrnl@gmail.com" ]
mhcrnl@gmail.com
883d086c74da2f599b4065f0f51acd36adedf196
a94169ceb4b232ff67e675a89932c4438d87e798
/O4_ASU/O4.video/Storytelling_v1.0/Max Patches Libs/jit.gl.lua-beta7/Lua_dev/Lua_framework/Lua/print.c
98f19530a79b0a6eecae1771d388ffd33540d298
[]
no_license
Synthesis-ASU-TML/Synthesis-TML
78872e0dee07a05b2d900137f9e8b5294a728d2b
f1536ae3c58624d34ecf5fad61393f92a06a24a4
refs/heads/master
2021-01-18T01:30:44.559970
2016-11-26T03:55:11
2016-11-26T03:55:11
17,074,532
4
1
null
null
null
null
UTF-8
C
false
false
5,138
c
/* ** $Id: print.c,v 1.1 2007/01/23 06:08:07 wesley Exp $ ** print bytecodes ** See Copyright Notice in lua.h */ #include <ctype.h> #include <stdio.h> #define luac_c #define LUA_CORE #include "ldebug.h" #include "lobject.h" #include "lopcodes.h" #include "lundump.h" #define PrintFunction luaU_print...
[ "assegid@asu.edu" ]
assegid@asu.edu
15bc60f77c47652d7cb1506454275598af65badb
2de62f6c56ade20febac37fbb1024168667f25cc
/hal/phydm/phydm.h
9a56ee024007ac5af07f0e3c1b228e5530fd5c99
[]
no_license
clnhub/rtl8192eu-linux
1d388f60b4d88bbf3b2511c348172407253b085b
e3e43baa068794fb58d0fdd315a65a931b12ba6d
refs/heads/5.11.2.1
2023-07-20T09:10:51.896669
2023-07-15T16:48:16
2023-07-15T16:48:16
143,839,834
417
104
null
2023-06-12T13:07:04
2018-08-07T07:58:29
C
UTF-8
C
false
false
41,435
h
/****************************************************************************** * * Copyright(c) 2007 - 2017 Realtek Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Founda...
[ "daveholden2010@gmail.com" ]
daveholden2010@gmail.com
e1a1f4a23bbbb137c14ac254d390278472e480da
60532bbf48879571493c8a14d4296a3a8c18bf1b
/exercise/wk2_debug/file2.c
f84d54e4d8559064a6cdc77831967debf8a54100
[]
no_license
iujoseph972/C291-Spring2-2017-master
9596d76c0708950d8f6852b4a356763850539429
22d59a219e509a060c6a9b773e3be2fb9272bb7e
refs/heads/master
2020-03-19T11:56:54.292421
2018-06-07T14:15:24
2018-06-07T14:15:24
136,487,482
0
0
null
null
null
null
UTF-8
C
false
false
301
c
/*Debugging quiz - File No: 2 */ /* The program should correctly print the stored variable values */ include<stdio.h> int main(){ int default = 3.14;2b = 9; char alphabet = 'd'; printf("%Lf\n",&default) printf("%u",&2b) print("The ASCII value of character 'd' is : %d",'alphabet') return 0; }
[ "iujoseph@gmail.com" ]
iujoseph@gmail.com
868fc50da850f6fea16051b5015f274188354a03
0f17e6d97c79e7794069bd9834369791674e825d
/14151171_李资晨_8_17.c
5bb35fd134823f29a1fff9323f0a24f71b857471
[]
no_license
2015CLanguage/Homework9
fd0fb51066449ec708391e7611533ad3b98b2410
89aaf8a61fc41d36f7968a1dd9a20f983b3ad4a3
refs/heads/master
2021-01-12T12:38:20.242874
2015-06-22T07:55:00
2015-06-22T07:55:00
36,709,644
0
0
null
null
null
null
UTF-8
C
false
false
428
c
#include<stdio.h> int main() { int m; char strl[20],str2[20],*p1,*p2; printf("请输入两组字符:\n"); scanf("%s",str1); scanf("%s",str2); p1=&strl[0]; p2=&str2[0]; m=strcmp(p1,p2); printf("输出结果为:d,\n",m); return 0 } strcmp(char *p1,char *p2) { int i; i=0; while(*(p1+i)==*(p2+i...
[ "buaa_2015_c@163.com" ]
buaa_2015_c@163.com
7dceda17fc19a75cc66085a5de9a8f7f43a2adf7
4adcd5dd1f143778a0256d7c271ab768de8183ad
/d3/SHELL.c
c104e7c38dd4e662b9a0fabafce418f318c5a78f
[]
no_license
ArnabCode8/damian-calc
7bb86568a3eb4560dad228b1b9992e5dfbbd310d
7a9202abafa7a35e5ad983a78f8cefbc07ed6287
refs/heads/master
2023-07-23T18:46:13.344201
2021-09-03T04:56:26
2021-09-03T04:56:26
402,650,735
0
0
null
null
null
null
WINDOWS-1252
C
false
false
844
c
#include<stdio.h> #include<math.h> void main() { int x,i; char ch[50],e[19]=":ARNAB PROGRAMMING:",f[15]=":SHUTTING DOWN:"; system("line.exe"); system("theory.exe"); system("line.exe"); system("line.exe"); printf("\n"); for(i=0;i<=19;i++) { printf("%c",e[i]); sleep(100); } printf("\n"); system("\nline.exe"); printf("\n\...
[ "arnab888das@gmail.com" ]
arnab888das@gmail.com
f916088401250350387fbad13b938e8424bb46db
452451a8291f20126124b969c847c6422bc7632e
/msp-ws/balance-bot/util.c
0cb772e21d676c8912d7d8435eed45c5cbe518cf
[]
no_license
lucas-tiz/balance-bot
4e5efd3d74d6cbd87c4c833266b35c1c09046570
a8872820c7edd126b73022541738f5f88e4a432e
refs/heads/master
2023-03-18T11:31:59.081313
2020-11-25T23:19:50
2020-11-25T23:19:50
343,452,866
0
0
null
null
null
null
UTF-8
C
false
false
898
c
/* * util.c * * Created on: Jul 24, 2018 * Author: Lucas Tiziani */ #include "util.h" void LED2_Set(int state) { /* LED2 state: 0 = OFF, 1 = RED, 2 = GREEN, 3 = BLUE */ switch (state) { case 0: MAP_GPIO_setOutputLowOnPin(GPIO_PORT_P2, GPIO_PIN0 | GPIO_PIN1 | GPI...
[ "lucas.tiziani@gatech.edu" ]
lucas.tiziani@gatech.edu
9ab92af6063b2ad97ef689f28564b9327a0cf487
2df95a5acece7837cdbdfeaa07f9ef74c7981ef3
/02557/2557.c
a038f3f2d485ceb417b9c767ea6c1ccfb66c5c0e
[]
no_license
talisman6803/acmicpc.net
33d5a09d66c06119feacb0e642a681f922ec22bd
0c1afab8740f28d9df5ccf79c4372d6e20cb2d93
refs/heads/master
2020-05-23T01:11:11.031507
2019-05-17T04:00:55
2019-05-17T04:00:55
186,583,923
1
0
null
null
null
null
UTF-8
C
false
false
67
c
#include <stdio.h> int main() {printf("Hello World!"); return 0;}
[ "wjstkdals409@hanyang.ac.kr" ]
wjstkdals409@hanyang.ac.kr
78ba25c255c635c5efffdcf5a42c0474d18b38fd
1e183d359f57309d322d6ac8fa06def430d01ead
/SD08WA_V1.0/Interface/MCU_SDK2/mcu_api.c
bd81ab51115ba84cf04f437d67043aee9bc60dd8
[]
no_license
SeanLinQ/SD08WA
699a0a83a0e1b67e2fe2bc7b0ff57a344dd3fa5b
09cee71f52360588c9a66d6f1cd29425a1ed8ee6
refs/heads/master
2022-05-25T12:43:40.829870
2020-04-26T03:37:24
2020-04-26T03:37:24
258,929,862
0
0
null
null
null
null
GB18030
C
false
false
25,752
c
/****************************************Copyright (c)************************* ** 版权所有 (C), 2015-2020, 涂鸦科技 ** ** http://www.tuya.com ** **--------------文件信息------------------------------------------------------- **文 件 名: mcu_api.c **描 述: 下发/上报数据...
[ "349929806@qq.com" ]
349929806@qq.com
0417154928d933c524f76de715ee4cd0f4041303
361968732258fd3fe3f069d298103c712f550452
/Lab3/hello_world_/main/stub.h
9bbd793c5810b43e6cf257207f66a63078993a03
[]
no_license
NicholasJB-AI/ESP8266
4170622c207de4f9f3f802ab6c7c1650599643c3
7f51df89e2fc5903a51d9494b3c17e7dd2c2bcaa
refs/heads/master
2023-02-02T03:44:19.108945
2020-12-22T13:09:24
2020-12-22T13:09:24
null
0
0
null
null
null
null
UTF-8
C
false
false
741
h
#include <stdio.h> #include <assert.h> #include <string.h> void TestString1(char *str); void TestString2(char *str); void TestString3(int str); void TestString1(char *str) { printf("\nThis is Test Case 1. Testing To Print \"\""); assert(*str == '\0'); printf("\nTest Case Passed\n"); } void TestString2(ch...
[ "nicholas.bissessar@my.uwi.edu" ]
nicholas.bissessar@my.uwi.edu
a741ab0ba042485ea65fb4d10ddf37cd63a2fca0
c53bbbdb65378437e05ef1e0de0041684e1797cb
/build/FB/include/ALLEGRO/3D.H
a09d91e3f9d8dd51312b71b33d8738ddf5e2b421
[ "LGPL-2.0-or-later", "LicenseRef-scancode-linking-exception-lgpl-2.0plus", "MIT", "LGPL-2.0-only", "GPL-2.0-or-later", "BSD-4-Clause-UC", "Apache-2.0" ]
permissive
Maeiky/CpcdosOS2.1-1
b4d087b85f137f44fc34a521ebede3a5fc1d6c59
95910f2fe0cfeda592d6c47d8fa29f380b2b4d08
refs/heads/main
2023-03-26T08:39:40.606756
2021-03-16T05:57:00
2021-03-16T05:57:00
345,801,854
0
0
Apache-2.0
2021-03-08T21:36:06
2021-03-08T21:36:06
null
UTF-8
C
false
false
4,053
h
/* ______ ___ ___ * /\ _ \ /\_ \ /\_ \ * \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___ * \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\ * \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \ * \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/ * ...
[ "sebastien.cpcdos@outlook.fr" ]
sebastien.cpcdos@outlook.fr
b5761c5211e63addacee7d6f95b5e528935c53b9
7a46423ac172de8e75bb1f4543ce8ab9af207184
/BoardSupport/app.h
cc043ec902c22043c1f4fa4bd2aba67384cfe7f8
[]
no_license
zkan51/NEVTEX
48bbd9d8c6b778f0bffaddda4d6737e280b291e6
57b60aa3f82bc80dbc65ea6776c8497f03bf30cd
refs/heads/master
2021-01-10T01:50:51.972267
2015-12-02T01:40:10
2015-12-02T01:45:39
45,817,107
0
0
null
null
null
null
GB18030
C
false
false
6,848
h
#include "analysis_function.h" #include "Config.h" //--消息类型定义 // typedef struct message_18 message_18; // typedef struct message_24 message_24; // typedef struct message_24_partA message_24_partA; // typedef struct message_24_partB message_24_partB; // typedef struct vender_id vender_id; // typedef struct call_sign ca...
[ "596931725@qq.com" ]
596931725@qq.com
30837fa9a46cdd729e19e5414cb838a81fe63c98
d60d41cc8edcb1249e5c38f1e3b7f87f35782ac4
/20210115/20210115_10.c
5a8587d890c306a42cc2a741a148ba97eabd83a1
[]
no_license
GerganaLp/CodeAcademy
d5b7b94f43f7dd18077c76a6d05fcc2459b1b4e6
c21af04d27c37f0f461286af9f07c7533ad53225
refs/heads/main
2023-03-31T19:16:24.849769
2021-04-01T22:06:04
2021-04-01T22:06:04
327,880,037
0
1
null
2021-04-01T22:06:05
2021-01-08T11:10:09
C
UTF-8
C
false
false
167
c
#include <stdio.h> const char* c_szText= "Here are " "instructions for " "the program.\n"; int main(void){ printf("Help: %s", c_szText); return 0; }
[ "noreply@github.com" ]
GerganaLp.noreply@github.com
5788255cf4d3b992dbabada00708174ef2752348
091fcd4264fa547a504bca9aa79777ebae341e12
/3rdparty/modbus-rtu.c
ad56cfa74229df9a52e9262b22e9eb7cbd9b3037
[]
no_license
pvdlab/pc-plc-source-file
812e18b7f5e41212966ab6c6678a5ef1e580a611
fa2a947b6758ee0a7c1aaa19ce7e731d33ea05a7
refs/heads/master
2021-02-08T18:30:32.309429
2020-03-01T19:22:07
2020-03-01T19:22:07
244,183,992
0
1
null
null
null
null
UTF-8
C
false
false
27,018
c
/* * Copyright © 2001-2010 Stéphane Raimbault <stephane.raimbault@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any lat...
[ "pvdlab.di.villa.riccardo@gmail.com" ]
pvdlab.di.villa.riccardo@gmail.com
1058dc13d513cf405dcdee1c13157db0153403ff
4fc15ccac40536024440170354cfb420b8c0b921
/Microchip/PIC32CX-BZ_DFP/1.0.73/WBZ451/include/instance/dmt.h
03e09c4b91f88dca3c2141a207cfaf8eaf0376fe
[ "Apache-2.0" ]
permissive
dd-rrc-ps/dev_packs
332ada2d4e127d4b176305cc2149fd61b8ed4836
774a64e80f5f5ee6f54e1b55ee4cffe2762927bf
refs/heads/master
2023-03-12T17:38:20.424934
2021-02-23T21:01:56
2021-02-23T21:01:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,392
h
/** * \brief Instance header file for WBZ451 * * Copyright (c) 2021 Microchip Technology Inc. and its subsidiaries. * * Subject to your compliance with these terms, you may use Microchip software and any derivatives * exclusively with Microchip products. It is your responsibility to comply with third party licens...
[ "thibaut.viard@microchip.com" ]
thibaut.viard@microchip.com
17d9c01a2ad8440ef7604f26a22fc08df4fee6bd
cbfbf9a2b0113763308a4cd579dffb4b6add0eb7
/ProjetsC42/SH2/includes/sh2.h
a9ca12232531454465b0c5dedf466bb4406a89e6
[]
no_license
Derzouli/42
30550eaf3a48b4e46454f4a4fb4d8584a846eaab
f7ef25412bb5aa6c65b2c66578c7f98e4c4fc36e
refs/heads/master
2021-01-15T10:52:00.240238
2015-01-30T16:38:11
2015-01-30T16:38:11
null
0
0
null
null
null
null
UTF-8
C
false
false
2,046
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* sh2.h :+: :+: :+: ...
[ "makoudad42@gmail.com" ]
makoudad42@gmail.com
d92c9d3b0dd9ddf4bdeb93fca00757c2d92d1858
91531d8b1a31d6dc3f1446863c70b6bba493a5b4
/plane/ex1.c
98dcc066c382625d5c57728631e58e5410983494
[]
no_license
dlawltjs/homework
165b3d70bfe74f72196803e01a81c1a75100d7ed
0abae6e571e25ce82db9ec1dcd274b1b53983efb
refs/heads/master
2020-04-02T05:12:49.518591
2016-07-22T00:25:59
2016-07-22T00:25:59
62,494,612
0
0
null
null
null
null
UTF-8
C
false
false
3,284
c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <sys/time.h> #include <string.h> #include <unistd.h> #include <sys/select.h> #include <termios.h> #include <math.h> #include "../engine/engine2d.h" #include "../mapEditor/map.h" #include "plane.h" #include "bullet.h" struct timespec work_timer; doubl...
[ "dlawltjs@gmail.com" ]
dlawltjs@gmail.com
9257208b4bf79bb3462304af8ee77303a6924b0b
222c1a2364efdcce48b9900d127bd262ec6c86a1
/P85.c
93bd5359dc247dbffb409efcbb00a4aa49f4a68e
[]
no_license
HARISHBAVNE/C-programming3
05adaef33c8f42ef8901cc720a8ef2ffc37646f4
728f95bfd95500e84fc5d0caa5e5fb61feb97f86
refs/heads/main
2023-08-29T20:41:28.911661
2021-11-10T06:37:42
2021-11-10T06:37:42
426,510,910
0
0
null
null
null
null
UTF-8
C
false
false
461
c
//count the small letters in string #include<stdio.h> int CountSmall(char str[]) { int iCnt = 0; if (str == NULL) { return 0; } while(*str != '\0') { if((*str >='a')&&(*str <= 'z')) { iCnt ++; } str ++; } return iCnt; } int main() { int iRet = 0; char arr[30]; printf("...
[ "noreply@github.com" ]
HARISHBAVNE.noreply@github.com
3e5d4df9cbb5dae152de77f1e2d5b92c2b4f4b5f
1f3fabdca091a615cf1a66a446e14662a989128d
/Wind Speed/common/driver/wifi.c
a0d67edadfd95d9fdd0ed8b3c57a08229a866149
[]
no_license
Daven005/ESP8266
c8ca8daf6e9bb6b6b7fd18b378e2161a5f110598
dc8c142a4ce6303861e3adb6689b4e5f6d5330c5
refs/heads/master
2022-04-29T12:22:28.729343
2022-04-02T10:25:56
2022-04-02T10:25:56
61,060,824
0
0
null
null
null
null
UTF-8
C
false
false
5,142
c
/* * wifi.c * * Created on: Dec 30, 2014 * Author: Minh */ #include <c_types.h> #include <ets_sys.h> #include <ip_addr.h> #include <osapi.h> #include "user_interface.h" #include "user_conf.h" #include "debug.h" #include "wifi.h" static uint32 startConnectTime; static uint32 connectTime; /...
[ "david@norburys.me.uk" ]
david@norburys.me.uk
09396ec75a30de640ecaa7c509ca866f5b372578
2b7d422e78c188923158a2a0780a99eca960e746
/home/V-REP_PRO_EDU_V3_6_1_Ubuntu18_04/programming/include/v_repLib.h
418cab8aea3d0c86a99e459e0fc722718525fcd3
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sroberti/VREP-Sandbox
4fd6839cd85ac01aa0f2617b5d6e28440451b913
44f7d42494654357b6524aefeb79d7e30599c01d
refs/heads/master
2022-12-24T14:56:10.155484
2019-04-18T15:11:54
2019-04-18T15:11:54
180,481,713
0
1
null
2022-12-14T18:05:19
2019-04-10T02:00:14
C++
UTF-8
C
false
false
98,567
h
// Use this header to dynamically load and bind v_rep.dll and its functions (call loadVrepLibrary and unloadVrepLibrary) #if !defined(V_REPLIB_INCLUDED_) #define V_REPLIB_INCLUDED_ #include "v_repConst.h" #include "v_repTypes.h" #ifdef QT_FRAMEWORK #include <QLibrary> #define LIBRARY QLibrary* #define __...
[ "samuel.p.roberti@gmail.com" ]
samuel.p.roberti@gmail.com
5edd6ebcefa82f7f7478eb9a34c28df146cf72bc
0feea46d057dd699bb7ae2b35fdd945de2b34f90
/Tercero/Redes 2/practica1/srclib/server-fun.c
b4a5e71f4b106217a9fd6db2bf19eee59f5372ee
[]
no_license
Nagomez97/University
774630eb01b0dff87b2bbcb456db5f98266c20ac
b6615f872005ef7c09c03be62b15425ab517887f
refs/heads/master
2018-12-08T22:18:25.504791
2018-06-25T21:16:45
2018-06-25T21:16:45
103,579,999
2
2
null
null
null
null
UTF-8
C
false
false
2,434
c
/** * @brief Implementacion de la libreria de utilidades * básicas del servidor * @file server.c * @author Óscar Gómez, José Ignacio Gómez * @version 1.0 * @date 14/02/2018 */ /*Librerias*/ #include "server-fun.h" /*Librerias de sistema*/ #include <strings.h> #include <stdlib.h> #include <syslog.h> #include <netinet/...
[ "oscar.gomezb@estudiante.uam.es" ]
oscar.gomezb@estudiante.uam.es
f6d2d32dc1243e0488b53998188251b97419f45c
fa70372f89cd2f82e0516844d4de2343c2fb8632
/final_submission/Part3/celeb/merge.h
cb8667fa702e2000643be93091f8d678323b8d77
[]
no_license
FeHioe/csc443_A1
db03135e5d17e6987149acc48e766a16d3990115
1302b98d87a166718898b05a48ec7c4111b80968
refs/heads/master
2021-03-24T13:13:37.606151
2017-03-20T02:42:57
2017-03-20T02:42:57
80,063,963
0
0
null
null
null
null
UTF-8
C
false
false
3,277
h
#ifndef MERGE_H #define MERGE_H #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_PATH_LENGTH 1024 //return values of all functions #define SUCCESS 0 #define FAILURE 1 #define EMPTY 2 typedef struct record { int UID1; int UID2; } Record; typedef struct HeapElement { int ...
[ "fe.hioe@gmail.com" ]
fe.hioe@gmail.com
f71983055d4fdf8a438d155b1c185620603197a1
49ee0aef40f0cdf6d7d8313c1a38205fb29a468d
/NB15230赵铭骐/大作业 test4ios/Classes/Native/mscorlib_System_Collections_BitArray_BitArrayEnumerator.h
b42fd02bef3fbc5415b35485aeeb59d2e293e551
[ "MIT" ]
permissive
Rakerth/iPhone2015
50ddf5e2dd8f7eb2128a7ac931da4103406c213b
b27f4f65a67f6332b46bf95fd88aa2b61fdd8712
refs/heads/master
2021-01-19T07:23:12.672214
2016-01-13T09:01:43
2016-01-13T09:01:43
48,903,194
0
0
null
2016-01-02T15:06:05
2016-01-02T08:06:21
Objective-C
UTF-8
C
false
false
749
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Collections.BitArray struct BitArray_t882; #include "mscorlib_System_Object.h" // System.Collections.BitArray/BitArrayEnumerator struct BitArrayEnumerator_t1221 : public...
[ "rex60513@126.com" ]
rex60513@126.com
ba27ef3ae721ba5748620333bfa59eea3956009b
5a0dfcfb15092dc965c80ed1550a1815d4432f0e
/TestWamp/Pods/Headers/Build/MDWamp/MDWampTransportDelegate.h
cb8c5dd995ccfe45e0bbae65809f2d25b8106691
[]
no_license
kaka09/TestWamp
2321dc83cd3e8a5342b215673329694bd72a6c3d
67c981956618b76007a70fe85d3c9c43c5b45c17
refs/heads/master
2016-09-06T00:49:38.915537
2014-10-28T08:09:43
2014-10-28T08:09:43
null
0
0
null
null
null
null
UTF-8
C
false
false
65
h
../../../MDWamp/MDWamp/MDWampTransports/MDWampTransportDelegate.h
[ "hoannv@rikkeisoft.com" ]
hoannv@rikkeisoft.com
815cf97000203be74263bb32612ddeb66cb69ea0
eca4524a66ff70098a651b763ce7ab4e0e29ecfc
/C/strtoul.c
830a2f7380e3aa04c245589d87650dcade9aac61
[]
no_license
saitama233/CodeLearning
564cb6a6ce875abad1ab815b948755208d95bddf
ac513d2d8dc7f2d200c572a95cdfc339d7c3de07
refs/heads/master
2021-01-19T22:26:37.668463
2019-11-03T10:49:43
2019-11-03T10:49:43
88,815,685
0
0
null
null
null
null
UTF-8
C
false
false
916
c
#include <stdio.h> #include <stdlib.h> #include <limits.h> /* ULONG_MAX */ int main() { char *end; int base = 10; int ret; char *value; /* 完全为数字时, end会指向最后的'\0', *end = '\0', ret = 12345 */ value = "12345"; ret = strtoul(value, &end, base); printf("*end is %c\n", *end); printf...
[ "806126488@qq.com" ]
806126488@qq.com
bff743762e3f21469ad7a62de2810d9026b720cc
1b5c326e0b0c4153404340e5e92ad940cebaa910
/cfiles/external/sparse_matrix_converter/src/io/matlab2.c
1c25ab4d6b831adc8cca11aeb3d1219a2dfd17df
[]
no_license
hookk/graphpart
12ae409a0476a7a8d19f96a94dc463bd27ce9826
54616533ad5888035f0012ea8bfd968fce16838b
refs/heads/master
2022-04-18T06:38:33.696748
2017-12-11T23:18:29
2017-12-11T23:18:29
null
0
0
null
null
null
null
UTF-8
C
false
false
4,493
c
/** * @file matlab2.c * @author Mark Hoemmen * @since 09 May 2007 * @date Time-stamp: <2008-07-16 11:26:54 mhoemmen> * * A new and incomplete Matlab-format sparse matrix file parser * * Copyright (c) 2008, Regents of the University of California * All rights reserved. * Redistribution and use in source and b...
[ "admin@cc.local" ]
admin@cc.local
3da0c86a508a6f3619854e23df6e234e8740c130
fbdffcf1b2137551b36199327f6afc24aec35e7b
/src/Error.c
d0e9a4168c3e58d27865c4eb92445d4e8dcda8ab
[ "MIT" ]
permissive
degustaf/lisp-compiler-old
1c3c02cb71c913d6f17a0f366030fd19d2b5a1fb
e2a5a9e4545d0bf01822df14fbdd4ba019f43938
refs/heads/master
2021-09-06T10:54:13.670268
2018-02-05T20:34:36
2018-02-05T20:34:36
null
0
0
null
null
null
null
UTF-8
C
false
false
1,309
c
#include "Error.h" #include <assert.h> #include <stdarg.h> #include <stdio.h> #include <string.h> #include "gc.h" #include "StringWriter.h" const exception ANY; const exception CompilerExcp = {CompilerException, NULL}; const exception ReaderExcp = {ReaderException, NULL}; const exception RuntimeExcp = {RuntimeExcept...
[ "degustaf@gmail.com" ]
degustaf@gmail.com
01c0349f5dfff72cf50446e01985ddfe6eded482
02f5e1e25b25bf9bfdd13e10d032ad1f77ca2b03
/Core/app/glcd/glcd_graphs.h
7f602df77f5cd632bfad361375c48ad7be148762
[]
no_license
MasuodSamarin/double_efx
8f6357635835cc22b34755827c42c4a68ec8ddf2
385089a2ddb3ae2642e8b38160ae77e0f68c0c9f
refs/heads/master
2021-06-29T23:17:34.396680
2021-05-15T09:56:28
2021-05-15T09:56:28
229,894,232
0
0
null
null
null
null
UTF-8
C
false
false
3,903
h
/** \file glcd_graphs.h \brief GLCD Library - Graph drawing functions. \author Andy Gock */ /* Copyright (c) 2012, Andy Gock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistribu...
[ "base2embedded@gmail.com" ]
base2embedded@gmail.com
6b0cf8dd850b0874f658c75c9883d029bc6de2ac
7a64fc9f62181282c03c24fce725e0f6a97a816d
/Chapter 3/exercise3_02.c
c72b1fe5dd2005559ca4021f0360aad5999cb5fd
[]
no_license
pfvelu/the-c-programming-language-solutions
0626cae5606cbdc1db2be63a7087ab244c243b49
96b86af6c7f1577f7b0c936221bd8e35a548c576
refs/heads/main
2023-07-08T01:08:11.723819
2021-08-25T17:16:43
2021-08-25T17:16:43
null
0
0
null
null
null
null
UTF-8
C
false
false
1,459
c
#include <stdio.h> #define LEN 100 /* length of strings */ void escape(char s[], char t[]); void runescape (char s[], char t[]); /* test escape and runescape functions */ int main() { char s[LEN] = "Having\ta good time?\n"; char t[LEN]; char c[LEN]; escape(s,t); printf("%s\n",t); runescape(...
[ "pfvjpoli@usp.br" ]
pfvjpoli@usp.br
9764174a6e8ff315456c4d7517d155bd6b780fb9
8e1085e0d5499f2e927520b867d7858a2a8decb3
/include/preProcess.h
ab99143d7d40757b64ddebcb7bf8afabfa6d563c
[]
no_license
softwarelight/Writer_identification
7794d7f6f4f57a3a80105124d9a5a8e1d8341cfa
cad5bb06b3e22edb578a07dbf324263737113159
refs/heads/master
2021-04-09T11:00:50.367413
2016-07-28T08:21:38
2016-07-28T08:21:38
null
0
0
null
null
null
null
UTF-8
C
false
false
467
h
/************************************************************************* > File Name: preProcess.h > Author: ma6174 > Mail: ma6174@163.com > Created Time: Thu 07 Jul 2016 12:00:56 PM CST ************************************************************************/ #include<iostream> #include<opencv2/core/core.hpp>...
[ "hustzxl@126.com" ]
hustzxl@126.com