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
880d9e51859ba9de3561546fb5cc5527abd6876a
b850409839e546439998c0f4ddb2367756285d2f
/string.c
648313dc2af006324ee71151082601f1e8f31513
[]
no_license
srinivasvenkata95/sc-and-conversions
0cfd50f755bf185bc366b725a423fb1ac8fc6a1f
49ff726e3152bdf051e80d38908a6fa37bc4a3c3
refs/heads/master
2020-07-18T19:43:46.951069
2019-09-04T11:51:12
2019-09-04T11:51:12
206,302,252
0
0
null
null
null
null
UTF-8
C
false
false
107
c
#include<stdio.h> int main(){ char *ptr="Hello"; int a = 5; int b; puts(ptr); printf("%d\n",a); return 0;}
[ "venkat22211@gmail.com" ]
venkat22211@gmail.com
4e40ce1eaf752bda8c99d8813cf356ae80e21411
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/net/ethernet/marvell/extr_sky2.c_sky2_add_filter.c
51a8e6a014aae6db804d423df4bfe50861167408
[]
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
689
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
1a7229de729d5435d2f14b7dc0623f9abd390378
37d37fd18c3f18e68f90e4cca6bcc93b8973f3b0
/tz_queue.h
54dca6a27ecfa3465f2eb32684b0b68c7e20db28
[]
no_license
mpolitzer/ds
e5cfbfdc2ce024cf5e84a834dd88e3335363c823
c214bb61c0b0546fa759ff267af9fe26f6d4d97b
refs/heads/master
2021-01-13T10:02:29.330177
2016-11-16T16:22:59
2016-11-16T16:22:59
72,152,764
0
0
null
null
null
null
UTF-8
C
false
false
2,200
h
#ifndef TZ_DS_QUEUE_H #define TZ_DS_QUEUE_H #include <stdint.h> /* includes-here */ #ifdef TZ_DS_QUEUE_INLINE # define TZ_DS_QUEUE_M static inline # define TZ_DS_QUEUE_DECLARATIONS # ifndef TZ_DS_ARRAY_INLINE # define TZ_DS_ARRAY_INLINE TZ_DS_QUEUE_INLINE # endif #else # define TZ_DS_QUEUE_M extern #endif #i...
[ "mpolitzer.c@gmail.com" ]
mpolitzer.c@gmail.com
8ee51048bb409b94f5fc0f8a6170561b450a64ef
d187a2eb4da57ab51e809b66d5561981cd3dba7e
/RGG/Vertex.h
6f1ce52bc2752edd4b7f5507480f75c1a7217ec8
[]
no_license
qianyouzhou/RGG
9665b32fe1b462499f1c5de7c68991349d68d0e1
04bafaa5d8f0c82a76c242a275f8d90e65c186d4
refs/heads/master
2021-04-27T13:07:15.837294
2018-01-20T16:14:51
2018-01-20T16:14:51
122,432,811
1
0
null
2018-02-22T04:59:37
2018-02-22T04:59:36
null
UTF-8
C
false
false
865
h
#ifndef VERTEX_H #define VERTEX_H #include <d3dx9.h> // Call in constructor and destructor, respectively, of derived application class. void InitAllVertexDeclarations(); void DestroyAllVertexDeclarations(); //=============================================================== struct VertexPos { VertexPos():pos(0.0f, ...
[ "hanzhoutang@gmail.com" ]
hanzhoutang@gmail.com
9d3dc77580e00e1ac90ad1afa1cf66071dad1361
91af4c63a7a68fd9ea1bf7a20704cf3551d7c434
/0x1B-sorting_algorithms/3-quick_sort.c
4b6e06c7b25f43210283f49a91b0b9ebca9f5f75
[]
no_license
zmbslyr/holbertonschool-low_level_programming
51b2edc994f5de846d54646b689cc251ecbc3064
d318569e86757956b343381390bf607f019228b8
refs/heads/master
2020-04-21T09:04:43.619677
2019-08-30T00:05:40
2019-08-30T00:05:40
169,437,779
0
2
null
2019-10-28T06:04:09
2019-02-06T16:31:33
C
UTF-8
C
false
false
1,767
c
#include "sort.h" /** * quick_sort - Calls recursive qSort function on array * @array: Array to be sorted * @size: Size of the array * * Return: void */ void quick_sort(int *array, size_t size) { if (array == NULL || size < 2) return; qSort(array, size, 0, size - 1); } /** * partition - Function to partiti...
[ "markhedgeland@Marks-MacBook-Air.local" ]
markhedgeland@Marks-MacBook-Air.local
32c7c484836f10d48cc097fad0a16bb28d57f012
40b53cf23e51868a76f3f4f82ba3668c46899ca5
/libft/signed_decimal.c
db9f3b05e100aaf41136eaa851662bbc8faeea63
[]
no_license
Adubedat/Nm-Otool
d58666903049d936dd7296fcf37f2826edac56f1
3e9e323735adf90d310e9ecf3dc311becc908e83
refs/heads/master
2021-05-06T15:24:51.795349
2018-03-01T15:38:06
2018-03-01T15:38:06
113,564,814
0
0
null
null
null
null
UTF-8
C
false
false
2,252
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* decimal_signed.c :+: :+: :+: ...
[ "arthur.dubedat@gmail.com" ]
arthur.dubedat@gmail.com
060b93d10c9a54619527c7c962b5ce311c78ab01
bca6236c6950504749735db6bf0652876a5afde4
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/inc/OMX_Mp3Dec_Utils.h
d10ff368ec1189924dd1d46059b7927d4333d2d8
[ "Apache-2.0" ]
permissive
XiangGen/galaxy
3ef02dc84aeb38243284770023d6c7e17bcac3d2
ffb382e6f7f7786df7ff2324eb3f7f0f870b8048
refs/heads/master
2022-10-05T05:52:51.942323
2020-06-07T12:48:18
2020-06-07T12:48:18
null
0
0
null
null
null
null
UTF-8
C
false
false
38,430
h
/* * Copyright (C) Texas Instruments - http://www.ti.com/ * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later versi...
[ "apollopublic@163.com" ]
apollopublic@163.com
b8ce13b5de7069bc50f36a86962722f56382bf43
3c883e1084f0a61e558c2d210bb1b4ae8a5e6a06
/third_party/nvxs-1.0.2/CLAPACK/TESTING/EIG/zerred.c
e80daec7ac1fc731664f02273fcd07200890a035
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "Python-2.0", "BSD-3-Clause" ]
permissive
nya3jp/python-animeface
7e48aa333c9f365a80acdf43e5d516edc8d0b189
15caf8b1ca29847f0dceb54e4b91c77726c4111c
refs/heads/main
2022-04-29T20:17:01.198810
2022-04-04T10:17:59
2022-04-04T10:17:59
10,998,381
150
14
Apache-2.0
2022-04-03T07:18:40
2013-06-27T14:06:08
C
UTF-8
C
false
false
16,446
c
#include "f2c.h" #include "blaswrap.h" /* Common Block Declarations */ struct { integer infot, nout; logical ok, lerr; } infoc_; #define infoc_1 infoc_ struct { char srnamt[6]; } srnamc_; #define srnamc_1 srnamc_ struct { integer selopt, seldim; logical selval[20]; doublereal selwr[20], se...
[ "takahashi.shuhei@gmail.com" ]
takahashi.shuhei@gmail.com
e369f03b0ae4d76583e9ed66a86eec3131f0ff91
4d7a0c15cc7a24b99ab70c3af1a6fd2638bcd672
/include/cmsis/atmel/samd21b/include/samd21j15b.h
216c8f5436ecb40628dae9707854a86e99aa00b7
[]
no_license
huynhsi681988/saml21-experiment
7b85513e0e4f26f97db18c960f242a9163afa2e2
acb3021c6df6d60e17af2c2a3287ae3d54c6b9e7
refs/heads/master
2021-06-05T11:28:56.317076
2016-08-23T01:39:17
2016-08-23T01:39:17
null
0
0
null
null
null
null
UTF-8
C
false
false
31,967
h
/** * \file * * \brief Header file for SAMD21J15B * * Copyright (c) 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: * *...
[ "charles@openrov.com" ]
charles@openrov.com
8302a55f8ba424db3a63de4b865b3b88aa20db0b
2cb5de9f70205f1fc6ffd26d1f10089bce133c81
/ssl/tls13_both.c
17f7161e7fed59960d55ed6b11a1c3bdcd4229ce
[ "BSD-3-Clause", "OpenSSL", "ISC", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows" ]
permissive
lchia/boringssl
e398b852de6e500f7d290254276d0b66a54c9e38
5ae12e6e54cafafdc1e29b4ce8d25519af87ae0c
refs/heads/master
2022-10-15T13:03:18.554076
2016-12-03T17:21:27
2016-12-03T17:21:27
75,487,855
0
1
NOASSERTION
2022-10-01T16:58:41
2016-12-03T17:07:57
C
UTF-8
C
false
false
18,797
c
/* Copyright (c) 2016, Google Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS...
[ "lichenghua2014@ia.ac.cn" ]
lichenghua2014@ia.ac.cn
ba80695b567877ad82354e0ac1903a6d134bd7e2
d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9
/testcases/CWE122_Heap_Based_Buffer_Overflow/s01/CWE122_Heap_Based_Buffer_Overflow__char_type_overrun_memcpy_02.c
3cd60f12d8862451e06c9dacdde214dcea17a9be
[]
no_license
arichardson/juliet-test-suite-c
cb71a729716c6aa8f4b987752272b66b1916fdaa
e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9
refs/heads/master
2022-12-10T12:05:51.179384
2022-11-17T15:41:30
2022-12-01T15:25:16
179,281,349
34
34
null
2022-12-01T15:25:18
2019-04-03T12:03:21
null
UTF-8
C
false
false
4,767
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__char_type_overrun_memcpy_02.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow.label.xml Template File: point-flaw-02.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * Sinks: type_overrun_memcpy * ...
[ "Alexander.Richardson@cl.cam.ac.uk" ]
Alexander.Richardson@cl.cam.ac.uk
6904c4f42f7952ff368ac7359a0de99cb4a93961
ebda80cfc44cd7ad82ec17cd9f2511ef8526bbe8
/AN58764/INF and FX2LP source code/CDT_VCP/Virtual COM Example Code/Source/syncdly.h
18287b6287243c21db2066382da4309cbf9b2327
[]
no_license
iwin2212/vitual-com-cypress-cy7c68013a
87246ed34c9b2d7de5858f5592d0734d5f71c85c
f0b0365d3f2b8492a7cc314432d0abad86091efa
refs/heads/master
2023-05-27T20:40:08.556075
2021-06-11T07:57:10
2021-06-11T07:57:10
375,316,564
1
0
null
null
null
null
WINDOWS-1250
C
false
false
7,808
h
//----------------------------------------------------------------------------- // File: syncdly.h // Contents: EZ-USB FX2 Synchronization Delay (SYNCDELAY) Macro // Enter with _IFREQ = IFCLK in kHz // Enter with _CFREQ = CLKOUT in kHz // // $Archive: /USB/Target/Inc/syncdly.h $ // $...
[ "nbthang2212@gmail.com" ]
nbthang2212@gmail.com
e1ef00c2aec37fdfe10b6c545e808b43baed8601
1e2c2688150ddcc894d9049fc353029cd75c8d87
/supporting libraries/pyside/PySide-1.2.4/pyside_build/py3.5-qt4.8.7-64bit-release/pyside/PySide/QtHelp/PySide/QtHelp/qhelpcontentitem_wrapper.h
c732f85e6b52986138a33f4a277344d391e09616
[]
no_license
tryanaditya/mainmain
f3f9559230a520b69bdafc8bf9e36ebbf14147fa
fc82048e17587af3b56b977bea476a7f2506a7ba
refs/heads/master
2021-01-11T03:11:00.020758
2016-10-16T23:55:05
2016-10-16T23:55:05
71,084,893
2
0
null
null
null
null
UTF-8
C
false
false
1,046
h
/* * This file is part of PySide: Python for Qt * * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). * * Contact: PySide team <contact@pyside.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 2...
[ "tryan.aditya@yahoo.com" ]
tryan.aditya@yahoo.com
4e848cd10d1c50211036d553f5e92d0d7e67acca
4e57cec1bf65ed35341cf946936d382a31df6bfe
/csc501-lab0/sys/sleep.c
55daa118258e4e08196fa059554d6753cf641116
[]
no_license
harsh6292/OS_PA0
58968ad557d528ed099dbdb4196e96d601cd5633
d06b4a580596d31ca6ee6f6435c63ad0861d03c9
refs/heads/master
2020-04-06T03:39:26.323473
2014-12-02T20:17:36
2014-12-02T20:17:36
null
0
0
null
null
null
null
UTF-8
C
false
false
1,013
c
/* sleep.c - sleep */ #include <conf.h> #include <kernel.h> #include <proc.h> #include <q.h> #include <sleep.h> #include <stdio.h> #include <lab0.h> extern int start_summary; /*------------------------------------------------------------------------ * sleep -- delay the calling process n seconds *-------------...
[ "harshv.6292@gmail.com" ]
harshv.6292@gmail.com
0c6f3056ff692b1d53070f608f2d8f8b8bfe1acf
7f9e92faa8b1e7458fc58aaeb1358afbe085166d
/GeeksforGeeks/Algo/Dynamic Programming/010 0-1 KnapSack Problem [Recursion Tabulation]/0-1 KnapSack Problem [Recursion].c
f05eab5260f27953cab253ebce8e8958d38d6ef3
[]
no_license
Sampreet/Competitive-Programming
b0ef4b7c1c7b8f4a6283ba52b1fa743138adc19a
9d6b2080c1cc5f9be4c8d5aaa23ec5dca3d2be55
refs/heads/master
2021-07-02T04:54:40.020050
2021-06-28T15:55:20
2021-06-28T15:55:20
58,644,636
0
0
null
null
null
null
UTF-8
C
false
false
572
c
#include<stdio.h> #include<stdlib.h> int max(int a,int b){ return a>b?a:b; } int knapSack(int W,int *wt,int *val,int n){ if(n==0||W==0) return 0; if(wt[n-1]>W) return knapSack(W,wt,val,n-1); else return max(val[n-1]+knapSack(W-wt[n-1],wt,val,n-1),knapSack(W,wt,val,n-1)); } int...
[ "sampreet.kalita@hotmail.com" ]
sampreet.kalita@hotmail.com
505e50f03efabaaacaf48bd55190cc98fafea27b
5b69b19b6cfcc1cd1528be9f3286396c04510dbd
/mediatek/platform/mt8127/kernel/drivers/hdmi/hdmictrl.h
97ba857e9387798aac25254dc512fd5c9721b2c7
[]
no_license
bq/edison-3
54c65a515c417943037a0cc7135261287ef0eba9
d4971e1bb170321893348739dad16f28c3c93fc7
HEAD
2016-09-10T22:58:07.001997
2015-11-18T09:09:04
2015-11-18T09:09:04
27,552,861
3
3
null
null
null
null
UTF-8
C
false
false
31,429
h
#ifndef __hdmictrl_h__ #define __hdmictrl_h__ #ifdef MTK_INTERNAL_HDMI_SUPPORT #include <linux/interrupt.h> #include <linux/i2c.h> #include <linux/slab.h> #include <linux/irq.h> #include <linux/miscdevice.h> #include <asm/uaccess.h> #include <linux/delay.h> #include <linux/input.h> #include <linux/workqueue.h> #inclu...
[ "anddevops@bq.com" ]
anddevops@bq.com
42ff53bebfa566bcf490101834627f5b8191ed42
b922d2e365b39cd6713d46314b9c76c1e12dd4e2
/src/drv_htc_vive/vive_config.h
afa468f78856a12136f7bace3f8c9807ad98b487
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
HairyFotr/OpenHMD
79200209d07a9a9cdec351cced302317991b4cbf
d375563f992da0a37e02db4e0505b491ee71f499
refs/heads/master
2021-05-07T19:10:05.491400
2017-10-19T15:22:51
2017-10-19T15:22:51
108,851,725
1
0
null
2017-10-30T13:03:24
2017-10-30T13:03:23
null
UTF-8
C
false
false
1,657
h
/* Suppress the warnings for this include, since we don't care about them for external dependencies * Requires at least GCC 4.6 or higher */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstrict-aliasing" #pragma GCC diagnostic ignored "-Wswitch" #pragma GCC diagnostic ignored "-Wimplicit-function-decla...
[ "joeyferweda@gmail.com" ]
joeyferweda@gmail.com
37f0a42ac6b3e38ef080501226724a28e86676e6
52da479b42a69b5ddc2f76c31ae260943543d7b2
/driver/board/component/lcm/SH1107/lcd.c
7d1372a847cbfb949d6050ebcde23703cd85734b
[]
no_license
robbie-cao/mt7687
24b90a0ca75c8520ab899f274a6f6ac223d05820
5a5f8440a5cb37d6a143ff10774e431463dd0c7c
refs/heads/master
2020-08-05T10:25:52.271099
2017-01-04T05:03:18
2017-01-04T05:03:18
67,083,909
18
24
null
2020-03-08T01:05:38
2016-09-01T00:30:53
C
UTF-8
C
false
false
9,206
c
/* Copyright Statement: * * (C) 2005-2016 MediaTek Inc. All rights reserved. * * This software/firmware and related documentation ("MediaTek Software") are * protected under relevant copyright laws. The information contained herein * is confidential and proprietary to MediaTek Inc. ("MediaTek") and/or its ...
[ "robbie.cao@gmail.com" ]
robbie.cao@gmail.com
ce473ee4a85bf11e6e756e097f546758d0a27755
cbd4404885d39f75b1fe94c16b051f141585cb0f
/uls/src/additional/mx_conver_bytes.c
f46e8dfa76c8a69530f1749e10923cc99e4c1730
[]
no_license
OksanaPolishchuk/UCode_Stage2
c8e4f07e6820f367250c26f4cea6a8ca2f19bf6f
dcc5a7893826893eea47aa9fc9b114ae029084a5
refs/heads/master
2023-01-24T16:47:55.143996
2020-11-27T15:10:07
2020-11-27T15:10:07
300,206,377
2
0
null
null
null
null
UTF-8
C
false
false
1,445
c
#include "uls.h" static char *convert(int size, char *type, int n); static char *convert_float(int size, char *type, int n); char *mx_convert_bytes(int size) { char *result = NULL; if (size < 0 || size > 2147483647) { return NULL; } if (size == 0) { result = mx_strnew(2); resul...
[ "polishchukoksana.s@gmail.com" ]
polishchukoksana.s@gmail.com
47cba35e96cd8c4d2cc86faf51c0f98296a86627
ed0f77048ac8d19f7dc7d18f9603bde4fa6f8f6d
/src/probe.h
e45a591744373f5baee764358808924e80243362
[ "BSD-3-Clause" ]
permissive
rlcalmeida/mtraceroute
262a2fbccee86093592c53ce6ad253bd45a6454b
1e6df2027c50ccc236af0092606bba34deb8304d
refs/heads/master
2021-01-21T18:50:47.581330
2019-01-14T17:22:56
2019-01-16T20:05:24
92,088,142
0
2
null
2017-05-29T22:12:03
2017-05-22T18:48:20
C
UTF-8
C
false
false
2,314
h
/* Copyright (c) 2016-2017, Rafael Almeida <rlca at dcc dot ufmg dot br> * 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 copyrigh...
[ "rafaellcalmeida@gmail.com" ]
rafaellcalmeida@gmail.com
0f2b76a07c4b24e85fd4b3639d76a4a67cd101ef
2a76cc9e8fb77adb5bc43305c77bde716a63554f
/src/code/code_80174A40.c
a4daff0180216755786bb7764b915ebe019a654b
[]
no_license
Tesseract19/mm
e645f1b3061749c9bb4a8a27ec092bbf26d7cd6b
96cd49b6d5d642be515bdfeb97048577d8486925
refs/heads/master
2023-08-18T14:51:00.313761
2021-09-29T03:08:54
2021-09-29T03:08:54
null
0
0
null
null
null
null
UTF-8
C
false
false
258
c
#include "global.h" #pragma GLOBAL_ASM("asm/non_matchings/code/code_80174A40/Graph_GfxPlusOne.s") #pragma GLOBAL_ASM("asm/non_matchings/code/code_80174A40/Graph_BranchDlist.s") #pragma GLOBAL_ASM("asm/non_matchings/code/code_80174A40/Graph_DlistAlloc.s")
[ "noreply@github.com" ]
Tesseract19.noreply@github.com
5ad2a98399ed5e98a0118494e4f99acdae08f51b
0ed8d9162e13c9a8b2b846b429dc4ad92ae8afcd
/gsi/gssapi/source/test/gssapi_import_name.c
fb6888afccba334dda19c44cd7d4d2cfc78d0e6e
[ "Apache-2.0" ]
permissive
eunsungc/gt6-RAMSES_8_5
763f8adc5cae84be1dac8df02a061cd701dbff70
529b50245375855cffc7ab3feec45bee6dc48d2a
refs/heads/master
2020-04-15T23:50:54.393993
2016-08-11T18:36:15
2016-08-11T18:36:15
40,609,504
1
0
null
null
null
null
UTF-8
C
false
false
21,213
c
/* * Copyright 1999-2008 University of Chicago * * 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...
[ "eunsung.jung@gmail.com" ]
eunsung.jung@gmail.com
7ec0d5feb6657f157dde8d3c4e34f35fd74d2ec4
3a1c15f95ad5b81ad69a9ea12d827f893477ea5b
/tags/iup_3_0_rc2/iup/src/win/iupwin_globalattrib.c
9c7abb05003ebf66255a3bb7ddae995c64b1b7e3
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
svn2github/iup-iup
299a5cfc9d20f1e38078837e6199784f8c7dcfde
b6a92cebd91e90018c410426461683e1d74fabef
refs/heads/master
2020-04-12T06:44:10.183905
2019-01-16T18:10:52
2019-01-16T18:10:52
60,389,764
1
1
null
null
null
null
UTF-8
C
false
false
3,223
c
/** \file * \brief Windows Driver iupdrvSetGlobal * * See Copyright Notice in "iup.h" */ #include <stdio.h> #include <string.h> #include <windows.h> #include "iup.h" #include "iup_str.h" #include "iup_drv.h" #include "iup_drvinfo.h" #include "iup_strmessage.h" #include "iupwin_drv.h" static int win_monitor_ind...
[ "(no author)@2f08bc20-984a-4df8-b195-9b5d5d477537" ]
(no author)@2f08bc20-984a-4df8-b195-9b5d5d477537
b58db13bcb3fbd1d9bc99629229539855962f504
4b5037c8770c45b0fe147f18b1a808f5f19d8a85
/STM32L4_Test/Src/main.c
a4b9a99be5bdd95b2ed7c4531e23c749f59ac15b
[]
no_license
AlexeyShchekin/Atollic-projects
0b503ff05fe9829558843477a3ad10bb0e2343ea
b5f3ac4307056e37b5f5ff2415b1e399427200d3
refs/heads/master
2020-03-19T04:27:54.804561
2019-05-09T08:40:48
2019-05-09T08:40:48
135,830,186
0
0
null
null
null
null
UTF-8
C
false
false
8,735
c
/** ****************************************************************************** * @file : main.c * @brief : Main program body ****************************************************************************** * This notice applies to any and all portions of this file * that are not...
[ "shchekin.alexey@gmail.com" ]
shchekin.alexey@gmail.com
65c722c7e0a9faab75ebfef82744d9b5647d0805
caefd6e246a19c920a67d475a76bf77ecec7afe7
/a/tz/tzvmg1aa.c
03df406a6bbad648d1c9a9a9fc7e9b6806306f80
[]
no_license
kellysautter/10cKelly
fb725a43bf23899d953aae70b61bfaeb3107406d
4ed502c984ceff1492507d08a3686e68c936bec9
refs/heads/master
2022-09-16T11:39:18.532282
2022-08-30T15:06:34
2022-08-30T15:06:34
24,342,510
0
3
null
2018-08-22T20:17:25
2014-09-22T19:32:33
C
UTF-8
C
false
false
122,486
c
///////////////////////////////////////////////////////////////////////////// // // MODULE NAME: tzvmg1aa.c - VML SubSystem Generator Main Module // DESCRIPTION: This is the source file which contains the main functions // for the Generator. // // /////////////////////////////////////////////////////...
[ "kellysautter@comcast.net" ]
kellysautter@comcast.net
fd507b85d72a9ba3d5794e69f0a3f4a25efd6071
51a43e28b73e036b4a05df22b13e8ebe0bb0b4f8
/clang/test/CodeGen/xtensa-abi.c
3d80c06b07aafd5a935bdbf246dd6714bb031b24
[ "Apache-2.0", "LLVM-exception", "NCSA" ]
permissive
KerryRJ/llvm-project
28134b90e8e56c502dfc949668cb8bb1f281be02
36dbc8b5ee7dae4a4c5bff73efff0ea7ccb3707e
refs/heads/xtensa_release_11.0.0
2023-07-05T21:32:49.806904
2021-07-09T00:40:17
2021-07-15T09:15:42
394,619,921
0
0
null
2021-08-10T11:06:54
2021-08-10T11:01:20
null
UTF-8
C
false
false
328
c
// RUN: %clang_cc1 -triple xtensa -O0 -emit-llvm %s -o - | FileCheck %s #define __malloc_like __attribute__((__malloc__)) char *bufalloc () __malloc_like ;//__result_use_check; extern void* malloc (unsigned size); char *bufalloc () { char* buf = malloc(1024); return buf; } // CHECK: define noalias i8* @bufalloc...
[ "safronov@espressif.com" ]
safronov@espressif.com
9102a022a552c7430be0b2b392864aedf1b55eb0
89f4c45551ce9ca04fa8d4cba744e8eae4024642
/Test_main.c
13da6b126f6e739c36bc01fdbdbda1b7fdac71b8
[]
no_license
wzxainiou/thesis-codes
94d9404aa81f594509f6cc3d1a953a7fa8e035a3
6d3372e7bd92d40c95c504f3a0e2753648a618a0
refs/heads/master
2023-04-22T10:50:42.033715
2021-05-12T13:27:34
2021-05-12T13:27:34
350,960,000
0
0
null
null
null
null
UTF-8
C
false
false
6,092
c
#include <stdio.h> #include <stdlib.h> #include "Test_main.h" //transform the floating number to char void getFloatBin(float num,char bin[32]) { int t = 1; int *f = (int*)(&num); getFloatBin_Loop: for(int i=0;i<32;i++) { //#pragma HLS unroll #pragma HLS pipeline bin[i] = (*f)&(t<<31-i)?1:0; ...
[ "noreply@github.com" ]
wzxainiou.noreply@github.com
23240a445b08494781cd9cf6fa81c9b8339744c1
1c7a921f5bf50492b6b33ee1e11e7cfe4ba0cffc
/seadp_socket/seadp_socket.c
f3502064f7d788993b728d1d80f9a730c0af42a1
[]
no_license
liu-yi-feng/receiver-driven-transmission
17bd4a48bd96372f631529b10a4cfa87d673c8fc
c5f7f50ffdce10c5d954c49529ff9eeae45db180
refs/heads/master
2022-12-12T11:35:53.753125
2020-09-18T02:53:37
2020-09-18T02:53:37
296,489,783
3
1
null
null
null
null
UTF-8
C
false
false
3,196
c
#include <stdlib.h> #include <stdio.h> #include <errno.h> #include <string.h> #include <unistd.h> #include <netdb.h> #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #include <netinet/ip.h> #include <arpa/inet.h> #include <linux/tcp.h> #include <strings.h> #include <errno.h> #include <sys/time.h> ...
[ "noreply@github.com" ]
liu-yi-feng.noreply@github.com
9af1aee6f13da08db4d99508a27957d3cda00ac8
ec3d334ac93537597dd84a3c676489138bf61f22
/src/tbox/libc/string/wcsstr.c
56991bf130f453705fbadeab8d0727d5faf73f81
[ "Zlib", "BSL-1.0", "Apache-2.0", "BSD-3-Clause", "OpenSSL", "GPL-2.0-only", "LicenseRef-scancode-public-domain" ]
permissive
dandycheung/tbox
ac0f5df226b965cbc6b22abf3bc4a08251e9879d
6a646700b423b8215180938b11d4ef6c3ee39de2
refs/heads/master
2023-09-04T00:24:14.757478
2023-08-31T00:54:28
2023-08-31T00:54:28
244,083,907
0
0
Apache-2.0
2023-09-14T19:46:19
2020-03-01T04:04:40
C
UTF-8
C
false
false
1,735
c
/*!The Treasure Box Library * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wr...
[ "waruqi@gmail.com" ]
waruqi@gmail.com
692b29e616d8012987679d993394f239e753d146
6a9109d3397bd74f7cfd3ccb361626a59a8a59e2
/CES/SOURCE/STDITEM/dialog.h
4e05f99b1436570c78cc15f48836b60c7004e171
[]
no_license
gnu0000/mec-old-ces_old
f57638e1989253ef7c732b93019891100869e445
991cc945576db8b693bfd6d7cd533e02f95477e7
refs/heads/master
2023-05-26T23:14:25.193145
2021-06-15T01:18:36
2021-06-15T01:18:36
376,997,692
0
0
null
null
null
null
UTF-8
C
false
false
2,795
h
/*--------------------------------------------------------------------------+ | | | Copyright (c) 1992 by AASHTO. All Rights Reserved. | | | | ...
[ "craig.fitzgerald00@gmail.com" ]
craig.fitzgerald00@gmail.com
5acab7574d375d3b04a2177ab960820f93cbcbee
9e5cad6dd3a1496734ad3ffe11722030d7e26257
/Renalyx_DM1/src/cl_app/cl_dlsis/inc/cl_dlsis_controller.h
6bc4847fefbb338f1c880feffac2b450039bea23
[]
no_license
kalibhat/SFTS_V3
18f922940c45e47fa39d80d4ce450dc2af254025
b69180789938d5716b5dfde42ee7079fc2ccb3b6
refs/heads/master
2021-08-22T21:53:35.550367
2017-09-22T12:25:47
2017-09-22T12:25:47
112,727,896
0
0
null
null
null
null
UTF-8
C
false
false
4,495
h
/* * cl_dlsis_controller.h * * Created: 12/27/2013 12:26:35 PM * Author: user */ #ifndef CL_DLSIS_CONTROLLER_H_ #define CL_DLSIS_CONTROLLER_H_ #include "cl_alarmdetector.h" typedef enum { EVENT_NULL_EVENT, EVENT_DLSIS_CLR_ALARM, EVENT_DLSIS_GET_DATA, EVENT_DLSIS_SET_DATA, EVENT_DLSIS_START_RINSE, EVENT_...
[ "kalibhat@renalyx.com" ]
kalibhat@renalyx.com
5616d664afc153a2e20c342f9ec6f9c99729d665
f819bdc8e8e1a08cd655d555a920450d1ed91692
/Upan/thinkpad上文件/U盘文件每次更新ing/1010/1.c
1e487422286ea3a3b9a462ded22f65fd47e7b56d
[]
no_license
gzci/Rep_chore
ab9d5452daf0d8d8b46dad78326d3ccf918ccefa
c91afc4f4d303c3614a7db4bef8cf7bb1f819f8d
refs/heads/master
2020-03-09T11:35:02.582014
2018-09-09T02:16:32
2018-09-09T02:16:32
null
0
0
null
null
null
null
UTF-8
C
false
false
396
c
#include<stdio.h> int main() { int a,b,c,d,e,f,t=0; scanf("%d",&a); scanf("%d",&b); scanf("%d",&c); scanf("%d",&d); scanf("%d",&e); scanf("%d",&f); printf("please input a:%d\n",a); if(a>b){ t=t+b; } if(a>c){ t=t+c; } if(a>d){ t=t+d; } if(a>e){ t=t+e; } if(a>f){ t=t+f; } printf("%...
[ "695556920@qq.com" ]
695556920@qq.com
82b3b90f35370611c5c4816e207383f608817ee7
11c0455733a060c678c87f550a431a431ebe2608
/vita_include/string.h
d6734a99827b869775416a298e70c4c8437539f5
[ "WTFPL", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "CC-PDDC", "NCSA", "BSD-3-Clause", "BSL-1.0", "MIT" ]
permissive
u3shit/libshit
92d00abecaedb7ed0cf0ac1fa710b2367da16bc8
8ab8f12b4068edc269356debef78cd04de67edb4
refs/heads/master
2021-06-03T21:48:51.798283
2021-05-29T19:49:10
2021-05-29T19:49:10
100,743,741
0
0
null
null
null
null
UTF-8
C
false
false
262
h
#pragma once #include_next <string.h> #include <psp2/kernel/clib.h> #ifdef __cplusplus extern "C" { #endif #define strnlen sceClibStrnlen typedef int errno_t; errno_t strerror_s(char*, size_t, errno_t) __attribute__((nothrow)); #ifdef __cplusplus } #endif
[ "u3shit@gmail.com" ]
u3shit@gmail.com
56684a7ba130f89ef6e8661a9dcfb9525ad17825
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/sound/pci/ctxfi/extr_ctamixer.c_amixer_commit_write.c
12e3144b278b7f58244d261a8ed5ac0dcce0b7c4
[]
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
3,525
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
a383dc615096c6989a161a69abde1d49e284433a
309cdefac097c607534d8ea438384f8a3583a928
/SDK/platform/am33/include/raster.h
17bbeef40fb5db27ad8ff3788f6c201b333252c7
[]
no_license
maruixxx/mSdk
f1410a1144b10ecc73c3fc94477e29a4a7d9385e
cff180526c69e835420c08a03afc96d51a404aa6
refs/heads/master
2022-04-11T15:25:57.769807
2018-08-23T15:07:33
2018-08-23T15:07:33
null
0
0
null
null
null
null
UTF-8
C
false
false
14,887
h
/** * \file raster.h * * \brief Definitions used for raster LCD * * This file contains the driver API prototypes and macro definitions. */ /* * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ */ /* * Redistribution and use in source and binary forms, with or without * modification...
[ "morgoth.creator@gmail.com" ]
morgoth.creator@gmail.com
ba6ab15c05fd8aa9cd8570a42bfb266a8eb4545f
31f449e61b3c45659d2c2ed21204960b2ad64421
/ds/CodeReview/scheduler,task-nir/scheduler.c
1825e08a6e6a79b3d9dee2f3683c933cff0f0945
[]
no_license
MedulaOblogota/yap
62ae0745a82e8507fa1dbb746846bcc09cdac601
5396401cca1f304aed00bb43627abf2a0b9b927e
refs/heads/master
2023-06-07T04:19:53.780118
2021-06-21T10:13:58
2021-06-21T10:13:58
370,606,403
0
0
null
null
null
null
UTF-8
C
false
false
3,296
c
#include <stdlib.h> #include <assert.h> #include <unistd.h> #include "UID.h" #include "Tasks.h" #include "Scheduler.h" #include "PriorityQueue.h" int has_sched = 0; struct sched_s { pqueue_t *pqueue; task_t *curr_task; int has_been_stoped; }; static int SchedCmp(const void *task1, co...
[ "royyab@gmail.com" ]
royyab@gmail.com
f84a72ec942f77b7f49c4d945270007fb57be943
a3300955c094f9323bea7a5e899a685e6797789a
/examples/adc/artik_adc_example.c
688949a0f662a274fb36cf2024b2144e28100938
[ "Apache-2.0" ]
permissive
bswhite1/artik-sdk
bb4560860a8985fc3d4b89f53aa151f1ade833e0
e4dc8d6720d3627ef126596ea47d5c60d2a517a0
refs/heads/master
2020-04-01T02:04:24.337826
2018-11-29T17:03:36
2018-11-29T17:03:36
152,764,529
0
1
Apache-2.0
2018-10-12T14:42:09
2018-10-12T14:42:08
null
UTF-8
C
false
false
4,609
c
/* * * Copyright 2017 Samsung Electronics All Rights Reserved. * * 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 require...
[ "g.lemercier@samsung.com" ]
g.lemercier@samsung.com
75c2e5e583022ab25796513cc2cabcd42146b862
f56047331a3b6a7c6b899ced0d7de0f33eeddef5
/trial8/DEBUG/de0ec8_nios2_sd/eth_ocm/HAL/src/eth_ocm_phy_profiles.c
6abc8893b24cbaf4f0e80bb694ccb421301365bd
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
xinghuaman/DE0_ExpansionCard
cd63d1083d9938be3cd8859c0d302595a49aec3b
fed1bd62b34555a1885aed7d584bf1bd0da8cb4c
refs/heads/master
2020-03-25T18:04:43.757828
2014-02-05T15:22:39
2014-02-05T15:22:39
null
0
0
null
null
null
null
UTF-8
C
false
false
5,501
c
#include "eth_ocm_phy.h" // ******************** // Intel LXT972A 10/100 // ******************** #ifdef ETH_OCM_PHY_SUPPORT_LXT972A static eth_ocm_phy_profile profile_LXT972A = { /* PHY name */ "Intel/Cortina Systems LXT972A 10/100 PHY", /* PHY OUI (Organizationally Unique Identififier) */ 0x04DE, /...
[ "caramelgate@gmail.com" ]
caramelgate@gmail.com
19acb1b5dd56ee64908ac8851a4f3b165d9c2a71
8e1dc3ffc8e6c1c2ed3347b10ea75eabeb0b298e
/homework/c-2/ex2.83.c
0bf475350aad909f5992cf6a988fc2c03fd99fb7
[]
no_license
youngnmr/CSAPP
c3a1b7e0f7b5ece7b35d87c23fe0986d9bae4391
8a995641b9289f03a2298a3ceeeb07dd91856ba7
refs/heads/master
2020-03-26T12:53:39.610366
2014-04-03T12:44:19
2014-04-03T12:44:19
null
0
0
null
null
null
null
UTF-8
C
false
false
2,078
c
/* Fill in the return value for the following procedure, which tests whether its first */ /* argument is less than or equal to its second. Assume the function f2u returns an */ /* unsigned 32-bit number having the same bit representation as its floating-point */ /* argument. You can assume that neither argument is NaN....
[ "qlq3763@gmail.com" ]
qlq3763@gmail.com
db1597a1008743a60d29740c6db041b65abfb846
e9717e23e292e5994c7bb1034846da7e932ed325
/control_app/iniparser.c
102997f043a12df190849d94b3a8256eecfad028
[]
no_license
stcwy777/be-thesis
4b826c10ef63b72b1ebe7ed460c70415023030d9
7eacb4a9fbb9d165920d515f6e9d8bb9d0cc3d54
refs/heads/master
2021-01-10T03:29:55.878920
2016-03-27T07:16:20
2016-03-27T07:16:20
54,807,154
0
0
null
null
null
null
UTF-8
C
false
false
20,054
c
/*-------------------------------------------------------------------------*/ /** @file iniparser.c @author N. Devillard @date Sep 2007 @version 3.0 @brief Parser for ini files. */ /*--------------------------------------------------------------------------*/ /* $Id: iniparser.c,v 2.18 2008...
[ "yunw@email.arizona.edu" ]
yunw@email.arizona.edu
945d6851e2f8aa2db7786ecc666d1e99b7483df5
eab7471d160552101626af495c532c30ad6861d7
/src/css/libcss/0.9.1/src/select/autogenerated_computed.h
c69a6a298893e218c4c501fc69bea977b1127dea
[ "MIT" ]
permissive
liuilbury/RABSTER
1a697eb672593196bc539c3d5ff7ca648a9f11c4
1e9e5b2fbbadcb4a5852d337c363da530729f726
refs/heads/master
2022-11-28T08:45:13.061883
2020-07-22T06:30:22
2020-07-22T06:30:22
276,053,803
1
0
null
null
null
null
UTF-8
C
false
false
11,004
h
/* * This file is part of LibCSS * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2017 The NetSurf Project */ struct css_computed_style_i { /* * Property Size (bits) Size (bytes) * --- --- ...
[ "liulizhang@tencent.com" ]
liulizhang@tencent.com
42406b9f309e55333e91461b0c01dc3f45dc5c26
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/bfbaeddb-f8f7-47be-9b98-4a02cd4c23e1.c
645c6901b720184a812b56e3e9b61f2442b39545
[]
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
618
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=13; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = i/j; l = k/j; l = j%j; l = l/j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; long b[50]; long c[15]; a =...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
c6e1f107739dd8e3d1158e918a7c2413cc334f12
c69ebaa5218862b73a096b9f532ee892a8bf9f49
/SWORD_AND_STING/myDirect3D.h
b33829dabfef3dda28f3ce5c4c6eaf13c3172e70
[]
no_license
UmeTK1023/HEW2
89b07523c6ac9430c89b9a24c0e50ffae9c2c9b4
50910a05e491510f6627e24ae75ebe20b1b53d60
refs/heads/master
2023-02-26T13:05:58.721366
2021-02-05T09:37:28
2021-02-05T09:37:28
336,221,822
0
0
null
null
null
null
SHIFT_JIS
C
false
false
610
h
#pragma once #include <windows.h> #include <d3d9.h> #include <d3dx9.h> #ifndef SAFE_DELETE #define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } } #endif #ifndef SAFE_DELETE_ARRAY #define SAFE_DELETE_ARRAY(p) { if(p) { delete[] (p); (p)=NULL; } } #endif #ifndef SAFE_RELEASE #define SAFE_RELEAS...
[ "umetk1511@gmail.com" ]
umetk1511@gmail.com
cd7ff4ede01f47e9f40d7974f20382a4f4ebab46
cc5d9314b57bfe7ccbd5ffc501e8f154d6b37eb0
/PSU_minishell1_2019/scan.c
ad708af7bd1984213e3dc5fece651d70645f9c18
[]
no_license
Patronat00/tek1
3e0e457266ac76adda96a81702551878faae714a
84f938b2a472c2c2f8efffcc8d7cc458fefc7c4c
refs/heads/main
2023-04-03T10:04:32.143444
2021-04-05T14:15:28
2021-04-05T14:15:28
354,843,233
0
0
null
null
null
null
UTF-8
C
false
false
952
c
/* ** EPITECH PROJECT, 2020 ** scan.c ** File description: ** minishell */ #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <stdbool.h> #include "util.h" static char *app(char *str, char c) { char *ap; int i; int j; i = (j = 0); while (str && str[i] && ++i); if (!(ap = m...
[ "noreply@github.com" ]
Patronat00.noreply@github.com
4a2a225ff537009c4f2cfb6547a4ffbb86279508
185f1701f8c2acecfe3e750300fa8fdbff6db24d
/functions.h
c7399d072dd23c43f44dd24022e8fe905610a756
[]
no_license
veronj/BattleForMidgard-2
e7d450c468195a1e4dd33002ba06bcb665658711
e29daf342628b1a322b8fc00b76c1cb873ca6572
refs/heads/master
2021-01-10T02:00:12.998208
2015-12-17T14:47:52
2015-12-17T14:47:52
48,169,897
0
0
null
null
null
null
UTF-8
C
false
false
1,023
h
/* ** functions.h for in /home/jb-veron/C/Midgard ** ** Made by VERON Jean-baptiste ** Login <veron_j@etna-alternance.net> ** ** Started on Wed Dec 16 10:48:04 2015 VERON Jean-baptiste ** Last update Wed Dec 16 21:44:37 2015 VERON Jean-baptiste */ #ifndef FUNCTIONS_H_ # define FUNCTIONS_H_ typedef struct s_cre...
[ "adrien.barre@gmail.com" ]
adrien.barre@gmail.com
4fb754c71938f703b4af093a0cd2056fa16848d5
e6c80d747be1496b9c0ebcc8a8bc33bd64eb17dd
/Codes/C Programs/Series_Programs/Write a c program to find out the sum of given A.P.c
70a2b1b0e5150a949a261baadfa410481dfc096d
[]
no_license
developersbk/Universal_Code_Snippets
56b25fb43cc2c67113e97e691cc48f8a0b0193f6
0001535476a5743c0557c5ce2c3ffc13c6ee8791
refs/heads/master
2023-02-24T08:16:57.240264
2020-02-29T01:21:46
2020-02-29T01:21:46
null
0
0
null
null
null
null
UTF-8
C
false
false
624
c
#include<stdio.h> #include<math.h> int main() { int a,d,n,i,tn; int sum=0; printf("Enter the first number of the A.P. series: "); scanf("%d",&a); printf("Enter the total numbers in the A.P. series: "); scanf("%d",&n); printf("Enter the common difference of A.P. series: ");...
[ "sbkannath1996@gmail.com" ]
sbkannath1996@gmail.com
b8aa7a884a2ccbde01eb35c72e6a9940b5e44132
f4a2e8edfc7124a402830c053fe17182d32a1da3
/(2-bim)lista-vetor/(index)12.c
1867300c1a8380a55a88d49923e8f985f02c6f85
[]
no_license
darkvictor13/ListasC1
570b9430d9f6daac11b839f812e1286d67332744
e44d3e90a617a9a4928593adab3a0c683c25ba55
refs/heads/master
2020-11-26T15:42:10.801329
2020-09-09T14:46:25
2020-09-09T14:46:25
229,125,575
0
0
null
null
null
null
UTF-8
C
false
false
685
c
#include <stdio.h> #define MAXT 100 void lerVetCompleto(int v[], int *t) { int i; scanf("%d", t); for(i = 0; i < (*t); i++) { scanf("%d", &v[i]); } } void printVet(int v[], int t) { for (int i = 0; i < t; i++) { printf("%d\n", v[i]); } } void excluiImpares(int v2[], int *t2,int v1[], int t1) { ...
[ "soprogramar@localhost.localdomain" ]
soprogramar@localhost.localdomain
5d63a814964d0c098901d7ab964c693723cd73d4
558883a9bca9724813aefc94d04c9a6ea97bb958
/system/platform/arm-bbb/main.c
af23a6b6022ae87a5b154ead842329d2bc03ac83
[]
no_license
CAVIND46016/Xinu-Kernel-Programming
b595a77a065d650570d7be12ec3e80218f8ab11b
087d06122955566d5f6fa6fbcbd7d09ef05a85ed
refs/heads/master
2021-01-20T06:22:29.199029
2016-12-16T08:09:06
2016-12-16T08:09:06
89,868,675
5
0
null
null
null
null
UTF-8
C
false
false
874
c
/* main.c - main */ #include <xinu.h> #include <stdio.h> int32 cpudelay; volatile uint32 gcounter = 400000000; process counterproc() { while(gcounter > 0) { gcounter--; } return OK; } process main(void) { char bbb_ipaddr[] = "192.168.1.101"; char bbb_router[] = "192.168.1.255"; /* they should be as bel...
[ "swany@iu.edu" ]
swany@iu.edu
f3161f6d0670b7404f7f11566d82bb0d83d9d1cf
58fe7cb3949dd1930e709696659a0296500b64a6
/tls/s2n_renegotiate.c
f930390d79c7e2c6e475b78019aa89e21ed2fcdc
[ "Apache-2.0", "MIT" ]
permissive
aws/s2n-tls
3344638a6a69c6f20665cf6847e1bc4b85f2e558
62dc7a6d4876e5eee0dea3690d528a4c7080a1d5
refs/heads/main
2023-08-31T23:26:33.780048
2023-08-31T05:17:33
2023-08-31T05:17:33
21,287,076
513
213
Apache-2.0
2023-09-13T23:52:29
2014-06-27T19:37:59
C
UTF-8
C
false
false
8,495
c
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
[ "noreply@github.com" ]
aws.noreply@github.com
d06e5ec27cccb87f7327b347035f5cdd114ec2d7
7395acdcf738706168335aa93c8a45a060da6668
/Atlas300_MindStdio_SSD_Demo_1104_01/include/inc/custom/toolchain/profiler_client.h
61febd38454f661d527cca7ab788e85f54ccd785
[]
no_license
zxsj-wtxu/Atlas300
7ecb59d05213832f8e74650e049a00239fbbd8a9
0c5bbeebf5c37e914e6ef0a8809ebd7083983dbd
refs/heads/master
2020-08-23T01:03:17.939157
2019-12-02T05:56:00
2019-12-02T05:56:00
216,511,241
4
0
null
null
null
null
UTF-8
C
false
false
3,194
h
#ifndef PROFILER_CLIENT_H_INCLUDED #define PROFILER_CLIENT_H_INCLUDED #ifdef __cplusplus extern "C" { #endif // __cplusplus /** * the data structure to write */ struct data_chunk { char* relative_file_name;// from subpath begin; For example: subA/subB/example.txt; Note: the begin don't has '/'; unsigned ch...
[ "zxsj_wtxu@outlook.com" ]
zxsj_wtxu@outlook.com
a6eba4cb9a652babb0852b213bca7a4d2a6e07b8
63d6937eb070de0b63a38de32afeedeb58b914dc
/linkedlists/ft_lstdelone.c
933901cbdb9ccc67cc14776d785f72a0ab6b407c
[]
no_license
NhlakaMbotho/Libft
771aa2c88463e14c251e91c446e83ba7f4e19d14
4f8a61bd72de0e0419a5af2d3716583326f8a466
refs/heads/master
2021-01-01T06:42:04.462477
2017-07-17T14:59:12
2017-07-17T14:59:12
97,488,066
0
0
null
null
null
null
UTF-8
C
false
false
1,086
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: ...
[ "nmbotho@e4r14p1.jnb.42.fr" ]
nmbotho@e4r14p1.jnb.42.fr
ddb7e5b0eaed60cb209aca0e9199ae7024082674
51a63024b51525b16997c92a1d219efba84e5cc0
/0x05-pointers_arrays_strings/0-reset_to_98.c
6dd2b73474758eb71e2c77c7be9f453162ab7477
[]
no_license
gomba66/holbertonschool-low_level_programming
ca4fc7390a4746e97b90705dc3f9468f63b35433
87e233b510ebabd91b6213c559dcac32a6be977b
refs/heads/master
2020-06-06T17:41:02.533419
2020-03-11T21:51:09
2020-03-11T21:51:09
192,808,172
0
0
null
null
null
null
UTF-8
C
false
false
240
c
#include "holberton.h" /** * reset_to_98 - Entry point * This function is for take a pointer to an int as parameter and update * the value it points to 98. * @n: Is the value of the parameter */ void reset_to_98(int *n) { *n = 98; }
[ "danielalejo66@hotmail.com" ]
danielalejo66@hotmail.com
4d5f0ef8859f5c4fe991b0190ed9c0420e859a1b
0083133461ff0115a8fcb49f95de52435afbd14a
/external/mit/libX11/dist/src/xcms/LabGcC.c
1f929eb86357bcde12b217d7dc151ffbf8173480
[ "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-sgi-glx-1.0", "LicenseRef-scancode-unknown-license-reference", "SGI-B-1.1" ]
permissive
noud/mouse-bsd-5.2-x
e572edc90a5e2d4fbd5a7e20058e9123f6b76944
68e4a3e533eefa4113eac14f75db4812751c557f
refs/heads/master
2023-02-27T11:57:09.333231
2020-05-08T00:51:59
2020-05-08T00:52:22
334,542,484
1
0
null
null
null
null
UTF-8
C
false
false
3,939
c
/* $Xorg: LabGcC.c,v 1.3 2000/08/17 19:44:39 cpqbld Exp $ */ /* * Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc. * All Rights Reserved * * This file is a component of an X Window System-specific implementation * of XCMS based on the TekColor Color Management System. Permission is * h...
[ "mouse@Rodents-Montreal.ORG" ]
mouse@Rodents-Montreal.ORG
34720944d5133c8f179281508c18db0629a7ff6a
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/clk/extr_clk-stm32f4.c_rgclk_enable.c
28699aaad57e30dfb6d202d259526ebc76651ed9
[]
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,689
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
51ff0ad68b1aaf2780e5b3ca60b41aba10855eca
6c715ec8c99d5369b2b2c5f9c67bed640902eb8e
/va2pa_lib.c
115803ffe49f6fc7ef4f19e3b56c039b0802f4cb
[ "BSD-3-Clause" ]
permissive
melodylail/SKX-SF-Conflicts
6a2274591a0d132fc72a3b137882c880e5d179d4
41d9a423df0d9d67701f959eb2121142a02704ec
refs/heads/master
2022-01-05T08:35:51.523312
2018-08-17T20:48:08
2018-08-17T20:48:08
null
0
0
null
null
null
null
UTF-8
C
false
false
4,114
c
#define _GNU_SOURCE #define _XOPEN_SOURCE 500 // required by pread #include <stdio.h> // required by printf #include <unistd.h> // required by pread, close, getpid #include <sys/types.h> // required by open, getpid #include <sys/stat.h> // required by open #include <fcntl.h> // required by open // declaration...
[ "mccalpin@tacc.utexas.edu" ]
mccalpin@tacc.utexas.edu
ff4abda449ad8143589c8f4c826e7d8558801bbb
45348030cd24f2657d145a389be75db17180671b
/print_bytes.c
3f1b65b6de17259e85d083049dead62c1ac468a0
[]
no_license
coltonpierce/part2
bac8a25a3f1293b097feeb20b7e99a85b8ce2a30
88ddd6719171474a6401d5460e323a1d9d8b4f2e
refs/heads/master
2021-01-10T13:12:39.778421
2015-12-15T19:43:23
2015-12-15T19:43:23
44,329,108
0
1
null
2015-10-30T18:56:20
2015-10-15T16:01:34
C
UTF-8
C
false
false
1,403
c
#include <stdio.h> #include "main.h" #include "print_bytes.h" /*********************************************************************** DESC: Prints 8 bytes in Hexadecimal and then ASCII INPUT: Pointer to an array of eight bytes RETURNS: nothing CAUTION: ********************************************************...
[ "coltonpierce@gmail.com" ]
coltonpierce@gmail.com
1ba0fd0281cf37c7ff84948011edbbade050983e
f9184f36b696dd75c6d698a7523a83ca26cf1744
/SlackEdit/src/rebar/bar_findcombo.h
c79c979fff40cb8d6f683b34378acc919fad273f
[]
no_license
now/slackedit
1e664b86c4d2a992cd93d8799024d959dc2c2871
852cbc0f123a7f5eccaa25d0e5d600bc02544c30
refs/heads/master
2016-09-06T13:58:01.450704
2010-03-15T20:40:03
2010-03-15T20:40:03
null
0
0
null
null
null
null
UTF-8
C
false
false
667
h
/***************************************************************** * FILE HEADER * ***************************************************************** * Project : SlackEdit * * File : findcombo.h * Created : not known (before 06/22/00) * Owner : pc...
[ "now@bitwi.se" ]
now@bitwi.se
7b2079e03ba6f26ac17b632035e446bd024e7f3b
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/scsi/qla2xxx/extr_qla_nx.c_qla82xx_check_temp.c
1d9c828f30e8f73bc545830a58cd1d5939157318
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,679
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
a187f1659acd808a595c52aa00d1288d8c9bb7fc
df93ce63155a5ddfd054f8daba9653d1ad00eb24
/applications/utilities/mesh/meshStructure/OppositeFaceCellWave.C
4e865bd0b11c13e6ede0254b59a75233202a2721
[]
no_license
mattijsjanssens/mattijs-extensions
d4fb837e329b3372689481e9ebaac597272e0ab9
27b62bf191f1db59b045ce5c89c859a4737033e4
refs/heads/master
2023-07-19T20:57:04.034831
2023-07-16T20:35:12
2023-07-16T20:35:12
57,304,835
8
4
null
null
null
null
UTF-8
C
false
false
10,009
c
/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2016 OpenFOAM Foundation \\/ M anipulation | -------------...
[ "mattijs.janssens@gmail.com" ]
mattijs.janssens@gmail.com
02265300c7f02c16a943e1865ee476a89177e7ee
75c1440d75d02c9dddea3d73e31b771c41804244
/201201045_Assignment3/p1.c
aa7eca0d727a147a33c7fb3159d7b320bc4cc5b6
[]
no_license
abhishekb2331/OS
a647acfaf1724ffff5e4c56bdf720fea6e5a42d4
c58d36832474b3597dc79701efbd2cdd289d21a0
refs/heads/master
2021-01-17T17:20:12.980544
2016-10-08T14:01:13
2016-10-08T14:01:13
70,335,405
0
0
null
null
null
null
UTF-8
C
false
false
16,267
c
#include<unistd.h> #include<sys/utsname.h> #include<stdlib.h> #include<stdio.h> #include<string.h> #include<errno.h> #include<sys/types.h> #include<sys/stat.h> #include<fcntl.h> #include<signal.h> int iter=0; int last=0; int last_char,cpid; int no_of_process_que=0; char initial_path[100]; void split_argument(char instr...
[ "abhishekb.2331@gmail.com" ]
abhishekb.2331@gmail.com
3718964d616216066f410a7e892c842e3ea9bc38
9d364070c646239b2efad7abbab58f4ad602ef7b
/platform/external/linux-tools-perf/perf-3.12.0/arch/ia64/include/asm/unistd.h
250fc63f5feb2f6fe7bc308ea2c205e7e1233203
[]
no_license
denix123/a32_ul
4ffe304b13c1266b6c7409d790979eb8e3b0379c
b2fd25640704f37d5248da9cc147ed267d4771c2
refs/heads/master
2021-01-17T20:21:17.196296
2016-08-16T04:30:53
2016-08-16T04:30:53
65,786,970
0
2
null
2020-03-06T22:00:52
2016-08-16T04:15:54
null
UTF-8
C
false
false
1,010
h
/* * IA-64 Linux syscall numbers and inline-functions. * * Copyright (C) 1998-2005 Hewlett-Packard Co * David Mosberger-Tang <davidm@hpl.hp.com> */ #ifndef _ASM_IA64_UNISTD_H #define _ASM_IA64_UNISTD_H #include <uapi/asm/unistd.h> #define NR_syscalls 312 #define __IGNORE_fork #define __IGNORE_time #def...
[ "allegrant@mail.ru" ]
allegrant@mail.ru
5f75347f07dca8b664b34b9ffb6bf654e76d063f
8c94027d1f446542819412eb7f4c0e70a016bdfe
/oauth_validate.h
3c3995dea0730ac01f69995e05c96887eb5860c7
[ "curl", "MIT" ]
permissive
afiestas/SASL-OAuth
8e282d0ee6207620dfaae1c4c0cc6b9a9916cfc4
69faf27d40c4a866afdd446a8c96ecce89eb96c3
refs/heads/master
2020-12-25T03:00:53.505982
2013-06-20T16:50:34
2013-06-20T16:50:34
null
0
0
null
null
null
null
UTF-8
C
false
false
494
h
/* Oauth SASL plugin * Bill Mills * $Id: $ * * Copyright (c) 2010, Yahoo! Inc. * All rights reserved. */ #ifndef _OAUTH_VALIDATE_H_ #define _OAUTH_VALIDATE_H_ /* Things people dealing with an OAuth Validation auxprop plugin need ** to know */ #define OAUTH_VALIDATE_REQUEST "oauth_token_request" #define OAUT...
[ "wmills_92105@yahoo.com" ]
wmills_92105@yahoo.com
fb02ca2baac30a9aef66347538662f9e56daadd7
1a37d5e4654b1d3f67823c8691812585061a194a
/samples/Direct2D/src/resource.h
bd31872df6c7038c631b464054ba02f437579d34
[]
no_license
visimulator/Win32xx
5aafb3b31a71fd4f6aec757a44ac38f6273613af
11db188dfe35de37abcf91766f7f8a627e490a62
refs/heads/master
2022-12-29T13:01:32.451706
2020-10-08T12:48:25
2020-10-08T12:48:25
null
0
0
null
null
null
null
UTF-8
C
false
false
535
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by Resource.rc // // include the Resource IDs defined by Win32++ #include "default_resource.h" // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NO_MFC ...
[ "david_nash@40094c20-7226-0410-9e7a-ca24b3fb783e" ]
david_nash@40094c20-7226-0410-9e7a-ca24b3fb783e
ec5783ea84bb9494f1b7784e78b3b9740a41bdd5
b6966b887754a0b285ac271d3f850913c03459a3
/src/test/test_filters.c
29614360e24abb25e34e2dc840fdb9d0fce165c3
[]
no_license
swym/pa-einpersonentransportmittel-hk64-public
d12054299ddae7a0d170cb907d53794b344dc053
52c95254858a255c750591196ff95e2d69979440
refs/heads/master
2020-06-07T12:26:36.536010
2014-07-18T13:45:27
2014-07-18T13:45:27
null
0
0
null
null
null
null
UTF-8
C
false
false
2,067
c
/* * test_filters.c * * Created on: Jul 16, 2014 * Author: alexandermertens */ /* *** INCLUDES ************************************************************* */ #include "test_filters.h" /* * system headers * */ #include <stdlib.h> #include <stdio.h> #include <avr/io.h> #include <util/delay.h...
[ "alexander.mertens@me.com" ]
alexander.mertens@me.com
3adc2695fb479f95a6f7797f0f88729fdda1ab66
9c52508e59e5c09dec124061ebf9c750d5f2d026
/ExtLib/extlib.vect.h
56a5be47b0b9efb4a264c459ec632576a72f9a29
[]
no_license
Cooya/Projet-AS-L3
b0b76eaa2ff1d14aac05f3774c49414eee285050
984bd181994308afa551772e83eda2f1ece27fbb
refs/heads/master
2021-01-09T05:45:58.035784
2017-11-15T10:05:43
2017-11-15T10:05:43
80,828,463
0
0
null
null
null
null
UTF-8
C
false
false
3,746
h
/** * \file extlib.vect.h * \brief Primitives functions for vectors * \author Jason Pindat * \version 1.0 * \date 05/21/2014 * * All the basic functions to manage dynamic one-dimention arrays. * */ #ifndef EXTLIB_VECT_H #define EXTLIB_VECT_H #include "extlib.def.h" /** Vect : type for a vector. */ type...
[ "nicolas.marcy@etu.u-bordeaux.fr" ]
nicolas.marcy@etu.u-bordeaux.fr
8afaa9091e7585f8b406ca6fa7cb73723d9e00e2
502da37d15b473edd9ac56f10871a2e74a774920
/src/cortos2/examples/example_050/main.c
daa30d6d301f94408263de337b631695ac361c38
[]
no_license
adhuliya/sparcv8-ajit
5cf7c8fc1e89dc97b3160c010ba9c95cd993eee6
c121c33f5b1eaabf040cf929678229a21f8283de
refs/heads/master
2022-08-22T08:20:09.423969
2022-07-24T04:10:11
2022-07-24T04:10:11
97,362,905
2
0
null
null
null
null
UTF-8
C
false
false
366
c
/** A simple example to demonstrate running two functions on two separate Ajit Threads. */ #include <math.h> #include <cortos.h> uint32_t b; void main() {} // important, but kept empty void ajit_entry_func_001() { b = (uint32_t)cos(0); cortos_exit(b); // safely exit } void ajit_entry_func_010() { b = (uint32...
[ "lazynintel@gmail.com" ]
lazynintel@gmail.com
69dfbcd3fd2ee2cf5839291d142c3135d97b381b
c79e03092a86c30e3c1f8fde1618ef3002f4d8a1
/chess/EIFGENs/chess/W_code/C7/we1189d.c
5016d34a6443531885917414f39b9f8a6d6c1054
[]
no_license
shesan/Eiffel-Projects
0da86814a3b12e6b69eba73665ed800670c0dcf1
94f3d0b8be89285327f3093f628c7615edcf6cf4
refs/heads/main
2023-05-08T04:23:06.412007
2021-05-30T18:26:46
2021-05-30T18:26:46
372,284,028
0
0
null
null
null
null
UTF-8
C
false
false
3,002
c
/* * Class WEL_BN_CONSTANTS */ #include "eif_macros.h" #ifdef __cplusplus extern "C" { #endif static const EIF_TYPE_INDEX egt_0_1189 [] = {0xFF01,232,0xFFFF}; static const EIF_TYPE_INDEX egt_1_1189 [] = {0xFF01,245,1188,0xFFFF}; static const EIF_TYPE_INDEX egt_2_1189 [] = {0xFF01,1188,0xFFFF}; static const EIF_TY...
[ "shesan_619@hotmail.com" ]
shesan_619@hotmail.com
c3ffa356cc42fcd010793c596511932dc2a74d80
ef02befee9fdf4587e7618cae9f97f9c06c3938f
/Enterprise_Serivces/Cert/Bronze3/CSLGreatPlains/GetCompanyIdPayablesDocumentsDocumentId.c
db26c3ce65be13bab8cfe41920f1d2d26cd4686e
[]
no_license
banjan/DGS
711b399bd43e13a07502bad81e1b74bd565b1469
4c5fc1037227501724a346c7a11b99c60656b662
refs/heads/master
2021-01-16T18:21:43.300039
2017-08-11T18:44:49
2017-08-11T18:44:49
100,061,574
0
0
null
null
null
null
UTF-8
C
false
false
556
c
GetCompanyIdPayablesDocumentsDocumentId() { web_reg_find ("Text=BatchKey", LAST ); lr_start_transaction("GreatPlains_GetCompanyIdPayablesDocumentsDocumentId"); web_custom_request("Get Company Id Payables Documents Document Id", "URL=http://cslgreatplainsprod.gha.pvt/v1/GreatPlainsApi/Companies/4/Payables...
[ "v_amajum@BABGSETC" ]
v_amajum@BABGSETC
dca2f7581108f9c76d4ea8da21f4067390c433bc
478575a3efed487bb3a08faef08fe0ab2cf73d74
/Anti Parellel Moving Plates/leapfrog.c
7c0588794805f8746faeed55a3ae0a91a1f630c3
[]
no_license
Manticore73/SPH-2D-Lid-Driven-Flow
916974ecf7a0d3804cfcebc2a4687af5c73da0fc
5ef6f183899e83cc717c7c3b69af0c69bf968807
refs/heads/master
2020-04-08T19:27:10.038646
2018-11-29T11:40:11
2018-11-29T11:40:11
159,655,984
1
0
null
null
null
null
UTF-8
C
false
false
5,931
c
#include <stdlib.h> #include <stdio.h> #include "state.h" static void reflect_bc(sim_state_t* s); static void lid_driven(int which, float barrier, float* x, float* v, float* vh, float v_imp); /*@T * \section{Leapfrog integration} * * The leapfrog time integration scheme is frequently us...
[ "noreply@github.com" ]
Manticore73.noreply@github.com
a7794487259a5c5a8b3c48823e376133c393cdb0
53954fe3a2a98ba66bf7cb76bab10845e58a29bb
/libft/ft_bzero.c
05056eb48ee34b7d5a16d972b6b2e82da410758d
[]
no_license
tprokysh/42_wolf3d
cfee7e568a4b663c4ccdef106b3e83a40a70b4da
22c638cb0d000d0c1836ccd6174ee19290ebe6c3
refs/heads/master
2020-07-31T07:00:42.907446
2019-09-24T06:07:01
2019-09-24T06:07:01
210,523,828
0
0
null
null
null
null
UTF-8
C
false
false
1,075
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_bzero.c :+: :+: :+: ...
[ "prokish.tal@icloud.com" ]
prokish.tal@icloud.com
734f7881c3fa28a1209ef0bad181ce271b922abe
1b405561c1c08c97e438b6051e1a9f9de7af6a4c
/kernel/src/Math.h
9260f80063cf8bcfce31ae6d21dd886acc76f760
[]
no_license
BEASTSM96/KiwiOS-Reloaded
8478fb14203116ecc6a7addfa4ab33b6a507223d
5032ebc1a605e6688b97c0eeff0190d7c246a85e
refs/heads/master
2023-07-14T15:40:42.440229
2021-08-29T12:26:28
2021-08-29T12:26:28
339,421,921
0
0
null
null
null
null
UTF-8
C
false
false
69
h
//Kiwi Math Header #pragma once struct POINT { long X; long Y; };
[ "beastboioioi.dev@gmail.com" ]
beastboioioi.dev@gmail.com
a5ed790748aba00f9160b1d78b02784a6fe77f45
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/7977c0b9-6db3-4839-867a-bc78332821c6.c
c1cc65b4b1163b4cb5ba44d31f1231ae4f05cf80
[]
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
579
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 533; l = 54; k = i/j; l = i/j; l = l/j; l = l%j; l = l-j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; char b[61]; char c[50]; a = 0; whi...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
a9aea2eb58f420e4e0ee1246e9d1f0f475739556
b6a301362700e433f9e81515869b8f939908c384
/rectangle.c
cc91da07cdc890c21c779c21ce965debc7c2bf06
[]
no_license
rlahmaid/cub
d6e26615721290e772c528c37dc8d24888cc4c66
62ba0a6d383e61f0b2b79f4652b44fea14a82970
refs/heads/main
2023-06-17T17:34:45.612377
2021-07-11T13:45:26
2021-07-11T13:45:26
384,958,176
0
0
null
null
null
null
UTF-8
C
false
false
2,128
c
#include<mlx.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct s_map { char **map; int w; int h; } t_map; typedef struct s_pos { float x; float y; } t_pos; typedef struct s_rec { t_pos pos; t_pos size; int color; } t_rec; void draw_rect(t_rec ...
[ "rlahmaid@s1r2p2.1337.ma" ]
rlahmaid@s1r2p2.1337.ma
3700a749fc16cc88080528b8860292ea9621f1e1
f01427093e1e4b6fc3b354ca65c50c4a79e8ae17
/j2735-lib/DSRC_IntersectionStatusObject.c
bef2e37e57ae0285d5b271652a3ac4975c2aca0d
[]
no_license
jiwonjoung/bsm
0e2a6824ce9d51fc899bf3b064fe4703ff6ba95b
e34d96b2400f64277029f632dc1dd408c39ed5d5
refs/heads/master
2020-04-10T07:10:57.680394
2018-12-07T20:55:30
2018-12-07T20:55:30
160,874,575
0
0
null
null
null
null
UTF-8
C
false
false
4,864
c
/* * Generated by asn1c-0.9.28 (http://lionet.info/asn1c) * From ASN.1 module "DSRC" * found in "DSRC_R36_Source.ASN" * `asn1c -S ../../../../tools/asn1c/skeletons -pdu=BasicSafetyMessage -fcompound-names` */ #include "DSRC_IntersectionStatusObject.h" int DSRC_IntersectionStatusObject_constraint(asn_TYPE_descr...
[ "jiwON" ]
jiwON
e34c325ed7fbfbe289f3661d20bd44b77e5ebcc2
70fb75f903fbbfcb64f45c38e86a374a4e20443c
/Max Peabody's 3D Tennis/OpenGL_Shaders/OpenGL_Shaders/ShaderHelpers.h
92b68f2a0332cc12e99ff4e0f125a0ddd7254e91
[]
no_license
maxpeabody/3D-Tennis
6015c92576f6bbbf14cd72d0292322de5d84e73b
202e271230fc544e24b5a0fa71fa792d16d2b84e
refs/heads/master
2021-01-10T07:29:38.332704
2016-02-18T18:14:33
2016-02-18T18:14:33
52,027,182
0
0
null
null
null
null
UTF-8
C
false
false
759
h
#include <GL\glew.h> #include <glm\glm.hpp> #include <glm\gtx\transform.hpp> // Loads the text from a file and returns it as // a single c-style string char* loadTextFile(const char* file); // Loads a shader of the specified type GLuint loadShader(const char* file, GLenum shaderType); // Loads and combines multiple ...
[ "mdp4566@rit.edu" ]
mdp4566@rit.edu
96a31dc92b94b05adddd3f46199e9fe1519c11a7
dc36140709326666005ae36a9dac2824bb3323cd
/include/nanoev.h
fd8520007b8b12411b15c4b2ca26c5a1db5fdeac
[ "MIT" ]
permissive
chenbk85/nanoev
e764705478550cc577669b9c2a1c5b92526703a1
ffe94552d0a8b443876b6878e3b9ab8027e0f9ff
refs/heads/master
2020-12-28T21:06:09.774252
2015-05-08T06:27:29
2015-05-08T06:27:29
null
0
0
null
null
null
null
UTF-8
C
false
false
5,540
h
#ifndef __NANOEV_H__ #define __NANOEV_H__ /*----------------------------------------------------------------------------*/ /* return codes */ #define NANOEV_SUCCESS 0 #define NANOEV_ERROR_INVALID_ARG 1 #define NANOEV_ERROR_ACCESS_DENIED 2 #define NANOEV_ERROR_OUT_OF_MEMORY 3 #define NANOEV_ERR...
[ "zhuyie@gmail.com" ]
zhuyie@gmail.com
d626b9d41b849f9f196420114781a4b7e549e581
fbdb3e4df3925b330739e599d7f539a5aea4f163
/d/yanziwu/neitang.c
6025961ff777871ef36cc3c0143b87d170e7135b
[]
no_license
MudRen/ZHLib
2be4566998800d1a8ed50bf379d0e43a7c97e8ac
73111626fed37f302ca433dd1628730ca07e7dc2
refs/heads/master
2020-04-04T15:43:26.136616
2018-11-04T04:42:20
2018-11-04T04:42:20
156,049,634
2
3
null
null
null
null
GB18030
C
false
false
536
c
//room: neitang.c inherit ROOM; void create() { set("short","内堂"); set("long",@LONG 这是一间雅致的内堂,布置简单而典雅。里面站着个一身淡绿的女 郎,向着你似笑非笑。似乎是江南灵秀造了这样一个小美人。 LONG ); set("exits",([ "north" : __DIR__"qinyun", ])); set("objects",([ __DIR__"npc/abi" : 1, ...
[ "i@oiuv.cn" ]
i@oiuv.cn
4e4b6dceb8442db7e2537d71849dd1ca7882e543
0b0193153f9633fc9667923c44432981b126b292
/HR_StudentsMarkSum/src.c
1b41c789acdd433ab13f8c92d12f6d8843ec46b6
[]
no_license
ChristyRachel/C-Programming
25b2458ec6dc9034270ccfb7293a18e826ecd108
3edb17b49ca5d3aee5a60006aae8decc4cfc6f60
refs/heads/master
2023-08-09T23:56:44.597997
2023-08-08T18:14:48
2023-08-08T18:14:48
243,688,589
1
0
null
null
null
null
UTF-8
C
false
false
968
c
/* * src.c * * Created on: Jul. 30, 2023 * Author: christy */ #include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> //Complete the following function. int marks_summation(int* marks, int number_of_students, char gender) { int sum_of_marks=0; if(gender == 'b'){ for(...
[ "noreply@github.com" ]
ChristyRachel.noreply@github.com
15538a9613c62dff0c44ce9ae6c1827e217e02fe
a163d695eee7677ff48b6d44ace75a226c633440
/src/pkg/runtime/386/atomic.c
c031cc4f6906c7ef09fa0e32c978894ad8ec629f
[ "BSD-3-Clause", "LicenseRef-scancode-google-patent-license-golang" ]
permissive
sshyran/go-1
0d1fc2863357ab1ea7fd8e61496392c1df7964a0
71b1aefbf3c25ba0f21a883517722ac13f41c29d
refs/heads/master
2023-01-28T03:34:30.340105
2011-07-08T05:22:05
2011-07-08T05:22:05
203,660,983
0
0
BSD-3-Clause
2023-01-12T15:38:18
2019-08-21T20:39:19
Go
UTF-8
C
false
false
270
c
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "runtime.h" #pragma textflag 7 uint32 runtime·atomicload(uint32 volatile* addr) { return *addr; }
[ "dvyukov@google.com" ]
dvyukov@google.com
5bc1a137c46424fc69ea31b08c2698ea9ed36f9c
c5bf25a0f53887ebe59ea8d69e272ab2d70f8c7f
/main.c
11380cbbc081f548a639c2c412c113f906339266
[]
no_license
sarbar2002/lab1-c
b5daebc9bcfb0ad6331d08e1cec7d71a4f20fdf6
cdcd90e3ebbaa139854cf7275322ac8aa8ac6dfc
refs/heads/master
2022-12-17T17:23:05.814490
2020-09-03T21:32:16
2020-09-03T21:32:16
292,683,682
0
0
null
null
null
null
UTF-8
C
false
false
482
c
// Author Sarthak Singh sxs6666@psu.edu // Collabrator Anthony Aguilar axa6168@psu.edu // Caollabrator Justin Maines jtm5948@psu.edu //Collabrator Maurizio Hazoury mbh5817@psu.edu #include <stdio.h> #include <readline/readline.h> #include <stdlib.h> int main(void) { char *tempstr = readline("Enter temperatur...
[ "sxs6666@psu.edu" ]
sxs6666@psu.edu
e64558575973c3a7fe2980da6ccbc6dc53945722
ca2c7b83bee0f91cb066a48d904f1f120588f272
/hws/hw2/universe.h
c648316b0f3875b8ad30f543fb997339bb737ec5
[]
no_license
Keweiqu/graphics
6212634962257d9a817d5918d4dc192f901e8385
e36affda0949d452702a123fffd2652427eb5389
refs/heads/master
2020-12-25T14:34:12.521682
2016-12-15T01:17:00
2016-12-15T01:17:00
67,452,224
0
0
null
null
null
null
UTF-8
C
false
false
4,031
h
#ifndef UNIVERSE_H #define UNIVERSE_H #include <stdlib.h> #include <stdio.h> #include <math.h> #ifdef __APPLE__ #include <GLFW/glfw3.h> #else #include <GLFW/glfw3.h> #endif #include <string.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <stdbool.h> #define TRUE 1 #define FALSE ...
[ "kqu@brynmawr.edu" ]
kqu@brynmawr.edu
dfb1f893a1c6bfe0a38e5be5c06ec57de00e7f77
b9384d6b000da2317b77ed63cc1e66703bae3737
/drivers/include/pc_buffer.h
775db2edb0b57b77ea986dfef0978190c74b4bad
[ "MIT" ]
permissive
zyd2001/ECE353Project
7f75a35226e0415ed65c873e53d3e8773fafb0fb
c109caf396e3ed65a4ed26e0c5aeeb42c7f9afba
refs/heads/master
2022-05-22T16:49:19.778842
2020-04-30T01:44:32
2020-04-30T01:44:32
260,085,503
0
0
null
null
null
null
UTF-8
C
false
false
3,528
h
// Copyright (c) 2015, Joe Krachey // All rights reserved. // // Redistribution and use in source or binary form, with or without modification, // are permitted provided that the following conditions are met: // // 1. Redistributions in source form must reproduce the above copyright // notice, this list of ...
[ "noreply@github.com" ]
zyd2001.noreply@github.com
0c3cc56f74c721f0fc01d1a97fa35cae0c5ffd0e
01b75e4e37698657e49e7654816f9d70cd0e1f92
/Dodge/Classes/object_tags.h
7fe9b9c5c59780fd6fc6d815646dc178e13fb9a9
[]
no_license
jPinhao/DodgeCC2dx
e22e5fba027a32ac85bfb0f9c4d07285fe4af7ae
ebf2942743c7caac1ef859954e835b0e42d52b85
refs/heads/master
2021-01-10T21:14:25.648938
2015-02-27T16:18:39
2015-02-27T16:18:39
30,300,751
0
0
null
null
null
null
UTF-8
C
false
false
429
h
#pragma once #define TAG_EDITOR_SPAWNER 1 #define TAG_EDITOR_BG 2 #define TAG_EDITOR_BG_SCORE 3 #define TAG_EDITOR_PLAYER_SPAWNPOINT 4 #define TAG_EDITOR_SPAWNCONTROLLER 4 #define TAG_GAME_LAYER_BACKGROUND 10 #define TAG_GAME_LAYER_SCENERY 11 #define TAG_GAME_LAYER_PLAYER 12 #define TAG_GAME_LAYER_UI 13 #define TAG_...
[ "jp23v07@zepler.net" ]
jp23v07@zepler.net
f9f4e9710f4819dfcff55d77933512d5e8b94a4a
a563aa02a39444edd91fbb27f3458e41f5eb632c
/pyrite-lib.c
315db78f292668adb7432bec6b2e6685e2731012
[]
no_license
jonknet/Pyrite
a58fc5e23f74cd31cc93b6a855580c93f32b21e3
93e671c2ad3ec36fa94e8c67414a3cb17e2e7dde
refs/heads/master
2021-12-02T10:37:31.597512
2013-03-11T07:30:46
2013-03-11T07:30:46
null
0
0
null
null
null
null
UTF-8
C
false
false
5,801
c
/* Pyrite: a BASIC "compiler" implemented entirely using the C * macro system * * All components are in the public domain * * This file defines Pyrite's runtime library: GC, exceptions, and a * few collection and string functions */ #include <signal.h> #include <stdio.h> #include "pyrite-lib.h" struct _Fram...
[ "alex@home" ]
alex@home
e2a47dc8935ffb83c834808dfff12f991bb2df72
cee79e8c3a3dd762d6a4db941360933d86029102
/include/ines.h
0a3f48d7c5699047dd23db0b4b97418dabb0a613
[ "MIT" ]
permissive
afrigon/ines-cli
7ad772795bfe3feb8e5290825af19ef7c8f11974
7a2d71cca791bfd358d9050daa8289df0adef4de
refs/heads/master
2020-05-16T17:54:37.605264
2019-04-26T05:07:07
2019-04-26T05:07:07
183,208,882
0
0
null
null
null
null
UTF-8
C
false
false
518
h
#ifndef INES_MAGIC_H #define INES_MAGIC_H #include <stdbool.h> #define INES_MAGIC 0x1A53454E typedef struct { uint32_t magic; uint8_t prg_size; uint8_t chr_size; uint8_t control1; uint8_t control2; uint8_t save_ram_size; char padding[7]; } ines_header; int ines_process(FILE* fp, int mode...
[ "alexandre.frigon.1@gmail.com" ]
alexandre.frigon.1@gmail.com
74036ccb6e337681710102bee75a21c6061fa2cc
2ff377102f061f642f0eaf704bc1a79558bca628
/lua/tuple.c
054a28ee5ecf308c7b45bc3151448c5fd3d33686
[]
no_license
skyshaw/snippets
72000f74074bd4f0bd796c77d3bddc25b97d7807
4319301e3face5354d3ceaf0560602e80c881c5d
refs/heads/master
2020-05-17T17:37:06.111209
2013-08-04T05:17:17
2013-08-04T05:17:17
2,719,210
0
0
null
null
null
null
UTF-8
C
false
false
793
c
/* compile with -fPIC -shared */ #include "lua.h" #include "lauxlib.h" int t_tuple(lua_State *L) { int op = luaL_optint(L, 1, 0); if (op == 0) { int i; for (i = 1; !lua_isnone(L, lua_upvalueindex(i)); ++i) lua_pushvalue(L, lua_upvalueindex(i)); return i - 1; } else { ...
[ "pxtian2008@gmail.com" ]
pxtian2008@gmail.com
f3dd58abf12f4dd3f2b66a5c34814c798460141f
8dd996aec6da3878e9f13d5777687323350cd6ac
/p47binarysearch.c
4d287ebff6e95fa531e9d90d52a6880e44d53c54
[]
no_license
Amreen08/c-
4eb8b75a509ee9654b17e8240b6fe2a3ddcf0149
bb4edc8d29c03a8db34cd5da90092ddfeb0deeb7
refs/heads/main
2023-05-03T02:39:47.712777
2021-05-17T20:32:21
2021-05-17T20:32:21
357,208,492
1
0
null
null
null
null
UTF-8
C
false
false
675
c
#include<stdio.h> int main() { int a[10],n,i,val,low=0,high=(n-1),mid; printf("Enter size"); scanf("%d",&n); printf("Enter sorted array:\n"); for(i=0;i<n;i++) { scanf("%d",&a[i]); } printf("Enter value to search:"); scanf("%d",&val); while(low<=high) { ...
[ "noreply@github.com" ]
Amreen08.noreply@github.com
00c21812dc3a51b5b8b58e97bdf80611b6f1ffeb
3df20d6b796d50b595d810c0e088ae4da8d0aebc
/System Programing/Calculator(LY)/y.tab.h
b18d64736e647e6dce3ac619a05572587dbb44c6
[]
no_license
thezer012/DAA-SP-Assignments
68bd6e667e0833f9617371f278537b845297ea83
02ae5e0fa3cd895273059aded40d4f12f0999f58
refs/heads/master
2021-10-19T16:03:03.666697
2019-02-22T10:37:52
2019-02-22T10:37:52
null
0
0
null
null
null
null
UTF-8
C
false
false
260
h
#define NUMBER 257 #ifdef YYSTYPE #undef YYSTYPE_IS_DECLARED #define YYSTYPE_IS_DECLARED 1 #endif #ifndef YYSTYPE_IS_DECLARED #define YYSTYPE_IS_DECLARED 1 typedef union { double dval; } YYSTYPE; #endif /* !YYSTYPE_IS_DECLARED */ extern YYSTYPE yylval;
[ "noreply@github.com" ]
thezer012.noreply@github.com
657129a8c4127a8ac003d183d417c9b0af8bed3e
42851ca56d166903491e2122b2ffb9cc8804310b
/Projects/STM32F746ZG-Nucleo/Examples/UART/UART_Printf/Inc/stm32f7xx_hal_conf.h
c24294b3c5f10f09a15a7b5c80d0c4bd6159aa4d
[]
no_license
SSSnow/STM32Cube_FW_F7_V1.5.0
d1495e5cdfb4716460e284cc1d830586a3926402
3d7a72da5deda5f01adb769d86cc5febd3a3e3f9
refs/heads/master
2021-01-23T02:15:18.139576
2016-12-08T16:59:42
2016-12-08T16:59:42
85,972,444
1
0
null
2017-03-23T16:30:21
2017-03-23T16:30:21
null
UTF-8
C
false
false
16,571
h
/** ****************************************************************************** * @file stm32f7xx_hal_conf.h * @author MCD Application Team * @version V1.0.1 * @date 22-April-2016 * @brief HAL configuration file. *************************************************************************...
[ "hello.kychu@gmail.com" ]
hello.kychu@gmail.com
f7d6d1af763271d9fc514ebf71160e853bb1626b
34d0bad8a2849447925fef0c752406122baae3f2
/ti_tools/syslink_2_21_02_10/packages/ti/syslink/utils/hlos/knl/Qnx/TraceDrv.c
dc137f8ccb51f0d8749cd557bf378bfa8ed183b0
[]
no_license
pamsimochen/hardwork
5e05154fac35a0aacc0f8b64c21b2ca767fd4a3d
1e0a4cafdd1722eb58c4261bad68e602352f2079
refs/heads/master
2021-09-07T22:44:16.620515
2018-03-02T09:48:40
2018-03-02T09:48:40
103,899,662
1
0
null
null
null
null
UTF-8
C
false
false
4,234
c
/* * @file TraceDrv.c * * @brief OS-specific implementation of Trace driver for Qnx * * * ============================================================================ * * Copyright (c) 2008-2012, Texas Instruments Incorporated * * Redistribution and use in source and binary forms, with or without ...
[ "82425509@qq.com" ]
82425509@qq.com
1e092ab7f69718ffd0112815e6243dffbc5b94b0
c87127655cf02d9d25b2ee73bd0bf8e9e53c8d20
/src/platform/msc/inline_c.h
c482c7e2863481da23496c361ece02366e0e3612
[ "BSD-3-Clause" ]
permissive
nioshares/InitiS-Coin
8f2c81b90470946abfd6933efbcc040e2c946b7a
2230331b788bafb659ca3810764c089a60ee3dd9
refs/heads/master
2020-09-26T02:08:55.078501
2019-12-09T03:53:00
2019-12-09T03:53:00
226,138,265
0
0
null
null
null
null
UTF-8
C
false
false
1,787
h
// Copyright (c) 2018-2019, CUT coin // Copyright (c) 2014-2018, The Monero Project // // 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 th...
[ "49848701+nioshares@users.noreply.github.com" ]
49848701+nioshares@users.noreply.github.com
0cb64c54539d25b2bf4145e4c0ab8bab438e6435
e4a91a6ebd1d5b029ee72ea94fc74f3e3cf9b998
/c/power.c
8badc59987f41855f72076bfa3f1876465777da5
[]
no_license
alexisbellido/cpp
0d290701d34c0892d13d7bd56ec8d93b86bbf96f
49e0d37e5b13e4ce8e98bcb2b9edc5d524db8fbd
refs/heads/master
2021-05-04T10:48:06.711917
2017-08-30T15:34:38
2017-08-30T15:34:38
36,335,661
0
0
null
null
null
null
UTF-8
C
false
false
386
c
#include <stdio.h> int power(int m, int n); /* test power function */ int main() { int i; for (i = 0; i < 10; ++i) { printf("%d %d %d\n", i, power(2, i), power(-3, i)); } return 0; } /* power: raise base to n-th power; n >= 0 */ int power(int base, int n) { int i, p; p = 1; for (...
[ "alexis@ventanazul.com" ]
alexis@ventanazul.com
8e0a2b2b52a8501ea3e68189d0afe5ca03806295
42956e3b0229665e1c97d84128bf209d1ab7a721
/RollaBall/Builds/RollaBall_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Il2CppGenericClassTable.c
932686a133b97117a99203b56361cfd93df925d6
[]
no_license
SebastiaCiudadB/Roll_a_Ball
dc8a750fe15148bcb0758fbd90ff13dffb68ec5a
3edc8fb097f57b6dba5174f65ab6bd401b73ae70
refs/heads/main
2023-04-19T03:44:14.276960
2021-05-03T14:42:15
2021-05-03T14:42:15
363,176,453
0
0
null
null
null
null
UTF-8
C
false
false
2,436,529
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 extern Il2CppGenericClass U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F_GenericClass; extern Il2CppGenericClass EqualityCo...
[ "sebastia.ciudad@gmail.com" ]
sebastia.ciudad@gmail.com
4aa8ce2b4c3c4b8f09313130f3e319b38d6d009b
07e7958bb57d6caa25225c6bc6db2194daea671c
/spree-master/project2/Network/packet_for_boss.h
e4fba82e3f5d41d3878dc44d6be5a9d86401f2c4
[]
no_license
pedromela/9d
34eb86d1acc863586c8e7338fc5f5c6ccaaacaa9
c65024fba16eca04b4eec897d312eb295ce60cfa
refs/heads/master
2021-07-21T07:34:18.570081
2017-10-30T17:58:45
2017-10-30T17:58:45
108,886,922
0
1
null
null
null
null
UHC
C
false
false
7,737
h
#pragma once /*======================================================================================== 예외전투 방 (보스전방, 수련방 등..) Message Scope : 23( 184 ~ 191), 24 ( 192 ~ 199 ) 우리 서버는 패킷번호가 고갈되어 가고 있다. 아껴쓰자.. =========================================================================================*/ #defi...
[ "pedro.miguel.69@hotmail.com" ]
pedro.miguel.69@hotmail.com
c2830cd930965c8cd34759a473b0da46c8469273
7b546260cb4f5f9bf4ee6b4b5b70be1015225158
/MichaelsFiles/move.h
6957e7c78f31636a01bf5962828cb88e8c67a64d
[]
no_license
jibbs00/cmpt355project2-eric-julian-michael
52224df8f4b887b8ec0eefab49e595931e83406f
9b1a32efcfb6197ae126e4da97013467b423df8b
refs/heads/master
2021-01-02T09:13:40.233939
2013-04-09T18:19:59
2013-04-09T18:19:59
null
0
0
null
null
null
null
UTF-8
C
false
false
648
h
/** * @file move.h * @author Julian Martinez del Campo * * This file provides a move in konane */ #ifndef _MOVE_H_ #define _MOVE_H_ /** A move */ struct Move { int start_row; int start_col; int end_row; int end_col; }; extern char *players_moves; extern char *opponents_moves; struct Move * new_m...
[ "hnatiwm4@mymail.macewan.ca" ]
hnatiwm4@mymail.macewan.ca
a27c90c0a6cfa24356730ae7cfc177fec873c347
ed07c57943211d62398affb93ff6512913d83bf8
/freertos_uart/source/interprete.h
bc19a068b67cf6162a8457e68abdd39949f07568
[]
no_license
manuelf23/lab_2
a6f23109fb9b5270cdbe75c476428f0bf5aa5002
79c944baf8197f659b6a2167e0200418959cbe2d
refs/heads/main
2023-01-29T09:01:39.715153
2020-12-08T01:22:03
2020-12-08T01:22:03
319,489,876
0
0
null
null
null
null
UTF-8
C
false
false
776
h
#if !defined(INTERPRETE_H) #define INTERPRETE_H #include <stdio.h> #include <string.h> #include "FreeRTOS.h" #include "task.h" #include "queue.h" #include "timers.h" #include "stdio.h" #include "board.h" #include "pin_mux.h" #include "semphr.h" #define ENT_1 3 // Tiene una resistencia de pullup intern...
[ "manuelf.garcia23@gmail.com" ]
manuelf.garcia23@gmail.com
4efb46ff14aec5baf4d5723942e65e386d518d82
594c5b55167158bca1a7e80f860c6650d8907662
/GeometryProcess/siftMatch/imgfeatures.h
9c2c03348b62abee3c8aaf9bc972f7815ac5ecb4
[]
no_license
oygx210/StarMapIdentification
0cdf7b0a12fe67299fb42adb82214f86527bf13c
6d0da547151cf51b074d61bae7e437f1e3a6d4b2
refs/heads/master
2023-02-12T22:05:21.444110
2021-01-14T07:27:11
2021-01-14T07:27:11
null
0
0
null
null
null
null
UTF-8
C
false
false
4,018
h
// imgfeatures.h: interface for the imgfeatures class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_IMGFEATURES_H__835B9429_2383_4B63_AA05_38EEB7544364__INCLUDED_) #define AFX_IMGFEATURES_H__835B9429_2383_4B63_AA05_38EEB7544364__INCLUDED_ #if _MSC_VER > 1000 #pragma once ...
[ "guanzhichao@whu.edu.cn" ]
guanzhichao@whu.edu.cn
e98d48910c8855b01288554c08bcfca35698a782
fd2837aef61176323fb6d8eb647b20debe7995f5
/CSAPP/sa-bAbi/working/2562dbb2b3.c
ac1954499a9abbdc7796cf54b5d56fb228915857
[]
no_license
callMeBigBen/CourseWork
b0ef17b5cfe07ba61404abd68812d2b56393db87
41d68c07f7b1411dbca7dc7d5e2efeceb9edee27
refs/heads/master
2020-04-10T08:18:21.617984
2019-05-22T05:26:38
2019-05-22T05:26:38
160,902,512
1
0
null
null
null
null
UTF-8
C
false
false
497
c
#include <stdlib.h> // Tag.OTHER int main() // Tag.OTHER { // Tag.OTHER int entity_1; // Tag.BODY int* entity_7; // Tag.BODY entity_7 = new int(rand()); // Tag.BODY entity_1 = rand(); // Tag.BODY int* ...
[ "33094628+callMeBigBen@users.noreply.github.com" ]
33094628+callMeBigBen@users.noreply.github.com
4fd63629b5394ab33c6983b4d3d0916ce099f919
8bdd5d7a991e29835169251ca60ede8bef41d8cc
/src/netcruzer/lib/nz_pt66din6.h
ea22be03a607e75a2b58fecb588ebb304d1b01c7
[]
no_license
GeorgeSellner/netcruzer-src
833f39a43d8836c9c0359a58616c17013270c21b
7cc290aed795b7eb503c722fa954691389886f14
refs/heads/master
2022-12-13T19:13:32.748846
2017-05-12T09:27:06
2017-05-12T09:27:06
265,370,717
0
0
null
2020-05-19T21:25:37
2020-05-19T21:25:37
null
UTF-8
C
false
false
14,117
h
/** * @brief Contains hardware specific defines for PT66DIN6 board. * @file nz_pt66din6.h * @author <a href="www.modtronix.com">Modtronix Engineering</a> * @compiler MPLAB XC16 Compiler * * @section nz_pt66din6_desc Description ***************************************** * Thi...
[ "git1@modtronix.com" ]
git1@modtronix.com
9f5fe09deba6c5b41aa11cf69ee8053285ca1015
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/tty/serial/extr_max310x.c_max310x_shutdown.c
0aafea581ae8544409eebf7360b04c520882b3a5
[]
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,133
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