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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6a15a9fa2c51d92e49eca2e135bb2d84dc84663f | 1fcf09a7111df0a3e74589f164c540c3e1dcbad9 | /Exercise 73049/Exercise 73049.c | e58219e1463f0a4f407c61a21da054321a9917fa | [] | no_license | gbolt45/How-to-Program-C-My-Programming-Lab | c54049f1d581d21b767b2bdf085156873605fab6 | f1e951b4576ddad806de78e9b25ecec4bce391f0 | refs/heads/master | 2021-01-09T20:29:30.055735 | 2017-03-07T17:23:13 | 2017-03-07T17:23:13 | 81,236,993 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 327 | c | #include <stdio.h>
int main() {
int number, a, b, c, d, e, f;
printf( "Enter a 5 digit integer: " );
scanf( "%d", &number );
a = number;
b = a / 10000;
c = a / 1000 % 10;
d = a / 100 % 10;
e = a / 10 % 10;
f = a % 10;
printf( "%d %d %d %d %d", b, c, d, e, f );
return ... | [
"spikelightningbolt@gmail.com"
] | spikelightningbolt@gmail.com |
558e431a4b987b96e311360464788dd8d52b87b3 | 1e191b28b762c0d5dd95455a36affd756ff64bec | /tests/cs652/j/ifelse.c | 68f773be4a6d1326c713e2353780c079d33fc8c2 | [] | no_license | syuanivy/Partial-Java-to-C-Translator | 67ff9beb07575d905ca36227cb4f1702c8ec245a | ab5742d9f01f4de1faa588e8105f93e616430db6 | refs/heads/master | 2021-01-10T03:16:08.122457 | 2015-04-08T06:27:44 | 2015-04-08T06:27:44 | 36,315,352 | 2 | 2 | null | null | null | null | UTF-8 | C | false | false | 408 | c | #include <stdio.h>
#include <stdlib.h>
typedef struct {
char *name;
int size;
void (*(*_vtable)[])();
} metadata;
typedef struct {
metadata *clazz;
} object;
object *alloc(metadata *clazz) {
object *p = malloc(clazz->size);
p->clazz = clazz;
return p;
}
int main(int argc, char *argv[])
... | [
"parrt@antlr.org"
] | parrt@antlr.org |
13c762ad022cda5f422a58b7128b7aa1060462b9 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/00989583-fa0b-4ce5-b9bc-8cd78f45cfd8.c | af961f93dbf1c899ce58220c7a68e812376fa7c6 | [] | 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 | 573 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = l%j;
j = i-j*i;
//variables
/* START VULNERABILITY */
int a;
long b[17];
long c[36];
a = 0;
while (( a - 1 ) > -1) {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
4ca8d936e3ada20563446f12e53501c8644259c5 | 79a8168cc32ce5b9b4bfdb07f92605fae4d3f4c3 | /Arduino_package/hardware/system/component/common/api/wifi/rtw_wpa_supplicant/src/crypto/tls.h | b44be6514306cb6b1224df5413892a61e2f60d89 | [] | no_license | ambiot/ambd_arduino | 2f82fdf6adf4f8c86a3300c30a9a63dbc1491c37 | 8e9512a7ac1372b6cc123127da36324f8d0002a2 | refs/heads/dev | 2023-09-04T05:03:05.259497 | 2023-08-25T03:59:40 | 2023-08-25T03:59:40 | 232,280,483 | 82 | 80 | null | 2023-09-13T08:22:13 | 2020-01-07T08:37:22 | C | UTF-8 | C | false | false | 21,658 | h | /*
* SSL/TLS interface definition
* Copyright (c) 2004-2013, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#ifndef TLS_H
#define TLS_H
#include "utils/common.h"
struct tls_connection;
struct tls_random {
const u8 *client_ran... | [
"zhangzhenwu@realtek-sg.com"
] | zhangzhenwu@realtek-sg.com |
8c0b19c5c79364b9587688e7c0b180eaa4d4bbed | 7e34099853f87cbfd0ee69d8894d10eaf8e1df94 | /implementations/group6/Milan2/src/EIFGENs/demo/W_code/C14/ce458.c | d1cfa3a88ba5b371bb12efffe54b6bde14373c35 | [] | no_license | Matias-Bernal/dose2014 | cc1b973de8ba592ba82b2c8c8efd7749bcd3a033 | 139376fb884523cf5e0ccd7e9fed152555641a35 | refs/heads/master | 2016-09-06T03:51:44.566674 | 2014-12-24T14:49:10 | 2014-12-24T14:49:10 | 32,119,587 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,249 | c | /*
* Code for class CELL [G#1]
*/
#include "eif_eiffel.h"
#include "../E1/estructure.h"
#ifdef __cplusplus
extern "C" {
#endif
extern EIF_TYPED_VALUE F458_1364(EIF_REFERENCE);
extern void F458_1365(EIF_REFERENCE, EIF_TYPED_VALUE);
extern void F458_1366(EIF_REFERENCE, EIF_TYPED_VALUE);
extern void EIF_Minit458(voi... | [
"marionDepuydt@f6206239-57e0-e8d1-037d-e0d2c07dc7bc"
] | marionDepuydt@f6206239-57e0-e8d1-037d-e0d2c07dc7bc |
eeb89dfe2f83ad658d91085efefbbd4e6c24f8f0 | aa96c327bd725bee7179f944ad94e98299977d14 | /c/src/euler26.c | 33d821c273dd5e7df593be3524953ec41a15afb1 | [] | no_license | DMRobertson/euler | 96e86807ed569660daa2c896636c059c05495d0e | 1b4bf159171eb8be8a1d9c8ea0fad61abacd0baa | refs/heads/master | 2020-04-06T05:13:52.409590 | 2017-08-23T16:34:31 | 2017-08-23T16:34:31 | 55,310,028 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,068 | c | //prepare: -lm
#include <stdio.h>
#include <stdbool.h>
#include <assert.h>
#include "packed_bool_array.c"
/*
A unit fraction contains 1 in the numerator. The decimal representation of the unit fractions with denominators 2 to 10 are given:
1/2 = 0.5
1/3 = 0.(3)
1/4 = 0.25
1/5 = 0.2
1/6 = 0.1(6)
1/7 = 0.(142857)... | [
"david.m.robertson1@gmail.com"
] | david.m.robertson1@gmail.com |
52516cf082383df3ca7f825e89b53feedb4d9aab | 1a3f6abc842f9d8286c42e239bc1eaf40806d224 | /pic/touch/data2.h | 89b964a04bdbd0f5dc6eb410b2132b4d6f299629 | [] | no_license | olker-klelk/FPGA_touch_game.21_1-8 | 3987311028fda32f15c65ea0dfcf2e69df3cb252 | 36540044a54acf98e6a802e865ce1e0e4d4ba38e | refs/heads/main | 2023-02-11T13:52:45.448372 | 2021-01-12T06:27:25 | 2021-01-12T06:27:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,353 | h | const unsigned char gImage_data2[3572] = { 0X00,0X18,0X24,0X00,0X21,0X00,0X00,0X39,
0XF4,0XF5,0XFF,0XEF,0XF0,0XF4,0XFA,0XF6,0XF1,0XFD,0XFE,0XF4,0XEA,0XF4,0XEE,0XEB,
0XF8,0XF6,0XF3,0XF6,0XFB,0XF5,0XF2,0XFB,0XFA,0XF6,0XFC,0XF5,0XF1,0XFC,0XF0,0XF3,
0XFF,0XD4,0XD8,0XF0,0XBC,0XBE,0XDD,0XBD,0XC3,0XEE,0X99,0XA9,0XE4,0X94,0... | [
"noreply@github.com"
] | olker-klelk.noreply@github.com |
f7e9529e4a8b77509275736e43e455e943ac8723 | 08da6524318e36c5206f397e3375f92b534d3904 | /ft_strchr.c | acce637f6145c7676e2fd45b035742f6149cb78d | [] | no_license | kcoetzee/minishell | 47101242a41ecf9ead753bc65bdb3c0385ce6e80 | c19ac51134a2802550917d26cf3713bccf46dd6b | refs/heads/master | 2022-06-14T07:13:48.265405 | 2017-09-19T08:37:52 | 2017-09-19T08:37:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,105 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: ... | [
"root@localhost.localdomain"
] | root@localhost.localdomain |
4087590bb06ac13723768a8fffdc09503802e022 | 3d42078f7450f0cb8f11b0c8c4d66919a153158e | /src/parallel_fmm/exactForce.h | 14a18b1590daf9df6000537106b366b95da1ef0e | [] | no_license | jlat96/CS470_NBody_2019 | 90cba9444b9c738ce250548d6f2aa1ed790dc337 | 630eb6590b38f22e52a11588090fe4fcd6bc92ca | refs/heads/master | 2020-04-25T14:14:57.624455 | 2019-09-21T13:45:23 | 2019-09-21T13:45:23 | 172,835,126 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 33 | h | void Exact_Force( planet BD[] );
| [
"kelly4kc@dukes.jmu.edu"
] | kelly4kc@dukes.jmu.edu |
e7ef076bb4859621ceab88a17194bacb91a772fc | 0864e3db1a7a493af018b6cb8d3b263d8717e2ca | /Light_Detector/split.c | ae5c6485e518bc8528e777c94b5f8001a3bf48c4 | [] | no_license | Aswinvt/QuickInsert_ARM_LPC1768 | 3ef87ee9b0f8e86ac71a9c4eea05ee2be03ebc71 | 057e4be5d37b68b9f32b4760c079e76eddb3b217 | refs/heads/master | 2020-03-17T20:13:48.835833 | 2018-02-19T06:31:43 | 2018-02-19T06:31:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 578 | c | /*
* File name : split.c
* Compiler : MDK-Lite
* IDE : Keil uVision V5
* Author : Etiq Technologies
* Processor : LPC1768
* Created on : November 20, 2017, 02:19 PM
* Description : Program for ADC data coversion for UART and LCD
... | [
"aswinvt010@gmail.com"
] | aswinvt010@gmail.com |
d3d0e2b7e0245e8a4e328d983222e991775f0825 | a19bdf0610c6cf28fe2fe74eae7d969e8a00e698 | /Application/User/verision.h | 94c6a7f61893bcd01b38468f6ac3c18292abbf68 | [
"Apache-2.0"
] | permissive | wujun9959/WT-8B26 | 9db8a8c7dfc3bb7ff01b0b01555168b0a334a3eb | b4f4ff8421c6e0830725d8c9849910b9faa29fbd | refs/heads/master | 2021-01-23T14:17:13.576146 | 2017-09-07T03:36:42 | 2017-09-07T03:36:42 | 102,681,941 | 2 | 2 | null | null | null | null | GB18030 | C | false | false | 1,122 | h | /**
******************************************************************************
* @file verision.h
* @author zhang manxin
* @version V1.0.0
* @date 2015-3-12
* @brief This file contains all the functions prototypes for the verision driver.
******************************************************... | [
"wujun9959@163.com"
] | wujun9959@163.com |
36cb6ad31b539de3129bf632fb71b654ab8f3ab1 | 9a2d5bddfa27b7344496cb8e31d60dfb7adb2729 | /ueb03/src/debugGL.h | 55080c6acfaf003fb457bfe9a15fc8b333472358 | [] | no_license | MarcelloAttilaMessina1359/CG | 48c2dc245bb6c141e0d04e56fc9af76c60039ee5 | 507bd903d3c8cc8b1325f0c1820450c638fd70d0 | refs/heads/master | 2022-12-06T18:03:36.246368 | 2020-08-14T10:17:04 | 2020-08-14T10:17:04 | 287,504,887 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,848 | h | #ifndef __DEBUG_GL_H__
#define __DEBUG_GL_H__
/**
* @file
* Schnittstelle des Debug-Moduls fuer OpenGL-Programme.
* Genutzt werden sollten die Makros #CG_ERROR, #INFO, #GLSTATE und #GLGETERROR.
*
* @author copyright (C) Fachhochschule Wedel 1999-2011. All rights reserved.
*/
/* ---- System Header einbinden ---- ... | [
"marcello@pop-os.localdomain"
] | marcello@pop-os.localdomain |
5e1298fc541e595bfee9739b4b711ad134ffe89f | 6078de5b2c7799b425d25b43cf611b106436b04c | /q1.c | 45d945bee613b5df41d29c591c0a81f6b6512aa7 | [] | no_license | PJain2000/OS-Intro-to-System-Calls | 89d96e6fc33e1255bfec5494b271fd66a3dc0e51 | 9e62a2b290f41b74af2e3a4f78016c7f8d566661 | refs/heads/main | 2022-12-27T02:01:26.938418 | 2020-10-04T04:41:39 | 2020-10-04T04:41:39 | 301,040,676 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,512 | c | #include <syscall.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
long long int buffer_size= 1000000;
int main(int argc, char *argv[])
{
if (argc != 3)
{
write(2,"Enter 2 arguements",17);
return 0 ;
}
int md = mkdir ("Assignment", S_IRWXU) ;
int fo = open(argv[1], O_... | [
"noreply@github.com"
] | PJain2000.noreply@github.com |
0350c0839687aa2c186f2bc38df3a4b0a3396d20 | fee1e92c508bb58d5608ff5713a850af2ca39ff0 | /src/structs/t_object.c | fba7a06c2085c98e85fa85d677c1f1ee1dd322e9 | [] | no_license | hbock-42/Raytracer | bcde644fde0a330397b4f0863694e2ec2df9cd63 | f235cc81535196960e23b04c7cfe561a242b2453 | refs/heads/master | 2020-03-07T01:17:07.661387 | 2017-04-05T16:49:48 | 2017-04-05T16:49:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,185 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* t_object.c :+: :+: :+: ... | [
"valentinchaillou89@gmail.com"
] | valentinchaillou89@gmail.com |
111377d56084b8c53f8dc1f4eb3955ae4bbcee8b | 95fc3178faf5b82a9431f1d465b1f2e7e153c0f5 | /openblas/interface/CMakeFiles/icamin.c | df540bb00eee7759903d3035370b6f4bfb69d3ec | [] | no_license | kendonB/base | 7e53d116783e1130eca0c5533f4f0ed527939f46 | 885ae225e89f6c914ec3b0d6fb35f73a350252e5 | refs/heads/master | 2021-09-01T14:06:03.457255 | 2017-12-27T09:19:09 | 2017-12-27T09:19:09 | 115,228,450 | 0 | 0 | null | 2017-12-23T23:42:56 | 2017-12-23T23:42:55 | null | UTF-8 | C | false | false | 242 | c | #define USE_ABS
#define USE_MIN
#define ASMNAME icamin
#define ASMFNAME icamin_
#define NAME icamin_
#define CNAME icamin
#define CHAR_NAME "icamin_"
#define CHAR_CNAME "icamin"
#define COMPLEX
#include "C:/projects/OpenBLAS/interface/imax.c" | [
"kmb56@berkeley.edu"
] | kmb56@berkeley.edu |
761eb6b75ad5d99091febec8d38b67cc17f7bedb | 68d7da72e576ff9805b2bf138501cceb5a2ad56c | /src/command-fail-event.c | fae75ef6effa51eac0c9faa6866b390b043a618c | [
"LicenseRef-scancode-public-domain"
] | permissive | Oblomov/cltests | 8b0104133cc9e3dadbf817a215021fc642f290f9 | e67414cbbfb6181fb768e0320c0fdec096e4488c | refs/heads/master | 2020-04-11T05:51:24.883644 | 2015-10-21T03:46:04 | 2015-10-21T03:46:04 | 10,816,161 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,440 | c | /* Demonstrate platform behavior with events for failed API calls */
#include <string.h>
#include <stdio.h>
#include <CL/cl.h>
typedef int bool;
#define false 0
#define true (!false)
#define CHECK_ERROR(what) do { \
if (error != CL_SUCCESS) { \
fprintf(stderr, "%s:%u: %s : error %d\n", \
__func__, __LINE__, wh... | [
"giuseppe.bilotta@gmail.com"
] | giuseppe.bilotta@gmail.com |
03cb2c9f5dbd8399fc69c00c4ea9c7fc1b318a1e | 2b4fcaac4ffa133ef4e8b924e57f2f18123c4814 | /PROJECT1/SOURCES/thread.c | 1580b1e561c65be7e00de272a0418fa97bceac74 | [] | no_license | VishalVishnani/Advanced-Embedded-Software | ab12ec6c537c1b45347d22ae33ea03f772c226b4 | 3d2620a4d7ac8dbbdb303844b861a5fce3429db5 | refs/heads/master | 2021-01-23T17:35:20.399204 | 2017-12-12T03:15:36 | 2017-12-12T03:16:08 | 102,767,943 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,801 | c | /*****************************************************************************************
* Authors : Vishal Vishnani
* Date : 10/06/2017
*
* File : thread.c
* Description : Header file for Threads
* -func1()
* -func2()
* -func3()
* -func4()
* -pth... | [
"vishalvishnani30@gmail.com"
] | vishalvishnani30@gmail.com |
8a20a1674a30614bd6bb343b4f25dc7b5f8dd0b0 | c04769c9cbed7fb78fb5f1ee45fa36e758737375 | /fibseriesi.c | e07fc25f7df0d86696942f25c3d78d4b0224de41 | [] | no_license | sagacitytech/phicalculator | be914fcc3826498887d9384bb770184fbc3e0573 | 40e47c59d708566de7c00d08980c718b3cf03287 | refs/heads/master | 2020-06-20T20:40:01.350481 | 2019-07-16T18:33:54 | 2019-07-16T18:33:54 | 197,241,649 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,910 | c | //Fibonacci Series using Recursion. #include
int
fib (int n)
{
if (n <= 1)
return n;
return fib (n - 1) + fib (n - 2);
}
int
main ()
{
int n;
printf
("***************************************************************************************\n");
printf
("******************************* The Phi Cal... | [
"noreply@github.com"
] | sagacitytech.noreply@github.com |
56d4b41bc773d8919533546a1b82ff1a8adf367e | df7838dba006c097b624bbeb9d1eb8c05b61b566 | /libft/ft_strcmp.c | aaec7aefa4ba2070037e8d5c2f24c3a34a4d980b | [] | no_license | pbourlet/gnl_wtl_fd | ce5bad8fa55c76c3e928f14a5bb086e2e37c33eb | 3549a8d633b05fcf0e1dea25ae3115472b347972 | refs/heads/master | 2021-01-20T15:33:28.833518 | 2017-02-22T16:51:00 | 2017-02-22T16:51:00 | 82,829,156 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,217 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcmp.c :+: :+: :+: ... | [
"pbourlet@student.42.fr"
] | pbourlet@student.42.fr |
28994647f79e62363d8631ede65aa9527d2279be | a4c95e2223d38928a4e7289b0ac19d92f9bf2407 | /GreekforGreek/Array/array_swap.c | 03560b06299325db146970fd57b20f6fe08c75d7 | [] | no_license | ranasingh-gkp/programming_c- | 6a9d3a620f350ba2b599aa04119d62aabfb73502 | 1812c35dcaa191f57687f2fd8961ecc7f3336bf2 | refs/heads/master | 2020-03-29T14:08:17.576302 | 2018-10-21T12:45:31 | 2018-10-21T12:45:31 | 150,000,775 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 978 | c | // https://www.geeksforgeeks.org/array-class-c/
// C++ code to demonstrate working of swap()
#include<iostream>
#include<array> // for swap() and array
using namespace std;
int main()
{
// Initializing 1st array
array<int,6> ar = {1, 2, 3, 4, 5, 6};
// Initializing 2nd array
array<int,6> ar1 = {7, 8, 9, 10, 11, ... | [
"ranasinghiitkgp@gmail.com"
] | ranasinghiitkgp@gmail.com |
c4c77be6e51aeff596e57e874323f330ec529bb8 | f8739be99859de6d3be2e5552f55b876fe33c065 | /trunk/Kernel/Scaler/RL6410_Series_Scaler/Header/RL6410_Series_ColorCommonInclude.h | 25de56db0fbb67c1046e85e2637bf26e4a8e2a3c | [] | no_license | Llong1/avita_rtd2776 | a0bdf1a4626ce0d6485698baecb6290f739fe303 | 3b5e2fbca5bf5d6d48f474728a5804d4063fb614 | refs/heads/master | 2020-12-06T16:35:11.901454 | 2019-12-06T07:46:09 | 2019-12-06T07:46:09 | 232,507,288 | 7 | 5 | null | 2020-01-08T07:42:30 | 2020-01-08T07:42:29 | null | UTF-8 | C | false | false | 2,109 | h | /********************************************************************************/
/* The Software is proprietary, confidential, and valuable to Realtek */
/* Semiconductor Corporation ("Realtek"). All rights, including but not */
/* limited to copyrights, patents, trademarks, trade secrets, mas... | [
"lonn.tw@gmail.com"
] | lonn.tw@gmail.com |
25c19e447b80aaf858f77f805ef0252f394066b5 | 5cc241ac548c6c6cdc85b03f7b713a77de18da69 | /src/stats.c | 7ec1aa00f6c1a2d1eb7f229b55938e4f5c95e2d5 | [
"MIT"
] | permissive | nalgeon/sqlite-stats | e5edf523d2ffa308f60c975b82d4c7cdf84055b9 | 06cf8b6e926c5a18617f18e8af7202aaa1384b05 | refs/heads/main | 2023-03-17T03:15:41.516340 | 2023-03-17T02:30:17 | 2023-03-17T02:30:17 | 336,288,956 | 9 | 6 | MIT | 2023-03-10T16:52:55 | 2021-02-05T14:05:52 | C | UTF-8 | C | false | false | 17,485 | c | //#include "config.h"
#define COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE 1
#ifdef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE
#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT1
#else
#include "sqlite3.h"
#endif
#include <ctype.h>
/* relicoder */
#include <math.h>
#include <string.h>
#include <stdio.h>
#include <errno... | [
"m@antonz.ru"
] | m@antonz.ru |
19fd15343bd2909e9f779c4a1fbfd346157abf8e | fb3500838f73c809f2435ba17da587520464bd40 | /lab2.c | ef1eaeb85af15edc17c1957bac8fd71eec16529d | [] | no_license | Sushmitha-Deva/CPP-programs | 2b8e02d58eed0355c109c4f4c058881b50d6fd34 | 0aa4069a275b38f5895a14d4300430d0afb8bc2c | refs/heads/master | 2022-07-07T16:07:36.789406 | 2022-06-21T12:56:32 | 2022-06-21T12:56:32 | 211,840,984 | 0 | 1 | null | 2020-10-19T10:27:38 | 2019-09-30T11:06:36 | C++ | UTF-8 | C | false | false | 2,349 | c | #include<stdio.h>
#include<string.h>
struct student
{
char name[20];
int age;
int rno;
int com1;
int com2;
int com3;
int com4;
float gpa;
float cgpa;
};
void display();
void display1();
void display2();
struct student a[5];
int main(int argc,char* argv[])
{
int count=argc;
printf("\n u have ent... | [
"deva.sushmitha5@gmail.com"
] | deva.sushmitha5@gmail.com |
fc8facb0f85c7cea116426fb6eeac2fa9374a449 | bdc8ab74281953730b891185eb046d7addc7779e | /src_bonus/ft_strchr_bonus.c | c2b5c6aa22a7d7be53a964892c0db4171d852538 | [] | no_license | oli42/so_long | 9bbf2f4a8559d436045dbb10d7c8f931dc9b7da7 | bda268f6db8f91ab9bca69fffede483ec725d294 | refs/heads/master | 2023-07-10T08:54:54.580892 | 2021-08-15T10:10:00 | 2021-08-15T10:10:00 | 389,688,390 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,037 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr_bonus.c :+: :+: :+: ... | [
"olivier.chicheportiche@gmail.com"
] | olivier.chicheportiche@gmail.com |
caa140c437a9615168aa92f9ff11ab2500601c51 | 230764d82733fac64c3e0eae1ce0a4030965dc4a | /third_party/gstreamer/gst/gstallocator.h | 05565a2469984848f826dfa0edbb0b2823cd50c3 | [
"BSD-3-Clause",
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"Apache-2.0"
] | permissive | isabella232/aistreams | 478f6ae94189aecdfd9a9cc19742bcb4b4e20bcc | 209f4385425405676a581a749bb915e257dbc1c1 | refs/heads/master | 2023-03-06T14:49:27.864415 | 2020-09-25T19:48:04 | 2020-09-25T19:48:04 | 298,772,653 | 0 | 0 | Apache-2.0 | 2021-02-23T10:11:29 | 2020-09-26T08:40:34 | null | UTF-8 | C | false | false | 6,218 | h | /* GStreamer
* Copyright (C) 2009 Wim Taymans <wim.taymans@gmail.be>
*
* gstallocator.h: Header for memory allocation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* v... | [
"dschao@google.com"
] | dschao@google.com |
fd461a74f5abf478c1b439d5fd9a3b323a3e5fde | 4541d780ef912c83a3923d661455cfad75fb06c4 | /keyboards/kprepublic/bm60hsrgb_poker/rev2/keymaps/oflow/keymap.c | e19eaf865e028939d06fff0b40840dac44cd2b5c | [] | no_license | oflow/qmk_firmware | ad64ac3137e4771fecef32c16099d67d2ec8f42e | e442148a2d729fb6d33d51b08a6188d2525eeefb | refs/heads/master | 2022-01-11T21:10:46.595667 | 2021-12-31T01:18:17 | 2021-12-31T01:18:17 | 138,484,970 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 13,171 | c | /* Copyright 2021 bdtc123
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in th... | [
"github@oflow.me"
] | github@oflow.me |
98e36fda6a1d5591e0a182c1a8567766accb7eb2 | 68c07c1f78a27738b12eb40e802f6aad617d330f | /tests/test_is_valid_map.c | 7a942798f12f3993dff837b669487a83373003d9 | [] | no_license | julienp17/my_sokoban | 0f8668b907640e4fdd65b167ea89c349f3ed444d | c90ce51673b73ff972107020277c5594e2c022fe | refs/heads/master | 2023-06-30T09:59:56.829020 | 2019-12-15T09:55:47 | 2019-12-15T09:55:47 | 391,720,038 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 606 | c | /*
** EPITECH PROJECT, 2019
** my_sokoban
** File description:
** Unit tests for is_valid_map
*/
#include <stdbool.h>
#include <criterion/criterion.h>
#include "map.h"
Test(is_valid_map, valid_map)
{
char const file_buffer[] = "#####\n#PXO#\n#####";
bool actual = false;
bool expected = true;
actual =... | [
"julien.pause@epitech.eu"
] | julien.pause@epitech.eu |
3b67afc3a3d59c452f9a9fcb6121ed5f78057eb6 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/7d9e37d1-40bf-467b-a49f-235f77b3d8a1.c | 058cc4e109a9c63d1564c57096c82976413cb572 | [] | 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 | 231 | c | #include <stdio.h>
int main() {
int i=0;
int j=1222;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l%j;
l = l-j;
l = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
8db38feadbb754c6982ef06010584bac7f2d9479 | 61a8c128de47c1501cee66d1fe7e258418ca9e80 | /IEN code/src/libuv-1.29.1/src/unix/darwin-proctitle.c | 12832ab0fb1077c6a4129989920f5776c522b9ee | [
"MIT",
"BSD-3-Clause",
"ISC",
"BSD-2-Clause",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ScottTuring/IEN | d85e4b8f4c542c932b903c22dfac2410dad70bce | 8b67b12750b32d577d79d6bee288bbe93e78eef6 | refs/heads/master | 2022-03-13T12:17:00.672275 | 2022-02-19T02:22:32 | 2022-02-19T02:22:32 | 138,882,906 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,075 | c | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* ri... | [
"noreply@github.com"
] | ScottTuring.noreply@github.com |
3717abaf7f7694fb0d43e3a293bfbbd46875ce29 | 67305fcba68fdf469862aed2959ad1dd5b22a536 | /examples/27_iot_cloud_ali_iotkit/packages/ali-iotkit-v2.0.3/iotkit-embedded/src/packages/LITE-utils/lite-utils.h | 47a78b6419cb2de50a2eb0ead8f7f93e9d20f594 | [
"Apache-2.0"
] | permissive | RT-Thread/IoT_Board | cdabf100a8d515fbcaa65ab0b72ec67acb0d2c9a | 2d218a4e06f06dbb356ec00767904f91d00db7cc | refs/heads/master | 2023-09-04T16:51:34.485240 | 2022-01-19T01:26:16 | 2022-01-19T01:26:16 | 161,133,933 | 344 | 238 | Apache-2.0 | 2023-06-06T04:10:57 | 2018-12-10T07:21:46 | C | UTF-8 | C | false | false | 4,515 | h | /*
* Copyright (c) 2014-2016 Alibaba Group. All rights reserved.
* License-Identifier: Apache-2.0
*
* 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... | [
"armink.ztl@gmail.com"
] | armink.ztl@gmail.com |
0968e5df0cf19cf83650e219369241ad72108c59 | e7d78150b2d1b4f72ea47254ea6a8e9d51de3f24 | /Capitulo 5/fig59.c | bba52af81c19427db6597191ec831196ff0d3356 | [] | no_license | Jcgo3003/Soluciones-Como-programar-en-c-Deitel | 7bba9a80c282cc3376aa6c10a77af6c4bf2508f9 | 3fc135ca04518f8ff6a659618bdefcb18c163dbd | refs/heads/master | 2020-05-14T08:52:16.659615 | 2019-04-17T09:31:11 | 2019-04-17T09:31:11 | 181,729,624 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 850 | c | /* Figura 5.9
Ramdomizacion del programa de dados */
#include <stdlib.h>
#include <stdio.h>
/* Funcion main */
int main(){
/* Contador */
int i;
/* Numero que se utiliza para establecer la semilla del generador de muneros aleatorios */
unsigned semilla;
printf("Introduzca la semilla: ");
... | [
"noreply@github.com"
] | Jcgo3003.noreply@github.com |
b0b45bdf3d9f466f657797fea0d93a92338aa54e | beede1d5be2e49f4656251d8020c1ff7452b9c92 | /store/values.h | f7cdb18dc0db20479644abc576330dd502b106ea | [] | no_license | kryzthov/gooz | 62e47026346e690086076a148bce1eec86ebb663 | 318cf7a8c3b878233a58777c16115627d2956b63 | refs/heads/master | 2020-05-17T17:51:23.069850 | 2017-12-06T07:23:39 | 2017-12-06T07:23:39 | 37,021,627 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,069 | h | #ifndef STORE_VALUES_H_
#define STORE_VALUES_H_
#include "store/value.h"
#include "store/heap_value.h"
#include "store/moved_value.h"
#include "store/store.h"
#include "store/literal.h"
#include "store/variable.h"
// Primitive values
#include "store/atom.h"
#include "store/boolean.h"
#include "store/float.h"
#inclu... | [
"taton@wibidata.com"
] | taton@wibidata.com |
201c60a605507e274c8ed5148ce353d36279201a | f556301fd9bdba0e463bb6f08bd83db0fd258a8d | /extensions/gen/mojo/public/cpp/bindings/tests/service_factory_unittest.test-mojom-import-headers.h | d6aee8bd2f375b78443a792e6a0321435300269a | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | blockspacer/chromium_base_conan | ce7c0825b6a62c2c1272ccab5e31f15d316aa9ac | 726d2a446eb926f694e04ab166c0bbfdb40850f2 | refs/heads/master | 2022-09-14T17:13:27.992790 | 2022-08-24T11:04:58 | 2022-08-24T11:04:58 | 225,695,691 | 18 | 2 | null | null | null | null | UTF-8 | C | false | false | 598 | h | // mojo/public/cpp/bindings/tests/service_factory_unittest.test-mojom-import-headers.h is auto generated by mojom_bindings_generator.py, do not edit
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifn... | [
"user@email.ru"
] | user@email.ru |
209eb919d98ae5f75d58961f3c409ccdf1333134 | c19dfce1b2efd332390ba8c0a5181002598efa33 | /Source Code/alpine-2.24/pith/osdep/writ_dir.c | c384e0584e44336e52fb78bc9d694617b13754f6 | [
"Apache-2.0",
"BSD-4-Clause-UC"
] | permissive | nmbazima/Alpine_Mail_Client | b220ff2d35bf0c0a34f6113dc9e57a20d7749d33 | 8eee6888f8d7237fd4db9f5de3b8f44e32429566 | refs/heads/main | 2023-04-13T18:18:43.503472 | 2021-04-29T10:08:44 | 2021-04-29T10:08:44 | 362,763,835 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,439 | c | #if !defined(lint) && !defined(DOS)
static char rcsid[] = "$Id: writ_dir.c 761 2007-10-23 22:35:18Z hubert@u.washington.edu $";
#endif
/*
* ========================================================================
* Copyright 2013-2020 Eduardo Chappa
* Copyright 2006 University of Washington
*
* Licensed under the... | [
"31067101+nmbazima@users.noreply.github.com"
] | 31067101+nmbazima@users.noreply.github.com |
15fc46f0398f60ac2a4c44a149aa3d647c2cd2d3 | 2600505a74f42749ac06754fb3f70e3b2ef3d75c | /include/playerObject.h | 49f601194992e20eab686b532570819b8551023a | [] | no_license | Simponic/Geometry-Dash-GBA | 7fb4ad786a0a40656eddc47a6a6ffd7ee42c7dc5 | 7c69351331da6488e53dbef54d759aebd2d4267f | refs/heads/master | 2023-01-07T15:53:57.313246 | 2020-11-13T20:36:05 | 2020-11-13T20:36:05 | 287,831,348 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 737 | h | #include "types.h"
#include "point.h"
#include "velocity.h"
#include "toolbox.h"
#include "fixed.h"
#include "sinlut.h"
#include "camera.h"
#ifndef PLAYEROBJECT_H
#define PLAYEROBJECT_H
#define GRAVITY 0.75
typedef struct playerObject {
CAMERA camera;
VELOCITY vel;
POINT pt;
u32 rotation; // Rotation amount
OBJ... | [
"loganthebean222@gmail.com"
] | loganthebean222@gmail.com |
6854a47f9add1a05820148310f8a7428594153aa | e50b5f066628ef65fd7f79078b4b1088f9d11e87 | /llvm/tools/clang/test/CodeGen/aarch64-neon-3v.c | e39f3c0a8e5e142017b44c7f161e5e34621c746e | [
"NCSA"
] | permissive | uzleo/coast | 1471e03b2a1ffc9883392bf80711e6159917dca1 | 04bd688ac9a18d2327c59ea0c90f72e9b49df0f4 | refs/heads/master | 2020-05-16T11:46:24.870750 | 2019-04-23T13:57:53 | 2019-04-23T13:57:53 | 183,025,687 | 0 | 0 | null | 2019-04-23T13:52:28 | 2019-04-23T13:52:27 | null | UTF-8 | C | false | false | 23,536 | c | // RUN: %clang_cc1 -triple arm64-none-linux-gnu -target-feature +neon -emit-llvm -o - %s | opt -S -mem2reg | FileCheck %s
// Test new aarch64 intrinsics and types
#include <arm_neon.h>
// CHECK-LABEL: define <8 x i8> @test_vand_s8(<8 x i8> %a, <8 x i8> %b) #0 {
// CHECK: [[AND_I:%.*]] = and <8 x i8> %a, %b
... | [
"jeffrey.goeders@gmail.com"
] | jeffrey.goeders@gmail.com |
f798ee180159715593a52b4c7c729508261ec321 | abf04a317d49237d92fd04d0edc055183fdd67f1 | /IOS-PROJECT-TEMPLAT功能版/IOS-PROJECT-TEMPLATE/Macro/TPShareInstance.h | 4fc61eebd871e6bdab8f6f7d718aa9facbd372b0 | [] | no_license | Ginluck/project | 2af5aa4b3b7fa4dd68566ef813930a512dcc80bd | 5448be06327667d7333d09deb33fbc6c7c721dc5 | refs/heads/master | 2022-11-06T15:30:21.381271 | 2020-06-29T02:18:51 | 2020-06-29T02:18:51 | 273,399,152 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 820 | h | //
// TPShareInstance.h
// IOS-PROJECT-TEMPLATE
//
// Created by ginluck on 2019/7/2.
// Copyright © 2019年 梦境网络. All rights reserved.
//
#ifndef TPShareInstance_h
#define TPShareInstance_h
// .h文件
#define XHBorrowShareSingleton_H(name) + (instancetype)shared##name;
// .m文件
#define XHBorrowShareSingleton_M(name) ... | [
"791800550@qq.com"
] | 791800550@qq.com |
f88a8026242ecfaa357f378d88191cb33cdae39a | ef6413d4b8c7005a02c8a2da61d673d532e79fb4 | /Dongle Module/Dongle Module/Mouse_Example1/src/ASF/common/services/usb/class/hid/device/mouse/udi_hid_mouse.c | 94bce996562966723a5482f6898c8e40b4fe77d5 | [] | no_license | leahsch/Maizer | 662124687ba50ae0cd44c483e748dc80ac45fc66 | 1c869f931545e8badf975f75dc0dcf4d03be9de4 | refs/heads/master | 2020-07-21T14:49:08.628073 | 2016-11-15T03:41:41 | 2016-11-15T03:41:41 | 73,845,711 | 0 | 0 | null | 2016-11-15T19:01:35 | 2016-11-15T19:01:34 | null | UTF-8 | C | false | false | 10,003 | c | /**
* \file
*
* \brief USB Device Human Interface Device (HID) mouse interface.
*
* Copyright (c) 2009-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 ... | [
"samatthe@umich.edu"
] | samatthe@umich.edu |
80d971c2a478b8b636a0eca5a10549eb585075a6 | a5a7c65811a941f38048e9195fa2ac24d6013be4 | /Lab2/ADCSWTrigger_4C123/ADCSWTrigger.c | f77d7dd0db98bfacbd19e05814ad47aae86d786d | [] | no_license | hydershad/Embedded-Systems-Design-Lab | 8b0afac2f0347b8b80014ba3fc57116047250514 | caf297a5b7174251ee67f6450f7ddcf33ee5e496 | refs/heads/master | 2020-07-14T22:15:39.170355 | 2019-08-30T22:10:34 | 2019-08-30T22:10:34 | 205,414,322 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,543 | c | //Hyder Shad
//UT EID: hs25796
//Lab 2
//main.c file
//9/20/18
//EE445L Fall 2018, TTH 12:30pm - 2pm Lab
/* This example accompanies the book
"Embedded Systems: Real Time Interfacing to Arm Cortex M Microcontrollers",
ISBN: 978-1463590154, Jonathan Valvano, copyright (c) 2015
Copyright 2015 by Jonathan... | [
"hydershad@utexas.edu"
] | hydershad@utexas.edu |
2e28875dcd62d59108777bb97344e32ddf981b78 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/sound/soc/atmel/extr_atmel-pdmic.c_atmel_pdmic_codec_dai_prepare.c | c29cc9d60f37bd90a997edd76905ef3374471584 | [] | 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,131 | 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 |
409f36f957f70df27597c9dcb786422a838bc83e | 9dc245ab12ccd7f7e2714ec6d92ae343c9fa107f | /apps/HOSTAP_REL_0_8_0_80/src/l2_packet/l2_packet_pcap.c | 9af452e0ec1e80fcb6ce06b0ec8ddfd3e791c589 | [] | no_license | huangweiqing80/dhd_rel_1_206_43569 | f46ba48a82389bbbd29e2dc58147358e29217e1b | 8a0a913445b2a3d2599c73caba7004fcc8a0a4ee | refs/heads/master | 2021-09-01T12:49:06.841622 | 2017-12-27T03:01:13 | 2017-12-27T03:01:13 | 115,475,331 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 9,402 | c | /*
* WPA Supplicant - Layer2 packet handling with libpcap/libdnet and WinPcap
* Copyright (c) 2003-2006, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#include "includes.h"
#ifndef CONFIG_NATIVE_WINDOWS
#include <sys/ioctl.h>
#e... | [
"frank2060@gmail.com"
] | frank2060@gmail.com |
45e8a01c552c5cfd842ea30a06b4b80d9cd164f2 | b6fd135b1f2f6444637c64999c053b88ac8c6201 | /lib/type.h | e2d2253f304506800170f79ea95f1442f2ff6a3b | [] | no_license | yuanchenglu/lwqq | cbfb484f11c96e4d8fd5eed59fa1762ec0742922 | 8a844ee786e27277f921caf1d362c417173ccedb | refs/heads/master | 2021-01-16T20:29:23.996373 | 2013-08-20T04:47:55 | 2013-08-20T04:47:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,888 | h | /**
* @file type.h
* @author mathslinux <riegamaths@gmail.com>
* @date Sun May 20 22:24:30 2012
*
* @brief Linux WebQQ Data Struct API
*
*
*/
#ifndef LWQQ_TYPE_H
#define LWQQ_TYPE_H
#include <pthread.h>
#include <stdarg.h>
#include "queue.h"
#include "vplist.h"
#define LWQQ_MAGIC 0x4153
#define USE... | [
"xiehuc@gmail.com"
] | xiehuc@gmail.com |
15dfe39ea867bd28c5b3142b07b530cca1812eae | 8c5584a44f3b0c0c706b87698fe2462f8f6f8f3e | /Inc/example.h | a39599aeaa05b4efc3661987db454e06d6d4bbaa | [] | no_license | alllightNick/Clion_MAX7219_STM32F429 | bfa3cdea2a28df38ff5aecb649beb578f0bc8507 | 33bf823289d7f708e08f3c3eb4a2da45024f1539 | refs/heads/master | 2020-03-11T16:53:35.150728 | 2018-04-18T23:51:44 | 2018-04-18T23:51:44 | 130,131,363 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 265 | h | //
// Created by root on 24/03/18.
//
#ifndef __EXAMPLE_H
#define __EXAMPLE_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void StartTaskDisplay(void const * argument);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif //CLION_MAX_TEST_EXAMPLE_H
| [
"n.i.kolosov@gmail.com"
] | n.i.kolosov@gmail.com |
d6a2374bc4474280dc0b2e38f1c29d7b7ae83b5f | 835477651862d317db9525e6a435def97d368329 | /STM8a Motor Control/Projects/STM8AF_Discover/inc/stm8s_conf.h | 79bc5c7733d372dcaeffb758dd054eb2bb858af3 | [] | no_license | graeham/transmission | acda81dfbfbda3e31a7bc3f91c966fa74b047ca0 | 16f1657296fdef0e9226333dcc15c9a18c43c801 | refs/heads/master | 2022-05-08T23:29:50.220605 | 2016-06-05T16:46:12 | 2016-06-05T16:46:12 | 56,912,703 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,192 | h | /**
******************************************************************************
* @file stm8s_conf.h
* @author MCD Application Team
* @version V2.0.0
* @date 25-February-2011
* @brief This file is used to configure the Library.
*****************************************************************... | [
"graeham.douglas@gmail.com"
] | graeham.douglas@gmail.com |
b7cd2def868fcf8020f01f08739150c25f98df26 | 559860095c4f85dc1434b105fbb1dc26873c1b22 | /tool/build/compile.c | 0a20b18add2e369442c2d99c391d50e2e4e7edc4 | [
"ISC"
] | permissive | bittorf/cosmopolitan | a2d00677500ad2962d069d69ba48a32627d59fb5 | 7a393c06fe66ef7c47870d6397ee90a063943f1b | refs/heads/master | 2023-03-12T00:42:52.093478 | 2021-02-21T06:52:46 | 2021-02-21T06:53:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,724 | c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
╞══════════════════════════════════════════════════════════════════════════════╡
│ Copyright 2021 Justine Alexandra Roberts Tunney ... | [
"jtunney@gmail.com"
] | jtunney@gmail.com |
c0925e03bffdbb482b9f95ecdf5522a97d4f3421 | d1f234492a1977e2a619e0d08e0fb3ef38935f2d | /lab_10_3_1/test.c | 396a3b2043661fa5f1632c097565f25b89a23430 | [] | no_license | Avare0/C-Programming | 15fea87debbe342a123482fbdc64a05199f21a68 | 2d98807c4a2fc6e93d6681bbf2f5ab476efc7560 | refs/heads/master | 2022-11-16T10:59:31.679290 | 2020-07-09T11:37:18 | 2020-07-09T11:37:18 | 278,347,653 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 59 | c | #include "cdio.h"
int main()
{
return EXIT_SUCCESS;
}
| [
"60381480+Avare0@users.noreply.github.com"
] | 60381480+Avare0@users.noreply.github.com |
b53bfbce35531ce6c05483af74750a3c02be5b1c | d601ff511e6567190131dde5ac5b9115cb8477c4 | /program.c | e4ea0974c09bb1ab61dda120c1884f45f4af4459 | [] | no_license | se-lee/push_swap | dce29aa2fcd54ed62f4c39512095a72be27dbcbf | f0aff54ca5ee02608d98f465bdcf56a97d1d3916 | refs/heads/master | 2023-08-03T21:01:01.985669 | 2021-08-17T16:20:05 | 2021-08-17T16:20:05 | 397,641,212 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,984 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* program.c :+: :+: :+: ... | [
"selee@student.42lyon.fr"
] | selee@student.42lyon.fr |
ea56a4c11507ad235699b27a33cf587668738817 | 740276095f713cf35f71930c595b839f3a603bda | /ds/classic/1-12.c | 5de58d18b2c0ef713705bf0705a3e54fafc1ee9f | [] | no_license | TangWanGit/algorithm_practice | c84b39573148b79240df6e8d3123557e22819584 | bbf1f035df01ff0d26a932b3ea0fbf769f312755 | refs/heads/master | 2020-07-27T20:18:40.010377 | 2020-04-22T09:36:51 | 2020-04-22T09:36:51 | 209,205,469 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,804 | c | //
// Created by tangwan on 2019-09-09.
//
/**
* @desc: 使用邻接矩阵来表示图
* @author tangwan
* @date 2019-09-09
*/
#include <stdio.h>
#include <stdlib.h>
#define MaxVertexNum 10
/** 邻接矩阵表示图的结构声明 */
typedef int WeightType;
typedef char DataType;
typedef struct GNode *PtrToNode;
struct GNode {
int Nv; ... | [
"zhaoxiaoli@jiayouxueba.cn"
] | zhaoxiaoli@jiayouxueba.cn |
3df2dc0a143dd1625c4022f06ac4da5de6e5d6b6 | 4dc8ba6b2ae4ec978310c918c1b23e6a7d45e450 | /src/mjpg-streamer/mjpg-streamer-experimental/plugins/input_raspicam/RaspiCamControl.c | 2d343f097b1fb8ef175dd29c55cc12f0679b441d | [
"MIT",
"GPL-1.0-or-later",
"GPL-2.0-only"
] | permissive | mitchdz/Smart-Doorbell | 42a2cf526b951384f7976bfb5d76144807de008f | cbc04691a65d37ce1a19cba2138d2f8363acf290 | refs/heads/main | 2023-04-05T14:21:33.555921 | 2021-02-17T21:51:30 | 2021-02-17T21:51:30 | 337,545,958 | 0 | 0 | MIT | 2021-02-09T21:50:34 | 2021-02-09T21:50:33 | null | UTF-8 | C | false | false | 41,903 | c | /*
Copyright (c) 2013, Broadcom Europe Ltd
Copyright (c) 2013, James Hughes
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
noti... | [
"dvoytek@email.arizona.edu"
] | dvoytek@email.arizona.edu |
d2e05565100f11efd35dfa06934cba2c7bc2af67 | 27b3f244bd0860b03dcfe7c08755edcd445a9164 | /Algorithms/Implementation/catsAndAMouse.c | 68d1aa270519943b9b08f57886c86468d930de6e | [] | no_license | rainmaker490/hackerrank | bf5b886dbe7d254e61a38fba0453110aecb5d60f | 04ac7233c44ae01a95d69218ab9b538f96521337 | refs/heads/master | 2021-01-02T22:46:52.779463 | 2017-09-09T07:32:23 | 2017-09-09T07:32:23 | 99,386,873 | 1 | 0 | null | 2017-08-23T14:29:29 | 2017-08-04T23:38:17 | C | UTF-8 | C | false | false | 573 | c | //@author: Varun Patel
//Cats and a Mouse
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <stdbool.h>
int main(){
int q;
scanf("%d",&q);
for(int a0 = 0; a0 < q; a0++){
int x;
int y;
int z;
scanf("%... | [
"varun@verve3.io"
] | varun@verve3.io |
7f1bf97087d92a57d938614c609713ff837e6a63 | 28740cf177b80dbc273e9bf10a75c5f1a7f7943c | /Testheap.c | 79aed88643cb493d45324910c38c7c7ae0b7eca0 | [] | no_license | HBMTP/Codes | c78b8201919a61ea56b1116b72c4821536628b0d | daa5ef3620df472649caec02d21c58e62c638f41 | refs/heads/master | 2020-03-27T20:04:33.644401 | 2018-09-20T13:00:45 | 2018-09-20T13:00:45 | 147,036,226 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,155 | c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#define MAX_SIZE 100000
typedef struct HEAP heap;
struct HEAP
{
int size;
void *items[MAX_SIZE];
};
heap* create_h();
void enqueue(heap *heap,void *element);
void build_heap(heap *heap);
void print_heap(heap* heap);
int get_pa... | [
"noreply@github.com"
] | HBMTP.noreply@github.com |
8cea626cf52481ab084a63264226f9cce074dd67 | 87717d9090388477c179b1219476caeb41ddb534 | /C Piscine C 05/ex02/main_test.c | 49290e2ad5628b5a906e75f99930d0945ef77e66 | [] | no_license | juancrrn/42-c-piscine-testing | e4b0513b8e08d9a47cccaade21b5979b37387ab0 | 242eb19892ab4fae8824a1f996fee650e224716c | refs/heads/master | 2023-07-07T13:23:27.067649 | 2021-08-20T22:53:26 | 2021-08-20T22:53:26 | 397,206,560 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,304 | c | #include <stdio.h>
#include <stdlib.h>
int ft_iterative_power(int nb, int power);
void heading(char *cursus, char *project, char *exercise)
{
printf("\033[0;34m");
printf(" __ ___\n /. |(__ \\ 42 Testing by Juan Carrión\n (_ _)/ _/ %s %s\n (_)(____) %s\n\n\n", cursus, project, exercise);
printf("\03... | [
"jcarrion@student.42madrid.com"
] | jcarrion@student.42madrid.com |
f5789867717ff51b12f5eb164a2f887f149084e1 | b5a553f358fb8dc47e29e7696139a1ed575901a3 | /kernel/drivers/pwm/pwm.c | 87b29470967558f7dc0efe93ebd12b041be0da5a | [] | no_license | ZhUyU1997/MINE_OS | 159fb6757d8fbad6552aed97b2242bb1567ce071 | 2cf7026a21762e3dfb2fe2338ceedb51e9b7b9ca | refs/heads/master | 2020-03-21T12:22:13.698847 | 2019-12-14T18:14:30 | 2019-12-14T18:14:30 | 138,549,318 | 27 | 5 | null | null | null | null | UTF-8 | C | false | false | 5,194 | c | /*
* driver/pwm/pwm.c
*
* Copyright(c) 2007-2019 Jianjun Jiang <8192542@qq.com>
* Official site: http://xboot.org
* Mobile phone: +86-18665388956
* QQ: 8192542
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software")... | [
"891085309@qq.com"
] | 891085309@qq.com |
4f781f2338cb55bd646a023dc8b018f41d2be68d | a0d6b2c2dd8bcbe03e5c6fb35f766bd2af9a1d5c | /dynix.3.2.0/src/public/gnu/dist/oldXMenu/AddPane.c | eb3cebbe2d3b424285d03c1d19330e2805293159 | [] | no_license | legacy-codedigger/Dynix.3.2.Source | 593485f234eee4de75c0e23fe689f247471c83f8 | 2789373c94bc57e4c4a915bcba354f2243e12ca4 | refs/heads/master | 2022-04-25T22:49:00.493902 | 2020-04-25T00:49:59 | 2020-04-25T00:49:59 | 258,656,640 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,394 | c | #include <X11/copyright.h>
/* $Header: AddPane.c 1.1 89/09/20 $ */
/* Copyright Massachusetts Institute of Technology 1985 */
/*
* XMenu: MIT Project Athena, X Window system menu package
*
* XMenuAddPane - Adds a pane to an XMenu object.
*
* Author: Tony Della Fera, DEC
* August, 1985
*
*/
#include... | [
"zahir.meddour@protonmail.com"
] | zahir.meddour@protonmail.com |
19c3307a64ed73cb4f88566c83e4020cc3045f1f | 9229f2ddbc4b9516488097661a0c3ac178048b86 | /Configuration.h | cbdd1636f93dd93fe90feabd62e1e2a78b65f187 | [] | no_license | apshu/AnycubicKosselPlusRepetier | fef54cc44dc14fa8d5add4ed05ac2aadd8618718 | baeeba8b9ec61efcae0bca15280503628915595e | refs/heads/master | 2020-08-24T01:55:41.665543 | 2019-10-30T22:10:30 | 2019-10-30T22:10:30 | 216,743,911 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 38,439 | h | /*
This file is part of Repetier-Firmware.
Repetier-Firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Repeti... | [
"attila.kolinger@gmail.com"
] | attila.kolinger@gmail.com |
0892a9c043856680b00977f75de0b03cf02d14d3 | 5c36fe9a0e3405a8d74695910be3833804ac60d5 | /EE485_HW/HW_Lect7/test_dest/825.txt | 94765538aedd02651ef1f982ec8582ec01d4d7d1 | [] | no_license | joonpark2019/EE485 | 2a72e274338952213d3df4be94151e20f9492331 | 96864be7704f4607f91c2546e51f22e982653ff7 | refs/heads/master | 2023-06-23T17:08:59.166481 | 2021-07-17T07:32:17 | 2021-07-17T07:32:17 | 374,081,213 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 825 | txt | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa... | [
"joonpark2019@gmail.com"
] | joonpark2019@gmail.com |
f9428473727f139760561320b3e0fa096e7de808 | c47c254ca476c1f9969f8f3e89acb4d0618c14b6 | /datasets/linux-4.11-rc3/include/linux/ceph/decode.h | f990f2cc907a404bd55dc9c88f147648e73e9245 | [
"Linux-syscall-note",
"GPL-2.0-only",
"BSD-2-Clause"
] | permissive | yijunyu/demo | 5cf4e83f585254a28b31c4a050630b8f661a90c8 | 11c0c84081a3181494b9c469bda42a313c457ad2 | refs/heads/master | 2023-02-22T09:00:12.023083 | 2021-01-25T16:51:40 | 2021-01-25T16:51:40 | 175,939,000 | 3 | 6 | BSD-2-Clause | 2021-01-09T23:00:12 | 2019-03-16T07:13:00 | C | UTF-8 | C | false | false | 7,705 | h | #ifndef __CEPH_DECODE_H
#define __CEPH_DECODE_H
#include <linux/err.h>
#include <linux/bug.h>
#include <linux/slab.h>
#include <linux/time.h>
#include <asm/unaligned.h>
#include <linux/ceph/types.h>
/*
* in all cases,
* void **p pointer to position pointer
* void *end pointer to end of buffer (last byt... | [
"y.yu@open.ac.uk"
] | y.yu@open.ac.uk |
6d36178bf5fbaac7d838ee60b6b2c0bf9d52f054 | 4abf5c2fc2cc0af8cd89da6966d5916b52cc7454 | /src/relu_layer.h | acd83df9915b7e01c80ae40b1d4e1d9252394f04 | [
"Apache-2.0"
] | permissive | saivenky/neural-net | 5f4b41e4255be25b872b8b523c0c923ccb0ec3d2 | 54409cd0d8f7c2f638d71efb75867498bbbc1ea6 | refs/heads/master | 2021-01-09T06:37:31.155816 | 2017-04-17T00:45:43 | 2017-04-17T00:45:43 | 81,025,019 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 569 | h | #ifndef RELU_LAYER_H
#define RELU_LAYER_H
#include "activation.h"
#include "gradient.h"
struct relu_layer {
int size;
};
struct relu_layer *create_relu_layer(int size);
struct activation create_activation_relu_layer(struct relu_layer *, float_t *inputActivation);
struct gradient create_gradient_relu_layer(struct re... | [
"sai.venky90@gmail.com"
] | sai.venky90@gmail.com |
d55b7a71d8c7e29bea35fdab9f8b81fceb172a2b | 30f16cb0cbd15c2b9247158fe99dc9ccb5f09cc0 | /src/rr.c | 30139e9722e6c014565c65d0f1030680aac5dec7 | [] | no_license | dccol/Process-Management-Simulator | 03581dfb9368de655876c0d85677cc74ad4628a4 | 744d744603842ff1fd33b99269d588021e54ba70 | refs/heads/master | 2022-12-29T16:15:54.535736 | 2020-10-15T09:42:04 | 2020-10-15T09:42:04 | 304,274,460 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 26,200 | c |
#include "rr.h"
#define NOT_DONE 1
#define DONE 2
/**
* STATES
*/
#define LOADING 3
#define RUNNING 4
#define WAITING 5
#define LOADED 6
#define NOT_LOADED 7
void rr(deque_t *pending_process_queue, deque_t *process_queue, char *memory_opt, long long memory_size, long long quantum){
// VARIABLES
long lo... | [
"dccol@student.unimelb.edu.au"
] | dccol@student.unimelb.edu.au |
4f036e3a40c5a0c66af98ed06230cbfe36972398 | 84be60e43686cae62e3ad432b8d73a90c711848a | /DropProjectsGame/DropProjectsGame/ThirdPart/WeiChat/Helper/Constant.h | ce29980270fd9777ecb07ddcd57700c183caabcb | [] | no_license | klbest1/FallingGame | 66cf0ce3c2b188daef9a1026b172fa45b9749df0 | 022bf29f01d27e37f9bb0f66b366ab52a1c1f88f | refs/heads/master | 2021-01-11T17:30:52.459545 | 2017-03-10T10:51:49 | 2017-03-10T10:51:49 | 79,796,237 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,785 | h | //
// Constant.h
// SDKSample
//
// Created by Jeason on 15/7/14.
//
//
#ifndef SDKSample_Constant_h
#define SDKSample_Constant_h
#define RGBCOLOR(r,g,b) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1]
#define TIPSLABEL_TAG 10086
#define SCREEN_WIDTH [[UIScreen mainScreen] bounds].size.... | [
"530139052@qq.com"
] | 530139052@qq.com |
9c5129aeeaa60ebe63ed96fc2e759b6910615844 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/arch/x86/events/extr_core.c_x86_pmu_stop.c | 2626925f458a71ba9b56bc30e3f871f4df243b02 | [] | 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,790 | 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 |
dc013b014c808891e057029a6b5b377ee66ab0db | 0cb31991c33682eb0e6472ef097f6722689956d7 | /board_server/Inc/spi.h | 3a1d5cebd93c2bdae6335862820b67aacc6eca03 | [] | no_license | luci-e/letsbrew | 145108334211a3285f2416b4b58f480da62988c4 | a05c224d0f1e7b89746c3c55d74caa05ee05a9b7 | refs/heads/master | 2020-03-19T19:21:17.704960 | 2018-07-25T13:36:36 | 2018-07-25T13:36:36 | 136,851,511 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,523 | h | /**
******************************************************************************
* File Name : SPI.h
* Description : This file provides code for the configuration
* of the SPI instances.
******************************************************************************
* T... | [
"luciemiliano@gmail.com"
] | luciemiliano@gmail.com |
31acb79c9293139fcea2ff98fb35efb298879c24 | 122701c554c81002135d20cf5d40b13708e994f4 | /sys/arch/evbcf/include/pte.h | 5b1a4ca8fb85cf28d9232d561b95e78e5316efbb | [] | no_license | asdlei00/netbsd-1 | 59500eacfdd05765fc89e5cfdd5d77cf28813167 | 10406efeac8d56b464576c9b29e48e845fc0b459 | refs/heads/master | 2021-01-14T14:35:14.866657 | 2014-01-15T09:53:42 | 2014-01-15T09:53:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 113 | h | /* $NetBSD: pte.h,v 1.1 2013/07/18 22:08:59 matt Exp $ */
#ifndef _MODULE
#include <m68k/pte_coldfire.h>
#endif
| [
"lionel@minix3.org"
] | lionel@minix3.org |
c1cb1cd1f1d621ae6d9648629f445201bd91cfa9 | 157560891b4e6a2d31232dd43ec2ffda52c24664 | /Cpp-Snippets/Spectre_PoC.c | f6d220a441a69493c3f96bed15bb59d8cd705f48 | [] | no_license | Airtnp/Snippets | 34b5444c6e22c897133783a0992d1217d03bd2b9 | bdd4dc7509087a5f485c2981971545abbcf6f447 | refs/heads/master | 2021-05-13T14:20:55.974670 | 2018-04-26T18:51:31 | 2018-04-26T18:51:31 | 116,737,077 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,949 | c | // https://gist.github.com/Badel2/ba8826e6607295e6f26c5ed098d98d27
/* https://spectreattack.com/spectre.pdf */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#... | [
"xiaolr2003@foxmail.com"
] | xiaolr2003@foxmail.com |
b0e5503ef57fec9d3fb02a274944bda2cb3ba751 | 45732d27d0f885cb42f86021d27b27b1b68c3b9a | /Pods/Headers/Public/AWSiOSSDKv2/AWSCore.h | ad534190cfcd4e46b929d2591bb8823be7776bb4 | [] | no_license | fogonthedowns/Swift-Snapchat-Yik-Yak-Clone | 3b3af9226505601d2a7a377e3735e1ba5c22d4cb | 092c16ee99aecdf6e3decdeab99253933af76061 | refs/heads/master | 2020-06-08T18:58:26.751839 | 2015-03-26T23:13:01 | 2015-03-26T23:13:01 | 29,926,367 | 39 | 10 | null | null | null | null | UTF-8 | C | false | false | 38 | h | ../../../AWSiOSSDKv2/AWSCore/AWSCore.h | [
"fogonthedowns@gmail.com"
] | fogonthedowns@gmail.com |
47eb814124120fc659b93ccc9b2cb77eca3aa3e1 | eb8a51bf9f5b31fe532d0c575b583cc4ec07c847 | /src/types.c | ee92a061978b7f2ac4c8892c8ff0ebbf160b547e | [] | no_license | ikvm/lcc42 | 41512ace149ad35dd258a9b3c6e936420d2f9f32 | fe145ff177fd83af798443766610b53f56f0ac12 | refs/heads/master | 2020-09-16T07:31:13.088918 | 2015-08-18T20:12:03 | 2015-08-18T20:12:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,554 | c | #include "c.h"
#include <float.h>
static char rcsid[] = "$Id$";
static Field isfield(const char *, Field);
static Type type(int, Type, int, int, void *);
/**
* 类型表(typetable)中每一个entry都保存着一个类型.
* 类型表是一个hash链表.
* NOTE: 类型表(typetable)没有层级的概念.
*/
static struct entry {
struct type type; /* 类型结构 */
struct entry *lin... | [
"tonekit@gmail.com"
] | tonekit@gmail.com |
80ec83e39f4829c1aefe2fc28004f7bc16279bdf | 50f31df0ad0e82c4ee6bb90dc12ca9842056b75b | /Day30/harib27aM/notrec/notrec.c | 9371d2fbb256ef040b4fa4a0232c047ac34ed296 | [] | no_license | No000/BaseOS | 9b18d84518cc99a67685fc909306455b529c2ad3 | a53388a510ee17c2f025e713274833228570ba6b | refs/heads/master | 2020-09-29T00:30:31.478853 | 2020-02-27T15:29:28 | 2020-02-27T15:29:28 | 226,901,219 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 369 | c | #include "apilib.h"
void HariMain(void)
{
int win;
char buf[150 * 70];
win = api_openwin(buf, 150, 70, 255, "notrec");
api_boxfilwin(win, 0, 50, 34, 69, 255);
api_boxfilwin(win, 115, 50, 149, 69, 255);
api_boxfilwin(win, 50, 30, 99, 49, 255);
for (;;) {
if (api_getkey(1) == 0x0a) {
break; ... | [
"no000.hima@gmail.com"
] | no000.hima@gmail.com |
ead946bad578c5567ee99b2f6f471ba681db1628 | 58b28bac013f29b21a62eaeff747afb26ddefb49 | /ICG/Input/Input/func.c | d830d7d24168dfa68a03f918e5cce5af0ea33adc | [] | no_license | ShanjinurIslam/CSE-310-Compiler | 10be379dcfc1dc099fd2eebb3b0df6775745932c | 50fbcfc6d0dadbf541391e269a8f4a5c6901edce | refs/heads/master | 2020-08-22T18:46:08.785017 | 2019-10-21T02:18:03 | 2019-10-21T02:18:03 | 216,459,648 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 194 | c | int f(int a){
return 2*a;
a=9;
}
int g(int a, int b){
int x;
x=f(a)+a+b;
return x;
}
int main(){
int a,b;
a=1;
b=2;
a=f(a);
println(a);
return 0;
}
| [
"spondoncsebuet@gmail.com"
] | spondoncsebuet@gmail.com |
c9269c0d6605a1a4188c0250a62608f45268b962 | a51bbef734a2c16c598b26bfc938dac9670f5b35 | /utilities.h | f74c02055981247dd2a98fd6b6dc0aca77280f19 | [] | no_license | nagmo/DS2 | 5f8f86c98737be54a734c7b985a8207ce7f714dd | d1ebad4ff046b902dd7a37eb4b9ea1e17cf1fbfd | refs/heads/master | 2021-03-19T12:30:21.731373 | 2017-12-30T19:52:35 | 2017-12-30T19:52:35 | 115,633,185 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 182 | h | #ifndef DS2_UTILITIES_H
#define DS2_UTILITIES_H
#include <clocale>
#include <exception>
typedef int GroupId;
typedef int GladiatorID;
typedef int Level;
#endif //DS2_UTILITIES_H
| [
"yshildan@gmail.com"
] | yshildan@gmail.com |
79bdd7098fdcc20d5f94b5feee9b80f90cf03757 | 4eb22855773f4e54d6fc3a970947f2a52549248e | /STRHH - Half of the half.c | 0bde9dbb4e6d966ec0fd7516b92e9e400c32a61d | [] | no_license | yashasvibajpai/my-submissions | c5dd2ccfe9cba5bbe3a7471bdb3fc1433b92acb8 | 07e979a32cae2030e59d662b15990b8b64757bc5 | refs/heads/master | 2020-03-11T02:04:41.687150 | 2018-04-16T08:36:25 | 2018-04-16T08:36:25 | 129,710,158 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 522 | c | #include<stdio.h>
#include<string.h>
int main()
{
int i,j,k,m=0,z;
float l;
scanf("%d",&k);
char str[100][k];
while(m<k)
{
scanf("%s",str[100][m]);
m++;
}
for(j=0;j<m;j++)
{
l=strlen(str[][j]);
l=l/2;
z=(int)l;
i... | [
"yashasvi.bajpai1999@gmail.com"
] | yashasvi.bajpai1999@gmail.com |
3c79de0990ac7f4cd0fd8e771efb736c8e779b02 | 9432f708e48578cb0a25f640ac4dfa2454382cb2 | /free_running_music_replacer_and_hijack/dll.c | 8287720f3fb642bb89c0f7c0613444adb6d58f03 | [
"MIT"
] | permissive | baselsayeh/free_running_game_mods | 33e91565d191d44b17f09ae5612cf86b302f13e5 | 8e787c94cfb2a9111961279be3ad0d1dcb275d27 | refs/heads/master | 2020-12-07T06:02:18.700411 | 2020-01-25T16:55:38 | 2020-01-25T16:55:38 | 232,652,553 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,431 | c | #include <stdio.h>
#include <stdint.h>
#include <winsock2.h>
#include <windows.h>
#include <time.h>
#include <DSound.h>
#include <errno.h>
//#include "sleep_a.h"
#include "folder_file.h"
#include "x86_patch.h"
//the types of the original functions
typedef __stdcall HRESULT WINAPI (*DirectSoundCreate8_typed... | [
"basel.sayeh@hotmail.com"
] | basel.sayeh@hotmail.com |
413fd135507edf112b789c62d50b68b73fc61d32 | 3cdfce918b9bf001ee8efc1a71b0b9f177d1d236 | /communication/osa_communication.c | 17bfad91db6af6e258ff19a88721db40640d4e85 | [] | no_license | viso89/osa_base | 93a354f33f82a47cf25566346864337c375bc1e7 | f82690f9ed4c594c601c71dfea7e3effc345823f | refs/heads/master | 2021-05-03T22:01:44.600198 | 2018-02-06T01:46:06 | 2018-02-06T01:46:06 | 120,385,440 | 0 | 1 | null | null | null | null | GB18030 | C | false | false | 31,418 | c | #include <stdio.h>
#include <stdlib.h>
#include "osa.h"
#include "osa_communication.h"
#include "osa_socket.h"
#define NET_CHECHK_PC_IDEENTIFIER_FIRST_BIT '@'
#define NET_CHECHK_PC_IDEENTIFIER_SECOND_BIT '#'
#define NET_CHECHK_PC_IDEENTIFIER_THIRD_BIT '$'
#define NET_CHECHK_PC_IDEENTIFIER_FOURTH_BI... | [
"459336407@qq.com"
] | 459336407@qq.com |
1f59211df8f796f226033b4caffe503e4e39b57c | 2b6263485f7b45d048387744f82198abe3230505 | /Sketch/MiniCNC/MiniCNC/ConfigurationMachine_Default.h | 0fdf4556e12c06348c22a63003d453e139f0f0b2 | [] | no_license | unkaMoMo/CNCStepper | b7338ae368ab670b24c69b28c4d3e3f826857bd6 | 672206dc37b775dcd07a49dc926b39b6900f9a53 | refs/heads/master | 2020-04-01T00:21:36.099052 | 2018-09-23T20:41:16 | 2018-09-23T20:41:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,465 | h | ////////////////////////////////////////////////////////
/*
This file is part of CNCLib - A library for stepper motors.
Copyright (c) 2013-2018 Herbert Aitenbichler
CNCLib is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free So... | [
"h.aitenbichler@eduhi.at"
] | h.aitenbichler@eduhi.at |
fb5dc1a19ee6a16067e6d4b8b60ab3db10a1ffc5 | a14f7fc07b1096089285f2787f6bd4b3079bce7b | /applications/samgr/service_example.c | 1f5d5e00122a9d04a3df6e3971cd82a0b26b8fe8 | [] | no_license | hydrz/harmonyos-hi3861 | 846670c38b4dc84905f8528281e7b7b1d0cfdf6d | 4fde64db3a19f1fc590ade7e38b04738888ff4bc | refs/heads/master | 2023-06-04T05:58:41.556767 | 2021-06-21T04:32:09 | 2021-06-21T04:32:09 | 378,806,891 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,442 | c | /*
* Copyright (c) 2020 Huawei Device Co., Ltd.
* 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 o... | [
"n.haoyuan@gmail.com"
] | n.haoyuan@gmail.com |
e432a385f03fae98f37620523516cbebc664b0fc | 1ec5ef2660e92ef899a993ddd6d333e5f0d705c2 | /Balancer/inc/hal_intf.h | be9697d46da86760af5bf8e43181712a6d03df70 | [] | no_license | imindude/drone_rollingfish | f4af885956ecbb03db3d50d0ab5d2a0efceeb210 | 3e1c845eef75f82fd46d0f1c191e41f0995209d4 | refs/heads/master | 2022-02-14T02:22:00.262279 | 2019-08-26T03:42:21 | 2019-08-26T03:42:21 | 204,390,173 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,449 | h | /**
* *********************************************************************************************************************
* @mainpage RollingFish
* @author imindude@gmail.com
* *********************************************************************************************************************
*/
#pragm... | [
"imindude@gmail.com"
] | imindude@gmail.com |
8515ea0c40fead5d0af77004ec95d7c05423aaa2 | 23cca0149362447d0e1b365c9e1de39a1cf5b053 | /darling/include/bmalloc/IsoHeapImpl.h | 4bbb31cd3d31d1f85a494715bb4a60b70204cd03 | [] | no_license | darlinghq/darling-bmalloc | d9f15ed959f1d41e5137217c7cc62bca8a683ee8 | 66c88bc0b977ef843a9eaa706d586d9cec2608da | refs/heads/master | 2023-05-14T00:52:48.186937 | 2023-05-12T05:26:03 | 2023-05-12T05:26:03 | 100,127,335 | 3 | 1 | null | 2023-05-12T05:26:04 | 2017-08-12T17:24:33 | C++ | UTF-8 | C | false | false | 30 | h | ../../../bmalloc/IsoHeapImpl.h | [
"curioustommy@protonmail.com"
] | curioustommy@protonmail.com |
cf48a7271e98775e165118169d71a8196de2bc50 | 4483b10028c73fc49a518be4a2bcb56848d8786b | /ios/Google Cardboard Demo/Mecha-Mecha/Classes/Native/UnityEngine_UI_UnityEngine_UI_ScrollRect.h | 6cf7024f836659332f6912633876f45891d40827 | [] | no_license | nchavez324/es50_final_project | aa8202470b59be1ddc25e78a3e1712708f5b00c4 | be1b8f9849d1ff4a845a137eefecb49df27f2e1c | refs/heads/master | 2021-01-10T07:03:26.885783 | 2020-12-03T16:02:23 | 2020-12-03T16:02:23 | 47,363,409 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,819 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// UnityEngine.RectTransform
struct RectTransform_t209;
// UnityEngine.UI.Scrollbar
struct Scrollbar_t281;
// UnityEngine.UI.ScrollRect/ScrollRectEvent
struct ScrollRectEvent_t285;
//... | [
"nchavez324@yahoo.com"
] | nchavez324@yahoo.com |
23bf5d3a5ccc737a2764f0c0072400019417bf12 | afe3b9f82c5b57e83e903d08d9ec7b4d3bd80c97 | /Mercury5/proj/sc/vendor/panel/src/lcd_CCIR601_720x576i.c | cb57b4ec06e0b7a2a457e9c9cf06605f67d66d9a | [] | no_license | xtxbruin/SDK_pulbic | bbb79f9eb642aa9ecaa3825944ffc20430cd9057 | c1436fa7446457e8d6547874d27ee4e34be150cf | refs/heads/master | 2022-03-24T09:27:12.825861 | 2020-01-01T07:31:36 | 2020-01-01T07:31:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,594 | c | //==============================================================================
//
// File : lcd_CCIR601_720x576i.c
// Description :
// Author :
// Revision : 1.0
//
//==============================================================================
//================================================... | [
"695732416@qq.com"
] | 695732416@qq.com |
c94ee175df2d7e3b699a4ddda3f8fe32e674e2df | 5af86ef814f7b2655fce9bb1cc29eccaf2eb6576 | /basic-c/xly/c5/shell.c | 6e8fe1e2cdacfcd5df3a26f864331ff784ba4d24 | [] | no_license | Jacob-jiangbo/jacob-studio | 537a5cb8105ea8bcd0f549b59de68f75fb10797f | c1b22e04fa98ede035b90af588444c1228750f5c | refs/heads/master | 2022-04-18T01:02:25.006592 | 2020-04-03T08:48:48 | 2020-04-03T08:48:48 | 18,630,560 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 282 | c | #include <stdio.h>
#include <stdlib.h>//standard library headerfile
int main()
{
printf("»¶ÓʹÓóÂ×ÚȨshell 1.0°æ\n");
for(;;){
char line[1000];
printf("^o^ ");
scanf(" %[^\n]", line);
if(strcmp(line,"bye")==0)
break;
system(line);
}
return 0;
}
| [
"jiangbo.wang@windriver.com"
] | jiangbo.wang@windriver.com |
76655b191c83cff129cf5db19f8c58f623c31800 | 7332ffbff3d0addab34256935e260a597aa70c95 | /boot/x86/stage2/config.h | 587fc6d0f4ae69f859cc6e5e31815c0c24b40056 | [
"BSD-2-Clause"
] | permissive | emacodes/pranaOS | 3a4d187998e892bc8b32998fb0da08b5406018b4 | 963f2b5940ea94b153cf36780097740654fe6acd | refs/heads/master | 2023-07-08T06:15:51.533719 | 2021-08-11T11:46:55 | 2021-08-11T11:46:55 | 394,933,991 | 0 | 0 | BSD-2-Clause | 2021-08-11T09:25:54 | 2021-08-11T09:25:53 | null | UTF-8 | C | false | false | 208 | h | /*
* Copyright (c) 2021, Krisna Pranav
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#ifndef STAGE2_CONFIG
#define STAGE2_CONFIG
#define KERNEL_PATH "/boot/kernel.bin"
#define KERNEL_BASE 0x100000
#endif | [
"krisna.pranav@gmail.com"
] | krisna.pranav@gmail.com |
23172e0666bf248403d86f3daf60a149462b2f6c | 42ab733e143d02091d13424fb4df16379d5bba0d | /third_party/civetweb/unittest/public_func.h | 164e3b53bba6d243c9d89cce6efed92c09e5819d | [
"Apache-2.0",
"CC0-1.0",
"LicenseRef-scancode-unknown-license-reference",
"GPL-1.0-or-later",
"MIT",
"Zlib",
"blessing",
"LicenseRef-scancode-public-domain"
] | permissive | google/filament | 11cd37ac68790fcf8b33416b7d8d8870e48181f0 | 0aa0efe1599798d887fa6e33c412c09e81bea1bf | refs/heads/main | 2023-08-29T17:58:22.496956 | 2023-08-28T17:27:38 | 2023-08-28T17:27:38 | 143,455,116 | 16,631 | 1,961 | Apache-2.0 | 2023-09-14T16:23:39 | 2018-08-03T17:26:00 | C++ | UTF-8 | C | false | false | 1,282 | h | /* Copyright (c) 2015-2018 the Civetweb developers
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, ... | [
"philiprideout@gmail.com"
] | philiprideout@gmail.com |
f4cf1d59f3f3f385d9d09ce4e59452f6fe76e1cc | 23df7bcd22e00da9fcaad745cdf9566a2e424d01 | /Inc/stm32f4xx_hal_conf.h | f4c6821fbd976ac98ad6f16bc254689e5893e670 | [
"Apache-2.0"
] | permissive | xuzheliang135/Drone | cc7fc5a7978dae5258e60a20012f767130a27d89 | 997359ccda0e67985bbf5aa6903e453429358d4a | refs/heads/master | 2020-03-12T23:24:19.692363 | 2018-05-11T05:10:29 | 2018-05-11T05:10:29 | 125,184,772 | 1 | 0 | Apache-2.0 | 2018-03-14T09:37:59 | 2018-03-14T09:05:25 | null | UTF-8 | C | false | false | 16,715 | h | /**
******************************************************************************
* @file stm32f4xx_hal_conf.h
* @brief HAL configuration file.
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT(c) 2018 STMicroele... | [
"37364772+xuzheliang135@users.noreply.github.com"
] | 37364772+xuzheliang135@users.noreply.github.com |
15b2406a160cc02a9cec712bac40fd28ef8f8897 | 51c8173aecd26cbee0b3e179b0cc5cc86bd5e8dc | /authenticated data/curkel-db/node_modules/bcrypto/src/ecdsa/ecdsa.c | a9580cc8eadf70dde008e27458865b8a60e2eb13 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"ISC",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-openssl",
"BSD-2-Clause",
"LicenseRef-scancode-ssleay-windows",
"CC0-1.0"
] | permissive | chasesmith95/meshcache | d57edfca0e31b2e19ad4ea683fe9c9d1fff7abee | 1cb241658d62110aff6c49c77cba80d2dd6c5d2c | refs/heads/master | 2023-01-11T03:03:00.100613 | 2019-05-28T17:21:21 | 2019-05-28T17:21:21 | 179,639,752 | 2 | 1 | null | 2023-01-03T20:26:26 | 2019-04-05T07:49:15 | JavaScript | UTF-8 | C | false | false | 32,489 | c | #include <assert.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "openssl/opensslv.h"
#include "ecdsa.h"
#if OPENSSL_VERSION_NUMBER >= 0x1010008fL
#include "openssl/ecdsa.h"
#include "openssl/objects.h"
#include "openssl/x509.h"
#include "../random/random.h"
// https://gi... | [
"chasesmith@Chases-MacBook-Pro.local"
] | chasesmith@Chases-MacBook-Pro.local |
12dc007e8961cc4e13f54596394269c098db377a | 234435be5ec6aaa56b1cd2c1f2dfc338b89c53bf | /mpi ping pong.c | dd68f2ef15dcc111caa028fe28337a9ae93558b1 | [] | no_license | sankalp-jain/random-scripts | 4e9acee388145ed9e60655e026e0f6a389c5b379 | e670001b1e8be2423b03fc08e52c0a5ca3084820 | refs/heads/master | 2020-03-29T20:22:45.844666 | 2019-03-24T19:48:04 | 2019-03-24T19:48:04 | 150,309,478 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 985 | c | #include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
int main(int argc, char* argv[]){
const int PING_PONG_LIMIT = 10;
MPI_Init(NULL, NULL);
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
if (world_size != 2){
fprintf(stderr, "Worl... | [
"sankalp.jain2016@vitstudent.ac.in"
] | sankalp.jain2016@vitstudent.ac.in |
8281704fe335fcbe2e460339f903ac043db7b459 | 962891050d5ace8a829370934b61433828f070ce | /Src/stm32f1xx_it.c | 2094c802f329e1f7cd8b7b1e5aa7d831fe45af4f | [
"BSD-2-Clause"
] | permissive | fcgdam/CarelessWSPR | 8d73ea9414dafed5922d62b40058a05f50896248 | 532ddd049b256db53450369c86175496f347f0c6 | refs/heads/master | 2022-02-12T12:45:48.457865 | 2019-09-02T23:26:07 | 2019-09-02T23:26:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,305 | c | /* USER CODE BEGIN Header */
/**
******************************************************************************
* @file stm32f1xx_it.c
* @brief Interrupt Service Routines.
******************************************************************************
* @attention
*
* <h2><center>© Copyri... | [
"xxx@yyy.zzz"
] | xxx@yyy.zzz |
45ec3eda9f89eb2faf57f94157cacaf878175c15 | 52a16e4cff35fc25b2ac24e2ced10852700af931 | /systemLib.h | 8ea4797c1bebc131195ca3e49625364179739c86 | [] | no_license | dhiraj-wani/snakePi_final | 0bd3f5b27626f92315d47a34ed6dfb80930c2ea0 | 4ac29bc32733f3f51ca54e30f3a885e90fdc0217 | refs/heads/main | 2023-03-14T22:03:49.872865 | 2021-03-10T12:12:39 | 2021-03-10T12:12:39 | 346,340,384 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,140 | h | #ifndef _SYSTEMLIB_H_
#define _SYSTEMLIB_H_
#include <time.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <sys/time.h>
#include "pseudoWiringPi.h"
//#include <wiringPi.h>
#include "kbhit.h" // para poder detectar teclas p... | [
"noreply@github.com"
] | dhiraj-wani.noreply@github.com |
9dc6f74dcaa856529d53e8d0cfd1fcb8e39d7b46 | fbdb3e4df3925b330739e599d7f539a5aea4f163 | /d/guanwai/road8.c | bedfd06c69c998a24b4697edf24161a2ce8bc671 | [] | 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 | 550 | c | // /guanwai/road8.c
inherit ROOM;
void create()
{
set("short", "大道");
set("long", @LONG
你走在一条碎石铺成的大道上。四周的田野已经被积雪覆盖,放眼望去
发现自己已经置身于无边无际的雪原中。狂风夹杂着雪花呼啸而过,冻得人
浑身发抖。北面的天边似乎有一缕炊烟升起。
LONG );
set("exits", ([
"north" : __DIR__"muqiao",
"south" : __DIR__"road7",
]));
set("no_clean_up", 0);
set("outdoor... | [
"i@oiuv.cn"
] | i@oiuv.cn |
4aeffa53de10d9cde317d6feaac6e5f01c1e1790 | 9c34f21e63ac59372e9dd31f840cf34d691e6289 | /code/Micro_DIST/include/F2837xS_Cmpss.h | 72ffc16efdcf7a1ea292e2dd0c977c8022342379 | [] | no_license | JINSU-HONG/micro_robot_app | fe566d3e094ed7a33c217a96f825cb207684f8f6 | 2ef8221458fda0f0d62b147ede4fbef2c6c74343 | refs/heads/master | 2021-02-09T19:59:33.075846 | 2020-08-29T08:11:49 | 2020-08-29T08:11:49 | 244,320,335 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 939 | h | #ifndef SNU_CPU1_CMPSS_H
#define SNU_CPU1_CMPSS_H
#include "F28x_Project.h"
//definitions for selecting DACH reference
#define REFERENCE_VDDA 0
#define REFERENCE_VDAC 1
//definitions for COMPH input selection
#define NEGIN_DAC 0
#define NEGIN_PIN 1
//definitions for CTRIPH/CTR... | [
"jinsu.hong@snu.ac.kr"
] | jinsu.hong@snu.ac.kr |
cb9edf9ef5a012be12c504601698288875c70c72 | b3927059edff450f81b1b0fdb452faa7586779e8 | /Stm32f407_CubeMX/Flash_test/MDK-ARM/RTE/_Flash_test/RTE_Components.h | cb55efedad4f1d194ec5568a05ab23d9e9b7a631 | [] | no_license | NHQuang58/stm32f407vg | edb2e636864c5ffd9958b54f804ac495e5d5035f | d4e1df02c31cc1db8805e0c1876227292a31fb67 | refs/heads/master | 2023-04-07T05:39:38.831345 | 2021-04-24T09:03:27 | 2021-04-24T09:03:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 323 | h |
/*
* Auto generated Run-Time-Environment Configuration File
* *** Do not modify ! ***
*
* Project: 'Flash_test'
* Target: 'Flash_test'
*/
#ifndef RTE_COMPONENTS_H
#define RTE_COMPONENTS_H
/*
* Define the Device Header File:
*/
#define CMSIS_device_header "stm32f4xx.h"
#endif /* RTE_COMPONENTS_H ... | [
"qn052289@gmail.com"
] | qn052289@gmail.com |
dad1e145412c363bb728f5314b7825a314a05d3d | fb3be6f79050ccf73733bdbea54869179ce1c327 | /Trabalho 02/Implementacao/Cubo02/Arquivos para teste/2camada.h | 04f3ae4e7de973e708f2e36ed0d640a90f75293d | [] | no_license | tloriato/modular | 46c92358bdb52be3ead391e623f54be9788ca71d | 2e839fff1ecd9429f524d24fedefa91d400e4086 | refs/heads/master | 2021-04-12T12:28:49.501350 | 2018-06-28T02:38:11 | 2018-06-28T02:38:11 | 126,513,790 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,518 | h | /******************************************************************************
*
* $MCD Módulo de definição: 2C Segunda Camada
*
* Arquivo gerado: 2camada.h
* Letras identificadoras: 2C
*
* Projeto: INF 1301 Cubo mágico
* Gestor: LES/DI/PUC-Rio
* Autores:
*
* $HA Histórico de evolução:
* ... | [
"marielama@infolink.com.br"
] | marielama@infolink.com.br |
7e49adf6ed8b82cda367212bf18375472aa51307 | 48c50b33b52de30cd9db257cadb8b52bd8e730a6 | /Core/Src/oled.c | fe7a795e7f914fe06d3d1be974fd093ebb23e5dc | [] | no_license | FepeIMT/External-Interrupts-in-STM32 | f555234b88d30e401fbf29ef4be9dffdab4e1678 | 73b05f7b25120ff2744d18059f77f14146ae99b4 | refs/heads/master | 2022-12-28T15:38:47.355330 | 2020-10-08T17:18:41 | 2020-10-08T17:18:41 | 302,410,193 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,621 | c | /*
* oled.c
* Author: Fernando Aguilar
*/
#include <Main_Screen.h>
#include "oled.h"
#define DELAY_GIF (1)
extern I2C_HandleTypeDef hi2c1;
uint8_t OLED_init()
{
/* Check if the slave device is ready to start the communication */
if (HAL_I2C_IsDeviceReady(&hi2c1, OLED_ADDRESS, 1, 20000) != HAL_OK)
{
/*... | [
"fernando.aguilar1010@gmail.com"
] | fernando.aguilar1010@gmail.com |
6971d49fc757f373a5e57441bf558b282101cef5 | 786b77a8a49e213180352c79c95bccd9cea0f5b8 | /lib/asn1c/nr_rrc/BandCombination-v1590.c | 5b8d48c8d96e11c17ca8c8248acb522e658fbcf0 | [
"Apache-2.0"
] | permissive | ziseputi/free5GRAN | b593c45d757812c01423d8c91d877a67826407ce | 2e8d4004342a53e8dcd4081b18798f2f06838134 | refs/heads/master | 2023-02-15T11:33:14.940984 | 2021-01-12T15:53:27 | 2021-01-12T15:53:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,556 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "NR-RRC-Definitions"
* found in "NR-RRC-Definitions.asn"
* `asn1c -fcompound-names -no-gen-example -pdu=all`
*/
#include "BandCombination-v1590.h"
static int
memb_supportedBandwidthCombinationSetIntraENDC_constraint_1(const asn_TYPE_... | [
"aymeric@dejavel.fr"
] | aymeric@dejavel.fr |
ff48b9135aca5f75cf1ec0695bc15c97ea9804a3 | 8e951d6abd1bd4e8ef11a31f6bc8d3a6b19d3f0c | /src/EventService/EventService.V1_0_8/EventService.V1_0_8.c | 47e810ad8b0a5e09e07e0a3c8e6d4269270f1f8f | [] | no_license | changab/Redfish-JSON-C-Struct-Converter-Lib | dda6c249855666933557756d7917ee0814f6a1e4 | ee664514e49e662874e0ec711343514b6081fd1f | refs/heads/master | 2022-12-21T07:23:01.255647 | 2019-06-13T06:48:03 | 2019-06-13T06:48:03 | 297,817,037 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 23,207 | c | //
// (C) Copyright 2018-2019 Hewlett Packard Enterprise Development LP<BR>
//
#include"Redfish_EventService_v1_0_8_CS.h"
#include <stdlib.h>
#include <string.h>
#include <jansson.h>
RedfishCS_bool SupportedRedfishResource (RedfishCS_char *Odata_Type, RedfishCS_char *NameSpace, RedfishCS_char *Version, RedfishCS_cha... | [
"noreply@github.com"
] | changab.noreply@github.com |
785e2a552329f5d415b2f19ae2d87b50983b1465 | 53a26a7fd0f90bff59769a65c7d021e773c151c2 | /Projeto_Covid19/CovidDataControl.c | f32252961112bfe5139cc9bcf3b91c36a8e720cf | [] | no_license | allen080/UEPB_LEDA | 0a70e1cf18ef8377c51e1412246bb7a02bd932f8 | 4d063349c6ca1acc71bd3eb078cfbb7808f53d77 | refs/heads/main | 2023-04-21T03:38:18.563519 | 2021-05-09T02:56:05 | 2021-05-09T02:56:05 | 365,582,295 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 571 | c | #include <stdio.h>
#include <stdlib.h>
// Execucao Apenas em Windows
int main(int argc,char *argv[]){
int r;
r = system("javac -version 2> nul > nul && java -version 2> nul > nul");
if(r!=0){
system("color c && echo [!] java.exe nao encontrado. Verifique se o Java esta instalado corretamente no seu ... | [
"noreply@github.com"
] | allen080.noreply@github.com |
71c101ec531f339cbca40110294d8f1e27a92dc5 | fc36f24d1db6ac989f20022256137254c49673a3 | /1kaime/ch9/9-6/test.c | 8a02e73722b566ef1ff05440dfdf5a446886af2f | [] | no_license | sukiima/test | 86451de25e4deb20d5de5ab6404b717e3b8846ae | 5ff245f3b31f3118e1482561414a3f69a5cdb68a | refs/heads/master | 2023-08-06T13:32:30.083828 | 2021-09-18T11:27:17 | 2021-09-18T11:27:17 | 407,835,027 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 213 | c | #include<stdio.h>
#include<string.h>
int main()
{
printf("foo bar = %d\n", strcmp("foo", "bar"));
printf("bar foo = %d\n", strcmp("bar", "foo"));
printf("foo foo = %d\n", strcmp("foo", "foo"));
return 0;
}
| [
"inthesukima@gmail.com"
] | inthesukima@gmail.com |
c482e90b1da5651562366d0a49aa1e8046bb9d27 | 36d17fe6b29511c6013d2eed58bcc2a6d3fda87a | /Wifi/WLAN/WlanAdapter.h | 37526b97a3fb03431397702ab8cbac5f79560580 | [] | no_license | TsanChao/STM32F4-Image-Acquisition-System | 8ee7b894d9a3725d098e69bc03c7e174c647e1d1 | 00dfce9025b2c62d6d2ac36df693825f8dff51ab | refs/heads/master | 2021-06-08T09:34:06.386377 | 2016-11-15T13:56:39 | 2016-11-15T13:56:39 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 5,419 | h | /******************************
微嵌电子工作室 版权所有
STM32 WIFI 开发板
适用于微嵌电子“灵通壹号WIFI开发板”
详情请登录 http://yuikin.taobao.com
源代码使用协议:本代码仅提供给客户做学习、或者参考WIFI原理之用,你不能在你发布的产品里面
包含本源代码的完整文件或者部分片段),不能出售或者使用本工作室提供的源代码制作相同类型产品,
例如:开发板、学习板,营利性教学讲座等等,否则视为侵权,本工作室保留追究相关法律责任的权利。
*******************************/
#include "Includes.h"
... | [
"mrscan_zhao@163.com"
] | mrscan_zhao@163.com |
cafdb8be24d3973ae4eb7292f7fdd1260b13c00b | 6e57cf02ca05edd4f6167aff0a14aa80999a541e | /sorting-searching/QUICK.C | fc264b830ff709f5b3900e65d154bbc352ad0162 | [] | no_license | omkargavhane/DSA_C | 3e48bea2f16cf863b175d8f33704051609151099 | 5b51550a88b6ac061d7a74897129c7c065df6146 | refs/heads/master | 2022-11-01T21:01:48.500072 | 2019-08-28T06:14:08 | 2019-08-28T06:14:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 762 | c | //SE-A_IT_12_QUICK SORT.
//OMKAR GAVHANE.
#include<stdio.h>
#include<conio.h>
void quicksort(int,int);
int partition(int,int);
void swap(int*,int*);
int arr[20],no;
void main()
{
int i,j,t;
clrscr();
printf("enter no of elements=");
scanf("%d",&no);
for(i=0;i<no;i++)
{
printf("enter no=");
scanf("%d",&... | [
"noreply@github.com"
] | omkargavhane.noreply@github.com |
6b656d39ab00c73f9937df3b64a7d3a8f721a450 | e1630a12ce3d2fb76e2606ada816a7cdf15c171b | /PSoC/carlab_302.cydsn/Generated_Source/PSoC5/PWM_Servo_PM.c | 943a4e7a5e9c76b3d70a2bfe1079267e744defb3 | [] | no_license | denguo/VRtrackedCar | 12bfee44ede76ee95c3d6cfd7d24c782fd2d86eb | 74b08e53634880620bf0067636d647bd7a80a75d | refs/heads/master | 2021-01-22T04:11:02.994706 | 2019-08-19T16:36:05 | 2019-08-19T16:36:05 | 92,440,786 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,178 | c | /*******************************************************************************
* File Name: PWM_Servo_PM.c
* Version 2.20
*
* Description:
* This file provides the power management source code to API for the
* PWM.
*
* Note:
*
********************************************************************************
* Copyri... | [
"dguo66@gmail.com"
] | dguo66@gmail.com |
94ec36a755aea248c05a23a5c7e606009bc38c35 | 62074e09820c30cca4f3c73afd66c6966aa25e30 | /src/cmslib/memmgmt.c | 0f6accde5842383d9e95dd66015d1ee812535f1f | [] | no_license | jphartmann/cmslib | e3319e300dbbce2623a880e2f70914aab5890e89 | d7e188c5642865876122c54e7d87ab4c6fcc8dbc | refs/heads/master | 2020-04-02T03:30:43.546612 | 2016-07-01T10:54:06 | 2016-07-01T10:54:06 | 61,039,389 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,389 | c | /* Memory manager. */
/* John Hartmann 17 Jun 2011 14:11:28 */
/*********************************************************************/
/* Change activity: */
/*17 Jun 2011 New module. ... | [
"jphartmann@gmail.com"
] | jphartmann@gmail.com |
c042dcfa6090ff19989fdcd71d9e2cee0dd007c4 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/gpu/drm/selftests/extr_test-drm_mm.c_expect_insert.c | a9d799ca6972f80ee2a3f0084371ff5f6252d232 | [] | 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,598 | 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.