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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1e214eb0bc6e1ef91d87969c4c95fa82d7d8d5e0 | 9dbcba0fb4ff722abdc05b01e126ac3ca742366f | /ex15.c | 67677003fc7bc2b212a5acfd1c4a9217bdabd0c9 | [] | no_license | taboularasa/learn_c_the_hard_way | 569bf12e05d22375ce77ad300f7ad38da2fd43f6 | fad19575339b09a5b2f12af6ecb1f0a589bb82a5 | refs/heads/master | 2021-01-10T03:14:28.127481 | 2015-10-29T16:26:05 | 2015-10-29T16:26:10 | 43,602,565 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 940 | c | #include <stdio.h>
int main(int argc, char *argv[])
{
// create two arrays we care about
int ages[] = {23, 43, 12, 89, 2};
char *names[] = {
"Alan", "Frank",
"Mary", "John", "Lisa"
};
// safely get the size of ages
int count = sizeof(ages) / sizeof(int);
int i = 0;
for... | [
"david@philosophie.is"
] | david@philosophie.is |
c30f11c9e33d3811e2035f6fe44663ad951ff4ac | 3b730748865433e4b88ef134e991afc73983913c | /s390/include/asm/chpid.h | 6b5bda30d1dcff854d3a8d0d773c4919db391785 | [] | no_license | sabotage-linux/kernel-headers | abd8018d9babae7421f4084387ac3d97750def83 | 22bba0124dfe2728ef5b4555baa1ae0960492665 | refs/heads/master | 2023-08-22T15:56:34.981214 | 2023-08-08T18:34:45 | 2023-08-08T18:34:45 | 13,533,033 | 86 | 32 | null | 2023-08-08T18:16:44 | 2013-10-13T03:21:28 | C | UTF-8 | C | false | false | 441 | h | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
* Copyright IBM Corp. 2007, 2012
* Author(s): Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
*/
#ifndef _ASM_S390_CHPID_H
#define _ASM_S390_CHPID_H
#include <linux/string.h>
#include <linux/types.h>
#define __MAX_CHPID 255
struct chp_i... | [
"rofl0r@users.noreply.github.com"
] | rofl0r@users.noreply.github.com |
d5358b62d3938a79e29be90cf3f1812bf0842470 | 6cd662f7e0b877699ead06f92401fcc6dbf6a660 | /new/notes/src/pagein.c | 484e98609978b7e537d6fd1b6ae114daf047c6fa | [] | no_license | Roare/Digital-Ultrix-32-VAX-2.0 | d53ff4b2c559a9e03cbc073de5c106b38591e43f | 56695b632d960b605717f93f84dc6fa7ec5b4e2f | refs/heads/master | 2023-09-01T17:43:13.032091 | 2020-04-25T00:27:39 | 2020-04-25T00:27:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,172 | c | static char *sccsid = "@(#)pagein.c 1.2 2/2/83";
#include "parms.h"
#include "structs.h"
/*
* pagein(zfile, where)
* FILE *zfile; struct daddr_f *where;
*
* reads in a single 'page' as defined by the notesfile system and
* returns the count of characters moved.
*
* Original Coding: Ray Essick Long agao
* move... | [
"zahir.meddour@protonmail.com"
] | zahir.meddour@protonmail.com |
e510576c43ac9267d536d6df8a188e14105b1398 | c0880ebb725b9efc36f0c989f7270539ca66fb01 | /C/Variadic functions in C.c | 7b0740782f078499882104dfae57683f2bde2c36 | [] | no_license | deepak852k1/HackerRank | 38fe0accbc336658e5c20c0529fe4807213ea434 | a204945a3b2284c7269af8dc84b2b1bdf97005a6 | refs/heads/main | 2023-02-14T00:08:33.782911 | 2021-01-08T17:52:52 | 2021-01-08T17:52:52 | 300,830,060 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 750 | c |
int sum (int count,...) {
int sum=0;
va_list values;
va_start(values,count);
for(int i=0;i<count;i++){
sum+=va_arg(values,int);
}
va_end(values);
return sum;
}
int min(int count,...) {
int min=MAX_ELEMENT,test;
va_list values;
va_start(values,count);
for(int i=0;i<coun... | [
"noreply@github.com"
] | deepak852k1.noreply@github.com |
cd918dc33e036edf9049ad177f35ef02dcb05cac | fe9a13e2d04332e82fac725ae0eb083b6ec29264 | /grab-ng.h | eef8bef3ed2c841d249933dcf2d71b34c6354c10 | [] | no_license | weizy2018/Embedded-Work | 6e7a30eaed142890c6190080b1601037a9e4a10a | 3cc4eee7a79cc64b843c0e37d6281b747379155b | refs/heads/master | 2020-05-20T03:42:08.096160 | 2019-05-10T05:54:06 | 2019-05-10T05:54:06 | 185,364,039 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,049 | h | /*
* next generation[tm] xawtv capture interfaces
*
* (c) 2001-03 Gerd Knorr <kraxel@bytesex.org>
*
*/
#include <pthread.h>
#include <sys/types.h>
//#include "devices.h"
//#include "list.h"
extern struct ng_vid_driver v4l_driver;
extern int ng_debug;
extern int ng_chromakey;
extern int ng_jpeg_quality;
exte... | [
"2233467661@qq.com"
] | 2233467661@qq.com |
33dea022a0f2bc01c97575a319943617661c8a80 | 0d932a5086c76a12bd461f4883120f95362984af | /threads/pthread_sleep.h | 66af7731b2d26920d90138471b75d759ebd1664c | [] | no_license | sinancemy/architecture-and-os | 3cace360501ac91f53dc4e3d862fccdae5fe5f20 | 269c9f608e0954b733195ab6b21dfd46cc8d765d | refs/heads/main | 2023-01-24T17:44:55.668494 | 2020-12-11T14:58:36 | 2020-12-11T14:58:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 133 | h | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include <sys/time.h>
int pthread_sleep (int seconds); | [
"noreply@github.com"
] | sinancemy.noreply@github.com |
e92e0326f7f91b182bbe8b9689b11eadfb16b839 | 955d8f93870000deea7dbd6b4f5ce99bfcfbfa04 | /2_stacks_1_buffer/libft/libft/ft_strdel.c | 50e9a44e23091000197a30f4140cf9080067fb2d | [
"MIT"
] | permissive | iiasceri/AcademyPlus | 82f58f213e25e1064577a30b466cb2b5b9a4ff03 | 3a48cbfe82c1d1e859d5d9300c2b811715c0b042 | refs/heads/master | 2020-03-25T00:47:59.051150 | 2018-08-15T14:50:30 | 2018-08-15T14:50:30 | 132,472,917 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 991 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdel.c :+: :+: :+: ... | [
"noreply@github.com"
] | iiasceri.noreply@github.com |
316a4606a2956fc8d7cc6678d1777f2a1569958b | 3bc4c2a0c118133f3f45a717725cbd0014d59974 | /scattergather_mpi.c | 62b575c2e5d98502b7957bfcc9393bcc704131e2 | [] | no_license | leiwangshou/ParallelPrograming | d575f2138ede984a552cd86774c6a6735ca69585 | ecb408b646ea38598c266b1fe72b5b636c14b2bb | refs/heads/master | 2020-05-01T19:40:56.504697 | 2019-03-25T20:11:25 | 2019-03-25T20:11:25 | 177,654,701 | 0 | 0 | null | 2019-03-27T16:56:37 | 2019-03-25T19:54:12 | C | UTF-8 | C | false | false | 5,507 | c |
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void encryptText(char* ori, char* enTxt, int enkey, int size);
void decryptText(char* enTxt, char* deTxt, int enkey, int size);
int main(int argc, char* argv[]) {
int myId, numProc;
int ttSize;
int chunkSize;
int enkey = 3;
double star... | [
"leiwangshou@gmail.com"
] | leiwangshou@gmail.com |
c1785126eeee6703b8654e29090e0e67973f8055 | 0001f56b2f37a144b333164cd94e5e9af0a44b16 | /cli_helpers_0.c | e94ce4ec32340aa81ba5d622890886f5d545b1f3 | [] | no_license | Kuda-ux/simple_shell | f8f676a725826de2e7285ad8e3cdaee1d644ee24 | 3834db30693bc15145b880aadf7b565ba94d1422 | refs/heads/master | 2023-07-18T10:31:36.670563 | 2021-08-31T16:59:11 | 2021-08-31T16:59:11 | 396,904,589 | 1 | 0 | null | 2021-08-19T09:57:22 | 2021-08-16T17:42:47 | C | UTF-8 | C | false | false | 1,990 | c | #include "main.h"
/**
* get_next_command - Gets the next command that can be executed by the shell
* @cur: The current command node
* @exit_code: The exit code of the last command
*
* Return: A pointer to the next executable command node
*/
cmd_t *get_next_command(cmd_t *cur, int exit_code)
{
cmd_t *node = NULL... | [
"manumunubi@gmail.com"
] | manumunubi@gmail.com |
f5c73f95fbcb673de773022cbb8412396e30b713 | 8ef75ec298e38373a3b9b212eac2762f6c452a25 | /SDL2_mixer/external/mpg123-1.25.6/src/tests/noise.c | 4af8cf6b1cfcece36209a7efc23cd26b07c0e7a5 | [
"MIT",
"Zlib",
"GPL-1.0-or-later",
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"GPL-2.0-only"
] | permissive | mozeal/SDL_gui | dc0d529ba300df41ed0fcb26ec3e176a49cfb316 | 31bcfbf9c9a5803dc0ffb022b7e7abd76e5c3cfd | refs/heads/master | 2022-05-05T06:18:51.640215 | 2022-04-01T11:23:12 | 2022-04-01T11:23:12 | 48,752,765 | 321 | 67 | MIT | 2021-04-21T14:38:23 | 2015-12-29T15:06:32 | C | UTF-8 | C | false | false | 1,233 | c | #include "config.h"
#include "compat.h"
#include "dither.h"
#include "debug.h"
/* Directly include the code for testing, avoiding
build of same object with and without libtool. */
#include "../libmpg123/dither_impl.h"
const char *typenames[] = { "white", "tpdf", "highpass_tpdf" };
enum mpg123_noise_type types[] = ... | [
"mozeal@gmail.com"
] | mozeal@gmail.com |
8eb48dcb61820bf5b63d30781093da30ffa9bc4e | 9c36b64f4ac5f1aea7ee63c6083f3ee6bf25201b | /42sh/ft_echo_tool.c | 312b3d40dce1821e4e9e88cc3c743cb52038b180 | [] | no_license | darkael88/42sh | 3ab771f0f08e9ca541b3130621ac6138c46c3cd9 | c25a350b31d0c38966f3afd3902d35403ebd75ae | refs/heads/master | 2021-01-02T08:51:55.847922 | 2014-07-02T19:04:36 | 2014-07-02T19:04:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,953 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_echo_tool.c :+: :+: :+: ... | [
"mdarty@e1r8p13.42.fr"
] | mdarty@e1r8p13.42.fr |
a61b39c4b11a11b1250a9337184e53cc3975c63b | 9e06e835e6bf3b000d532ea846434c5fccfb8a99 | /project_global.h | a1d28d17490975c3318f35faa8a1d46d0e9127e9 | [] | no_license | ns3098/Graph_Visualiser | 4f1406867ce75988ea244189129af8b847f5ed13 | e262041f7c32435eee0ddaa7975378113d599309 | refs/heads/master | 2023-04-10T12:32:25.639545 | 2021-04-04T09:50:49 | 2021-04-04T09:50:49 | 272,914,682 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 202 | h |
#ifndef PROJECT_GLOBAL_H
#define PROJECT_GLOBAL_H
#include "Global/debug_log.h"
#include "Global/changes_api.h"
#include "Global/point_to_line.h"
#include "Global/sleep.h"
#endif // PROJECT_GLOBAL_H
| [
"ns3098@bennett.edu.in"
] | ns3098@bennett.edu.in |
65fb3222e9dcb4b400b3fb93d0fbae396456706d | d0cba41677f5defe05b0cf9ea4bf63e4f905a4ec | /SW/KW40/HEXIWEAR_bluetooth/common/ft/include/ft_electrodes.h | 83b9224ca6db6ed00878a5b83c1a43be9d5de0b9 | [] | no_license | ErichStyger/HEXIWEAR | f1b5cc9e6f67c4779041374018447e616ad24e8c | 2e3724d40cd985f1feb16b807b7c33f707c9affd | refs/heads/master | 2021-01-21T00:56:48.436228 | 2017-02-12T10:49:16 | 2017-02-12T10:49:16 | 62,727,579 | 1 | 1 | null | 2016-07-06T14:31:20 | 2016-07-06T14:31:19 | null | UTF-8 | C | false | false | 9,559 | h | /*
* Copyright (c) 2013 - 2015, Freescale Semiconductor, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, th... | [
"lajka@lajkabaus.com"
] | lajka@lajkabaus.com |
825520526a37e870138bf2b033fccee0af127d5c | 0ad215b9694af301a0a36d0f351cb34ecaa41ea6 | /nRF5x SDK v14.2.0-SR3/examples/ble_peripheral/experimental/ble_app_cli/pca10040/s132/config/sdk_config.h | 50c63e3e4844031482eaf53a01537af7e3caf867 | [] | no_license | anhvanthe/BetterAirConditionerRemote | d58f4712ae2935b61a16ef376a0429776844eaa6 | 586289dfe7aa855ed23a8f48a02ffb7d0aa6893f | refs/heads/master | 2020-03-17T21:12:53.885485 | 2018-05-18T12:28:49 | 2018-05-18T12:28:49 | 133,949,180 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 140,055 | h | /**
* Copyright (c) 2017 - 2018, Nordic Semiconductor ASA
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,... | [
"tuongpv@vnpt-technology.vn"
] | tuongpv@vnpt-technology.vn |
2812c33d7f4c5b21026f34821e592343bcd74ba9 | ff78a86f3f3f4319595d93203a612aae6d6cbeda | /DEV01-LCD/app/screen/myascii.h | 33e80938fe96612e91b5cf807d6c32cb38d27246 | [] | no_license | darcyg/pomelo | 7e3eee1ae46267498660174881d516574ef634cb | e21ff6869351da70c8e6e44e18ce4412f3562b48 | refs/heads/master | 2020-12-25T02:50:22.379563 | 2014-09-17T02:50:48 | 2014-09-17T02:50:48 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 65,730 | h | ifndef
/*
* 鍐呯疆16*16ASCII瀛楀簱
*/
/*
static const unsigned char myasc_12[4096] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//0
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x10,0x10,0x10,0x10,//1
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,//2
0x00,0x00,0... | [
"kewell0101@gmail.com@944a31ab-0be3-294b-bc57-fb793cc5cc4a"
] | kewell0101@gmail.com@944a31ab-0be3-294b-bc57-fb793cc5cc4a |
726a055e65c6fb51ca327de22a77b70bbfa57992 | 4627320395aed4dcbccafba2855d63fcfecd2af7 | /src/codec.h | 8afb6845bce8ca6c57e119c2ebf74962a3b49734 | [] | no_license | jrs0ul/fivexplode | 33edeb53a60abff1bb79e39f8ef7d90c094bc881 | 6569ed2868cbc53602607e90d49d82c08880f3f6 | refs/heads/master | 2021-01-13T05:20:05.660784 | 2017-02-10T22:44:52 | 2017-02-10T22:44:52 | 81,348,287 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,280 | h | /********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LI... | [
"jrs0ul@gmail.com"
] | jrs0ul@gmail.com |
7f927e96850e30dad2b4e84a8f73b74a4bfecef5 | 4a43bb9f349a59312978a6f55e7e96124664ccca | /driver/debug.h | b9adf2dc7edb52ac142ca3a4366f2f69b8cc2437 | [] | no_license | ColinIanKing/ikgt-usage | b3bcad076672f6fc53bd7f51e1f3001e724e7ab6 | dd9ea81b124dcc18c6ec4d05d1dc7248c42b33f7 | refs/heads/master | 2023-07-20T03:32:57.076099 | 2016-12-18T23:42:39 | 2016-12-18T23:42:39 | 76,813,200 | 1 | 0 | null | 2016-12-18T23:38:10 | 2016-12-18T23:38:10 | null | UTF-8 | C | false | false | 675 | h | /*
* This is an example ikgt usage driver.
* Copyright (c) 2015, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed i... | [
"dongsheng.x.zhang@intel.com"
] | dongsheng.x.zhang@intel.com |
8dbd0796922f02cfc6c517db29ac09fea3cb7c17 | b5ed1bae7d89b77c840704cccc357bb842a1b797 | /Pods/Headers/Public/ResearchKit/ORKActiveStepViewController.h | 2c2a1fff81e0b425b5dcdde1fd7af4eb908c3f88 | [] | no_license | inadilemma/ResearchKitHelper | 88470c30cc9f339d452fb465dbe7d7c29da1f6b1 | 66400aab4b6b4c48588bbae7bf5642106f4695e0 | refs/heads/master | 2018-12-30T00:40:06.426124 | 2015-06-10T16:58:07 | 2015-06-10T16:58:07 | 37,056,840 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 74 | h | ../../../ResearchKit/ResearchKit/ActiveTasks/ORKActiveStepViewController.h | [
"mahmudul.alam@outware.com.au"
] | mahmudul.alam@outware.com.au |
e932216d29e90aef7a907619d6b72d36cbb3f59d | b477697f95728fbf8d1759a73858860c9620c3ab | /peripheral/usart/processor/usart_p32mx110f016c.h | 85019ae178c48e908ccb6f0b59a3295a0e09daa5 | [] | no_license | gmuro/harmony-v2_06-framework | 12bcb30c2dc9f4737aab8762da8b25632822d00e | 2196b67de35af9d1126b539b08324cf72ed13521 | refs/heads/master | 2022-12-07T19:24:34.649360 | 2022-11-18T22:16:49 | 2022-11-18T22:16:49 | 190,900,209 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 20,363 | h | /* Created by plibgen $Revision: 1.31 $ */
#ifndef _USART_P32MX110F016C_H
#define _USART_P32MX110F016C_H
/* Section 1 - Enumerate instances, define constants, VREGs */
#include <xc.h>
#include <stdbool.h>
#include "peripheral/peripheral_common_32bit.h"
/* Default definition used for all API dispatch fu... | [
"gustmuro@gmail.com"
] | gustmuro@gmail.com |
b0c90baca0edbce4c19c6ae6c57f87c26dca601e | 29dff61a8fc3e4b4cdf841043b76f950cd7af077 | /server/Shared/csapp.h | 37ea5c6b7a149b15922fe1ec7692785af7c9434b | [] | no_license | emgta/SelectCourseSystem | 3e870a0fca9d63406f2a354bfe7b640cc9f3ac41 | 2b384786b103c211414dc70f17a0aaecbabd0d46 | refs/heads/master | 2022-09-28T07:57:32.980539 | 2020-06-08T09:18:13 | 2020-06-08T09:18:13 | 270,597,261 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,136 | h | /* $begin csapp.h */
#ifndef __CSAPP_H__
#define __CSAPP_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <io.h>
#include <process.h>
#include <ws2tcpip.h>
#include <winsock2.h>
#pragma comment(lib,"ws2_32.lib")
typedef int ssize_t;
/* Default file permission... | [
"noreply@github.com"
] | emgta.noreply@github.com |
dea987b3b58f2471475b6e99a4f2b01e2877f0f5 | 8d753bb8f19b5b1f526b0688d3cb199b396ed843 | /osp_sai_2.1.8/system/cdb/core/src/gen/tbl_nat_rule.c | 2de55b8a5284ad2cec4be53af2f125589acc27a4 | [] | no_license | bonald/vim_cfg | f166e5ff650db9fa40b564d05dc5103552184db8 | 2fee6115caec25fd040188dda0cb922bfca1a55f | refs/heads/master | 2023-01-23T05:33:00.416311 | 2020-11-19T02:09:18 | 2020-11-19T02:09:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,791 | c |
#include "proto.h"
#include "gen/tbl_nat_rule_define.h"
#include "gen/tbl_nat_rule.h"
#include "cdb_data_cmp.h"
tbl_nat_rule_master_t *_g_p_tbl_nat_rule_master = NULL;
static uint32
_tbl_nat_rule_hash_make(tbl_nat_rule_t *p_nat_rule)
{
uint32 index = 0;
uint32 key = 0;
uint8 *pval = NULL;
pval = (ui... | [
"zhwwan@gmail.com"
] | zhwwan@gmail.com |
ec4f7dc3b025905590d9c6599614b63882c1b68b | f6d6e51d696042767106ec5c78aebe98d7124e15 | /02-Tps/TP04/linkedlist_cascara_v5/src/LinkedList.c | 1170e034f074425f6067c02253c589884bdef692 | [] | no_license | agusb98/Programacion-y-Laboratorio_I | 2c50e49338b213ff8e59d95db29f583131ef671a | 91b7fbf193d932da266caae9289087b5bf6228f5 | refs/heads/master | 2023-03-08T23:50:45.620606 | 2021-02-14T15:27:14 | 2021-02-14T15:27:14 | 243,117,206 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,988 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../inc/LinkedList.h"
static Node* getNode(LinkedList* this, int nodeIndex);
static int addNode(LinkedList* this, int nodeIndex,void* pElement);
/** \brief Crea un nuevo LinkedList en memoria de manera dinamica
* \param void
* \return LinkedList* R... | [
"agusszurdob@outlook.com"
] | agusszurdob@outlook.com |
e2cc0c54cc68cfdbe0e10ac97406766c03516af1 | 191707dd19837f7abd6f4255cd42b78d3ca741c5 | /X11R6/contrib/lib/auis-6.3/atk/adew/runadewa.c | 167bd9f5ce7afe4fa36aae86d371614d7866a455 | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain"
] | permissive | yoya/x.org | 4709089f97b1b48f7de2cfbeff1881c59ea1d28e | fb9e6d4bd0c880cfc674d4697322331fe39864d9 | refs/heads/master | 2023-08-08T02:00:51.277615 | 2023-07-25T14:05:05 | 2023-07-25T14:05:05 | 163,954,490 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,149 | c | /* ********************************************************************** *\
* Copyright IBM Corporation 1988,1991 - All Rights Reserved *
* For full copyright information see:'andrew/config/COPYRITE' *
\* ********************************************************************** */
/*
$Disclaim... | [
"yoya@awm.jp"
] | yoya@awm.jp |
f87f85d00accc639d3ac40fa1d2ad4151e189a4a | e104a836c7d7ebaa47c7bb23157186ffa1f69365 | /tests/checks/verify_daugsum.c | 75c955ea00ba2420531f58e296df085564f8b08b | [] | no_license | yashasvisharma/ReproBLAS | e40ab80ec4a1e1181bbed6d06917d020f3309c1f | f45c6722e3a9a1b482a350af56db3aab365dbde1 | refs/heads/master | 2021-01-01T17:06:36.033047 | 2016-06-21T05:58:48 | 2016-06-21T05:58:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,149 | c | #include <idxdBLAS.h>
#include <idxd.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "../common/test_opt.h"
#include "../../config.h"
#include "wrap_daugsum.h"
#include "../common/test_vecvec_fill_header.h"
static opt_option augsum_func;
static opt_option max_blocks;
static opt_option shuffles;
s... | [
"ptrahrens@gmail.com"
] | ptrahrens@gmail.com |
6db948aebe4ee19f6ea0bb8fe4457af40ca074cb | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/tools/perf/util/extr_sort.c_sort__comm_collapse.c | 867bc7af630d44e9a304f377687fb5169e93acdb | [] | 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 | 782 | 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 |
1482294ff8c1998ea3ada968935937617bfd4cf6 | aacb65ed29d6fcc453f5ad079def83481da479ce | /Algorytmy_i_Struktury Danych_|_C/Lista3/z3.c | b9ee1d398c514d03233e43137cc3f83b3c784f5e | [] | no_license | KalinaMichal/4sem | ba2d47de202d4b42824661cefcba8b4dc83aa7e4 | 36d0c3dc130fcc69bcec02cf1dab0de7f6b09d99 | refs/heads/master | 2022-11-27T22:43:53.011874 | 2020-08-08T11:01:01 | 2020-08-08T11:01:01 | 271,044,525 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,722 | c | #include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <time.h>
#include <sys/sysinfo.h>
/////////////////////////////////////////////////////////////////////////
/////////////////////////////SORTUJE TABICE//////////////////////////////
////////////////////////////... | [
"michal230915@gmail.com"
] | michal230915@gmail.com |
5e43652f210fef341d2bcdbd1cee85c0edcb9c50 | 970345b32b011a4b505fb581a84fa882d460efff | /NMSU-Compilers and Automata Theory/lab5/y.tab.h | de3a599d37804ad74f964c8a912d07f8d1ab199a | [] | no_license | McGovern95/Course-Work | f55f9eeb90affd0edf1c19bd35770bfea16e9dbf | ff4032e24606249eba3081515fa595ac609f9973 | refs/heads/master | 2021-09-25T07:32:11.501777 | 2018-10-19T16:42:54 | 2018-10-19T16:42:54 | 114,310,234 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,715 | h | /* A Bison parser, made by GNU Bison 3.0.2. */
/* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
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
t... | [
"mcgovernchristian@gmail.com"
] | mcgovernchristian@gmail.com |
fd2e6a2543bccaecd39273c6456e562583cf4bb5 | 5cc9043df050bee9c1414bf2a69abae1ab7e634f | /pgdummy.c | 4f8843b650ffac40f1024f6be022d2311de71c33 | [] | no_license | gfphoenix78/pgdummy | 92b8ea7fd5fd20dfd6787653182516eb6c46803e | ecc3116ba1ecf9f166aaeeb6e39879cff35c039b | refs/heads/master | 2020-04-26T17:32:30.978067 | 2019-03-04T09:48:38 | 2019-03-04T09:48:38 | 173,717,135 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,547 | c | /*------------------------------------------------------------------------------
* pgaudit.c
*
* An audit logging extension for PostgreSQL. Provides detailed logging classes,
* object level logging, and fully-qualified object names for all DML and DDL
* statements where possible (See README.md for details).
*
* ... | [
"gfphoenix78@gmail.com"
] | gfphoenix78@gmail.com |
6dd7b819b35fc555fbcd25ee36662633a5b9eeac | 126310c84a24919101476bcf42310493db7d665e | /Project/inc/main.h | e88f2a378b4e671c8f3c213d975fccae2bc40192 | [] | no_license | vladkrylov/Leetech-Master | f0edf8b0fca136655b6e714a2b741c2bf18804c3 | cfd812ee9ffda37503e7865da14babdea7aeea24 | refs/heads/master | 2016-09-06T21:24:59.439406 | 2015-04-06T17:06:03 | 2015-04-06T17:06:03 | 22,873,773 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,536 | h | /**
******************************************************************************
* @file main.h
* @author MCD Application Team
* @version V1.0.0
* @date 11/20/2009
* @brief This file contains all the functions prototypes for the main.c
* file.
*****************... | [
"vladkrilov9@gmail.com"
] | vladkrilov9@gmail.com |
3254be16ff2378f89b6f2fe927c0ae8abc3c1861 | 3a56b1155d39c8e4dfaff52f0ec2e43b64304c28 | /frames/03103.c | e6d05004ed96cec020f3f40c3780a329e07332af | [] | no_license | RippedOrigami/GBA-Rick | 6a610bde18e8dda978730b2d754565e9cdcbfe1d | 0953de71ad0a392f5d3a0bcedc54d55e478925b7 | refs/heads/master | 2021-05-28T17:10:33.260039 | 2014-11-28T17:14:04 | 2014-11-28T17:14:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,843 | c |
//{{BLOCK(_3103)
//======================================================================
//
// _3103, 40x40@8,
// + palette 256 entries, not compressed
// + 25 tiles lz77 compressed
// Total size: 512 + 1532 = 2044
//
// Time-stamp: 2014-11-28, 05:19:59
// Exported by Cearn's GBA Image Transmogrifier, v0.8.12
// ( ... | [
"mtinc2@gmail.com"
] | mtinc2@gmail.com |
2b229917664a4f72b24788e9ad6afc9398126499 | b927232112fb2019c54ea62c3542c61c709cff60 | /Data-Structure/Oline-Judge/1/add.c | a8faa3315c5ec6466530d6033d2fdb5552f1241b | [
"MIT"
] | permissive | UCAS-wyyh/UCAS-CS | 4d2f45bd088e426f4e75cb8d117138b2f74d9ec9 | e2b8a214057e6a411e742a78a988b43a49c7741f | refs/heads/main | 2023-01-23T06:18:56.095273 | 2020-12-01T12:51:34 | 2020-12-01T12:51:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 98 | c | #include <stdio.h>
int main(){
int x,y;
scanf("%d%d",&x,&y);
printf("%d",x+y);
return 0;
}
| [
"zhanglei171@mails.ucas.ac.cn"
] | zhanglei171@mails.ucas.ac.cn |
048e4b815c93d44134fe1ac254411c9a2408b897 | 94e8344ee420ae4d2eb1643e95973845f341a3d2 | /spidermonkey_1.6_mutants/mutant101976_jsobj.c | 17647c80d3f9fefe84ea495376a08cc7c733885c | [] | no_license | agroce/compilermutants | 94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3 | dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991 | refs/heads/master | 2022-02-26T21:19:35.873618 | 2019-09-24T15:30:14 | 2019-09-24T15:30:14 | 207,345,370 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 148,091 | c | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sw=4 et tw=78:
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except... | [
"agroce@gmail.com"
] | agroce@gmail.com |
aef3ac59154ae30f22024c15f2a97cd0aadc762a | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/0802e7e1-1406-464f-aae3-6aef9a1f7a50.c | cff0ac78839e7ae3009e66c3d4300399a6e3cf20 | [] | 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 | 569 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=12;
int k;
int l;
j = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = l%j;
l = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[67];
int c[49];
a = 0;
while (b[a] != 0) {
//r... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
176717b1a4d86f57ccb44d9db4c319e29aec656c | 2b77313f4bcde1d5800600f5d6b60fe8dda72a84 | /lem-in/libft/ft_strnstr.c | 06e5ed6dcdc6d07232b38557cc855ce8305c4598 | [] | no_license | rcotterr/lem_in | 906e6080c6b95153c8af7c518e929e5571701328 | 582cb0bc0d66c6f05ac54e8f21b0eb58323d2718 | refs/heads/master | 2020-08-05T05:02:21.702845 | 2019-10-02T17:54:12 | 2019-10-02T17:54:12 | 212,405,757 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,210 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnstr.c :+: :+: :+: ... | [
"rcotter-@mi-g4.21-school.ru"
] | rcotter-@mi-g4.21-school.ru |
d7f2029e7fd6a4eacceab1147484d1175fcefa39 | cd8a2947df482b13997f28b9640e4118325491ef | /stdio/VPRINTF.C | 3bd285e1356756c1b9e30dad4aa7679f08576f0b | [] | no_license | 167rgc911/HI-TECH-Z80-C-Cross-Compiler | b0b244db9650f40c8e6ebdac80068d3b01e29b7a | 12906e4688ee74dd70468d7eaf460e90acf84cb1 | refs/heads/master | 2023-04-05T18:48:51.826559 | 2021-05-10T01:40:14 | 2021-05-10T01:40:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 108 | c | #include <stdio.h>
#include <stdarg.h>
vprintf(char * f, va_list ap)
{
return(vfprintf(stdout, f, ap));
}
| [
"tony.nicholson@computer.org"
] | tony.nicholson@computer.org |
824f44056638da719735d4684e22901f076b0a77 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/54dcd33a-5bb4-4d3b-9d30-ee5836a67e7a.c | ddf4c6417f003aa7a06dee863c884a9aff8c6122 | [] | 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 | 581 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=11;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i%j;
l = l+j;
k = k-j*i;
//variables
/* START VULNERABILITY */
int a;
int b[10];
int c[16];
a = 0;
do {
a++;
//ran... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
3bb38829c546d2b66b8d3f68909c216f72dc50b2 | 15e19e712c46e536ac47d97edc26b6354459f07c | /lib/delynoi/include/delynoi/voronoi/lib/triangle.h | cd21239bb68d47369bec719e957960d1fefa3577 | [] | no_license | capalvarez/xDelynoi | 5f1d1f733509ec1b8dafe1f40fc2c0a657fa37cf | 7680d65575d92b9ab1c1075ea71d888d798e06b0 | refs/heads/master | 2021-08-20T02:48:32.456066 | 2017-11-28T02:05:06 | 2017-11-28T02:05:06 | 105,716,885 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 21,820 | h | /*****************************************************************************/
/* */
/* (triangle.h) */
/* */
... | [
"capalvarez.i@gmail.com"
] | capalvarez.i@gmail.com |
1fecce244d78f14ee608dcf01cd5916f725c650e | 33b7ef3a429a810d333ece6eafea3f382875d42e | /Singleton_Block_Macro.h | a06b31e995b279ad05dec8beee4b0e5573131fbb | [
"BSD-3-Clause"
] | permissive | 6david9/Singleton-Block-Macro | a16c7d8dc913f72d904996e8e86902a12676872b | 4367623e366fa14d377738ede08ed19ba74feada | refs/heads/master | 2021-01-25T05:34:06.912600 | 2013-08-01T06:24:08 | 2013-08-01T06:24:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 514 | h | #ifndef SINGLETON_BLOCK_MACRO_HEADER
#define SINGLETON_BLOCK_MACRO_HEADER
#define DECLARE_SINGLETON(); \
+ (id)sharedInstance;
#define SYNTHESIZE_SINGLETONE_FOR_CLASS(CLASS_NAME) \
+ (id)sharedInstance\
{\
static CLASS_NAME *__##CLASS_NAME##_instance = nil;\
\
static dispatch_once_t onceToken;\
dispatch_o... | [
"6david9@163.com"
] | 6david9@163.com |
7ffdcf8b85176aa310135a56f21b4cd3ceb4ce84 | 18847b41aab5cff96fc53ab90ea6f63e23eebd94 | /Assignments/Assignment_3_Vector/thesaurus-lookup.c | 3a12d85acc807b711f6b4ba0af39bcbc52b81472 | [] | no_license | LesleyWagner/CS107_Programming_Paradigms | 76dedd5848521243f0fb88c111f643c4d316e848 | 04c817a049290df92f823332e2b3e51ef3651dd1 | refs/heads/master | 2022-11-20T04:33:34.933820 | 2020-07-15T18:05:05 | 2020-07-15T18:05:05 | 270,281,657 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,582 | c | #include "bool.h"
#include "hashset.h"
#include "vector.h"
#include "streamtokenizer.h"
#include <stdlib.h> // for malloc, free, etc
#include <string.h> // for strcmp
#include <strings.h>
#include <ctype.h> // for tolower
#include <time.h> // for time
/**
* Convenience struct used to bundle a word (expressed
... | [
"lesleywfit@gmail.com"
] | lesleywfit@gmail.com |
c7ed1ca9b9b5455325a5914eec720ddff017bcaa | 44569d9c930edb0123c48541d19b5bfa19ffdd3a | /complete/100.same-tree.c | 057b71430b17eb2e30b7cea345ab8b4daeebebf5 | [] | no_license | HC-Chang/LeetCode | 1b45a52e2c6c7235d28281d74631f032b3915284 | e0f50789b95b46025a5b16800bc9e3fd59439043 | refs/heads/master | 2023-08-16T20:31:59.662222 | 2023-08-16T16:02:19 | 2023-08-16T16:02:19 | 148,348,757 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 561 | c | /*
* @lc app=leetcode id=100 lang=c
*
* [100] Same Tree
*/
// @lc code=start
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
bool isSameTree(struct TreeNode *p, struct TreeNode *q)
{
if (!p && q)
retur... | [
"student0804@gmail.com"
] | student0804@gmail.com |
d168e674280e58780b35907f694a1b4340e9686b | 7e1af1ecbaeb6126e685a9910707bf7127431ee2 | /opengl/src/generated/c/org_lwjgl_opengl_ARBTransformFeedback2.c | ca603d9446596db3b2c9392c601a8b488d834c1b | [] | no_license | LWJGL/lwjgl3-generated | 8172eb75f4e727289af76c503d29ef0e8627fc9f | 3358e2faea6a26e1b11e22e9147590cfb4e291c1 | refs/heads/master | 2023-08-20T06:02:52.111217 | 2018-04-21T15:48:09 | 2018-04-21T15:48:09 | 8,824,326 | 14 | 9 | null | 2014-07-10T22:02:40 | 2013-03-16T19:35:27 | Java | UTF-8 | C | false | false | 2,964 | c | /*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
#include "common_tools.h"
#include "opengl.h"
typedef void (APIENTRY *glBindTransformFeedbackPROC) (jint, jint);
typedef void (APIENTRY *glDeleteTransformFeedbacksPROC) (jint, intptr_t... | [
"iotsakp@gmail.com"
] | iotsakp@gmail.com |
890815eb8239443f7eeab7da7b9ce8f5e0e681fb | ca3c86fca6522fcdcf883eb2493d7166d1ceed3a | /EX05/BlinkLED/Src/main.c | cefc6adedbe40a0a1584b5b4ab3b29e9436ce962 | [] | no_license | matheuswhite/SE_Exercises | 2cf36208e35adf6c87053f16e33ccc0275de9d2b | e63763bf79962e6a4559c75100027011f17e609d | refs/heads/master | 2021-07-12T05:35:30.128997 | 2017-10-16T23:52:35 | 2017-10-16T23:52:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,323 | c | /**
******************************************************************************
* File Name : main.c
* Description : Main program body
******************************************************************************
** This notice applies to any and all portions of this file
* that are not ... | [
"matheustenorio@ic.com.br"
] | matheustenorio@ic.com.br |
486adc4dc6bf3899d7e2ee64f67469c89d0f69ef | 204f940f35f7905dd72f90f19b0184f8a2f6d341 | /XSCTest/source/Assert/XSCTestAssertStringEquality.c | 31b8a25cb3aac8470e2f38def7fc9eb2e8e0e331 | [
"MIT"
] | permissive | macmade/XSCTest | efe30771debd2899d5e7a1df829ea36c9139033f | 57481592e1f3b91003c05b45f8e92207b48e29be | refs/heads/main | 2023-06-20T20:25:18.658463 | 2021-08-05T17:04:07 | 2021-08-05T17:04:07 | 294,554,398 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,416 | c | /*******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2020 Jean-David Gadina - www.xs-labs.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... | [
"macmade@xs-labs.com"
] | macmade@xs-labs.com |
383f828b39ddcd79322b647269a44230923e3ffc | 72e2e916e33a56d3b7718ae4dd80df0dfb4e39a9 | /src/ushuffle.c | c161f4d008b2c6d5db77fe680d65122e2a2638bd | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | xuebingwu/kpLogo | a69f1955bda8d50330074839c435b037c33b2922 | 7d85c310d04927e9e0a45a35c7125143f8eefdb6 | refs/heads/master | 2023-02-09T05:32:53.053803 | 2023-01-20T03:20:01 | 2023-01-20T03:20:01 | 29,060,084 | 10 | 3 | null | null | null | null | UTF-8 | C | false | false | 6,691 | c | /* Copyright (c) 2007
* Minghui Jiang, James Anderson, Joel Gillespie, and Martin Mayne.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the... | [
"wuxb07@gmail.com"
] | wuxb07@gmail.com |
a570df4e166c1a6008d963fa7f54c6f1add41436 | 58cb1fdf75bee8475a65a7b1da3893b258d4fdab | /chacha20/dependencies/qc/tests/string/qc-bytes-to-hexstr-test.c | d61f1043f4648c000943ae6bb33bde7d8174df7b | [
"Unlicense",
"MIT"
] | permissive | foxpy/homework | 6b1b7e6aaab5451bf7666ee9bf8e335caaeb8afb | 40ee8abba580e071b51531643879fc785de166e6 | refs/heads/master | 2022-09-16T17:17:15.417035 | 2022-08-28T17:02:52 | 2022-08-28T17:02:52 | 105,091,021 | 8 | 1 | null | 2022-08-28T17:05:23 | 2017-09-28T02:08:21 | C | UTF-8 | C | false | false | 863 | c | #include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "qc/string.h"
#include "qc/tests.h"
static void check(size_t len, uint8_t input[static len], char const* uppercase_expectation,
char const* lowercase_expectation) {
char* output;
qc_bytes_to_hexstr(true, len, input, &output)... | [
"muradkarammaev@gmail.com"
] | muradkarammaev@gmail.com |
8a62671af073fa33ec12511577eb0cbfcf72e21a | ca41ffdd4e8b486abcbc3c4247b1be60102ec6d3 | /d/moon/change_room.c | f92b79ac341cffd0bc1f7e17f21cbf55ae3a2201 | [] | no_license | kttycn/xyj | 4c6d6322e02939118fc68f45ea3ab5c5dbe9ce8a | 7018cde4d21839142f2be2f2c3475eb0f0574835 | refs/heads/master | 2021-01-12T08:41:24.764167 | 2016-12-16T14:42:47 | 2016-12-16T14:42:47 | 76,660,707 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 3,372 | c | //Cracked by Roath
#include <ansi.h>
inherit ROOM;
void init();
void dance(object where);
void finish_dance(object where);
void check_time(object where);
int do_enjoy();
void create ()
{
set ("short", "长思馆");
set ("long", @LONG
房中珠帘低垂,案上炉中点着一束沉香,轻烟袅绕。当地放著一张花梨大
理石大案,案上堆著各种名人法帖,并十数方宝砚,各色笔筒;那一边设
著斗大的一个汝窑花囊,插著满满的水晶球的白菊... | [
"kttycn@gmail.com"
] | kttycn@gmail.com |
0998ed30837adfc3bb7dd1fb3679ec1eac2f0ad5 | c1f54eab48b2dd25b2de925c98aa411fa27fa789 | /cp_lib/cp_log.c | dec3f17e61c870fe5906c374bb0fcffbfb093e50 | [] | no_license | ReiiSky/opencl_exam_framework | dc7dec496e13b2425cba9ec1752e04bb0a0d98a3 | a776ae1d249290b010e2203cd50acdf686452ff2 | refs/heads/master | 2023-01-10T17:28:06.073786 | 2017-05-21T11:24:03 | 2017-05-21T11:24:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,538 | c | #include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <cp_clock.h>
#include <cp_lib.h>
static cp_time_point g_log_clock_start;
static cp_time_point g_log_clock_current;
void
cp_log_init()
{
g_log_clock_start = cp_time_point_create();
g_log_clock_current = cp_time_point_create();
cp_clock_no... | [
"Gamma_ray_per@hotmail.com"
] | Gamma_ray_per@hotmail.com |
60e286e3d232b2136127190103a9f14513e25afe | 1744185a1e318fd0705b7c8d71635966bf2f7451 | /template/lib/Projects/STM32446E_EVAL/Examples/FMC/FMC_SDRAM_DataMemory/Inc/main.h | 79fc502218a2658237827d37e86ebb2ccb08f9a0 | [
"MIT",
"BSD-2-Clause"
] | permissive | swedishhat/stm32f4-bear-metal | 99554444acc611433190b00599d5be9ebbcbac49 | 04c8ae72ee6ea658dc376afe64f7f3a47c67512b | refs/heads/master | 2020-12-24T09:09:59.574026 | 2016-11-09T18:07:57 | 2016-11-09T18:07:57 | 73,302,594 | 0 | 1 | MIT | 2020-03-08T01:27:48 | 2016-11-09T16:45:24 | C | UTF-8 | C | false | false | 2,841 | h | /**
******************************************************************************
* @file FMC/FMC_SDRAM_DataMemory/Inc/main.h
* @author MCD Application Team
* @version V1.1.4
* @date 06-May-2016
* @brief Header for main.c module
************************************************************... | [
"patrick.d.lloyd@gmail.com"
] | patrick.d.lloyd@gmail.com |
cc2fff39452e9b9f95dbe338e352a11bf405c25c | 8a3a69a08c2003270215892476d750031007955e | /smart_car/LCD_7725_pc/Board/src/VCAN_LED.C | 0ba9ee670c82c2145c074e8fe92e7d09e0de18f9 | [] | no_license | Arthur244/Freescale_smart_car | 6c4916a8ba362e0c6e44e2fb1c56e25ba713fc83 | 5f358665718da3e48c330c6dbc99ea97b7ff5678 | refs/heads/master | 2021-01-17T17:25:36.454697 | 2016-06-14T07:35:49 | 2016-06-14T07:35:49 | 60,459,597 | 5 | 0 | null | null | null | null | GB18030 | C | false | false | 2,191 | c | /*!
* COPYRIGHT NOTICE
* Copyright (c) 2014,山外科技
* All rights reserved.
* 技术讨论:山外论坛 http://www.vcan123.com
*
* 除注明出处外,以下所有内容版权均属山外科技所有,未经允许,不得用于商业用途,
* 修改内容时必须保留山外科技的版权声明。
*
* @file VCAN_LED.c
* @brief led驱动函数实现
* @author 山外科技
* @version v5.... | [
"584831408@qq.com"
] | 584831408@qq.com |
20bfac5950c42286a73b015e2a99b4e14d4cca31 | 9ec5c73c22685cb7cb4216a7d367f5173083d56a | /sphost/customization/hostfw/include/app_icon_def_sbc.h | 6310f5143d53d1e8083050bad7f5be99f3b6d519 | [] | no_license | chadmuska/test | 0f06d622e22eda54a14b8275f287d728cbc53a84 | 68af41f3243feccda6952e85ff75f17a434963eb | refs/heads/master | 2020-03-19T23:19:17.368909 | 2018-06-12T01:53:48 | 2018-06-12T01:53:48 | 137,002,080 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 13,190 | h | /**************************************************************************
*
* Copyright (c) 2006-2018 by iCatch Technology, Inc.
*
* This softwar... | [
"paul.chang@jet-opto.com.tw"
] | paul.chang@jet-opto.com.tw |
51f0cbb892f99cd02013a3c5542757e4366fa335 | ad79dc448d048912a3d39bb77293600d80727001 | /esp-idf/components/bt/bluedroid/stack/include/gatt_api.h | 3f9958d02b11c7cbe848c784a2a6c4d234cae19e | [
"Apache-2.0"
] | permissive | ghsecuritylab/micropython_esp32_local | d94e1c12b37d0523f7d3158f7f77af275c581502 | 54234d75b0737ceb28c1ad9a421576a974571740 | refs/heads/master | 2021-02-26T13:17:55.948635 | 2018-01-24T06:36:41 | 2018-01-24T06:36:41 | 245,527,954 | 0 | 0 | null | 2020-03-06T22:27:58 | 2020-03-06T22:27:57 | null | UTF-8 | C | false | false | 49,194 | h | /******************************************************************************
*
* Copyright (C) 1999-2012 Broadcom Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License a... | [
"1143943623@qq.com"
] | 1143943623@qq.com |
d478430c0da9106a0d8de2caf0304c391dfb9c9c | 0c846407b8c1356580208e2fff8c86e5e54f5b47 | /original/TS-mf/SP-replace/MR2/v22/source/v22-s.c | b5a8627fe19a73446a347f54121050d6e311ecdf | [] | no_license | ymxl85/MRs-based-test-suite-for-APR | 3522691bab1b8f126ed47ee930895e7b98a222a3 | b6c6e7e027629fef00e737726161970760a2d560 | refs/heads/master | 2020-11-29T22:26:05.610363 | 2020-04-27T02:59:34 | 2020-04-27T02:59:34 | 230,019,140 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,662 | c | /* -*- Last-Edit: Mon Dec 7 10:31:51 1992 by Tarak S. Goradia; -*- */
#include <klee/klee.h>
extern void exit();
# include <stdio.h>
void Caseerror();
typedef char bool;
# define false 0
# define true 1
# define NULL 0
# define MAXSTR 100
# define MAXPAT MAXSTR
# define ENDSTR '\0'
# define ESCAPE '@'
# defi... | [
"jiang_my@126.com"
] | jiang_my@126.com |
1a12c853749d9f95902ac284b2baa856266174c9 | 1fabce17ab942824aa3e8b0f01443a5d2dd6f2a1 | /api/DW_Frontend/CXD2856/isdb_cable/sony_demod_isdbc_monitor.h | f49c58af691ac1504da6addcb2d732fdb2601118 | [] | no_license | soralis0912/it930x_driver_native | f784436543dc7862a2aab25a8609caf7f14e5746 | 64fd4f3fd04cd8c19855250ebd88278734d4eba6 | refs/heads/master | 2023-06-19T08:58:31.793113 | 2021-07-18T19:02:31 | 2021-07-18T19:02:31 | 387,249,681 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 6,625 | h | /*------------------------------------------------------------------------------
Copyright 2016 Sony Semiconductor Solutions Corporation
Last Updated : 2016/09/02
Modification ID : 4de34284da29630b3c6ce40872f48f739b35e390
------------------------------------------------------------------------------*/
/**
@f... | [
"soralis.nem@gmail.com"
] | soralis.nem@gmail.com |
6d8b2c1f66735503a758a83886b6fe5b0740c299 | b4329476bf6a1dd58a5a19f89095b4a5c7a093e8 | /controlsuit_libs/dsp/FPU/v130/source/C28x_FPU_LIB/median_SP_RV.c | ce5978b31080792994f5331a0addd001fac4c1e9 | [] | no_license | whicun/nov_dsp_lib | e3b514fad1078db4bdd847cd2402204c0a406691 | e584d374446a0984b7a5ac44dfa2bcc8ea7faa7c | refs/heads/master | 2021-12-31T10:17:24.495663 | 2018-02-11T07:22:50 | 2018-02-11T07:22:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,426 | c | //###########################################################################
// This software is licensed for use with Texas Instruments C28x
// family DSCs. This license was provided to you prior to installing
// the software. You may review this license by consulting a copy of
// the agreement in the doc d... | [
"JCL@163.com"
] | JCL@163.com |
a14d2b5a51b78efc4541e4896bad9a3e9797a86d | 541e48900e5fbc0a121e5a43c5e9a06ff89de2d1 | /src/lapack/cla_wwaddw.c | 33f7d05cfef6da7d4d14803f3b6519d4c276c2d6 | [
"BSD-3-Clause"
] | permissive | juanjosegarciaripoll/cblapack | 7408a8aa901bfff8e819cbffd5c862eb006c33ac | 7b3d7280c8d5f39d8f7f84c3c24067f163e03974 | refs/heads/master | 2021-05-25T11:56:43.415033 | 2016-09-24T18:05:17 | 2016-09-24T18:05:17 | 13,536,584 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,513 | c | /* cla_wwaddw.f -- translated by f2c (version 20061008).
You must link the resulting object file with libf2c:
on Microsoft Windows system, link with libf2c.lib;
on Linux or Unix systems, link with .../path/to/libf2c.a -lm
or, if you install libf2c.a in a standard place, with -lf2c -lm
-- in that order, at the en... | [
"jjgarcia@users.sf.net"
] | jjgarcia@users.sf.net |
2229c2253e693b5c9fe9cf29384f5fa8aff36b64 | 63c1223ad4f618b91b612b5bf42459f7577af44e | /assembly/stiffnessmatrix/codegen/mex/assemblingSVK_m_file/sum.h | 924ba4016fdd9e4569fe313b984c84f4c3572233 | [] | no_license | konsim83/M4 | 4cb3df07cec8414cfc2d09b042d7d37a139b6a1e | 3690e28606d780da5f5d4aaba0de1fd2cb79aa4e | refs/heads/master | 2020-11-26T12:47:12.222569 | 2015-07-20T14:15:01 | 2015-07-20T14:15:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 551 | h | /*
* sum.h
*
* Code generation for function 'sum'
*
* C source code generated on: Sun Jun 14 18:03:01 2015
*
*/
#ifndef __SUM_H__
#define __SUM_H__
/* Include files */
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "mwmathutil.h"
#include "tmwtypes.h"
#include "mex.h"
#include "emlrt.h"
#in... | [
"radiuex@gmail.com"
] | radiuex@gmail.com |
b071a544b40914f2c472df73f94d1f64577f55b3 | 2399f9f002ac1cbba68811f085e273601fb59bde | /CXSparse/Source/cs_ci_cumsum.c | cb072ecd560dd4e4c54ceff80d4fcc06286abf8a | [
"LGPL-2.1-or-later",
"DOC",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-free-unknown",
"GPL-1.0-or-later",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-3.0-or-later",
"GPL-2.0-or-later",
"Apache-2.0",
"GPL-3.0-only... | permissive | sergiud/SuiteSparse | d274d3f05291d3f45c0e2c09a26e9f3d143301da | b8b470c3dd5472f9b3a7bfc468075ee96d27dd62 | refs/heads/master | 2023-05-22T13:27:25.673524 | 2022-11-14T00:25:55 | 2022-11-14T00:26:25 | 40,436,072 | 48 | 18 | Apache-2.0 | 2023-01-01T19:24:21 | 2015-08-09T12:46:03 | C | UTF-8 | C | false | false | 394 | c | //------------------------------------------------------------------------------
// CXSparse/Source/cs_ci_cumsum.c: complex, int32_t version of cs_cumsum
//------------------------------------------------------------------------------
// CXSparse, Copyright (c) 2006-2022, Timothy A. Davis, All Rights Reserved
// SPDX-... | [
"sergiu.deitsch@gmail.com"
] | sergiu.deitsch@gmail.com |
0f190a20fb3419a9405f10e3704a3fc3f84041b8 | 9f30301f6712f0db0df07a6576f85fa9dc70804a | /Kernel_Driver_Lab_Practice/Prac2_Hello_World/hello-2.c | a7096c53c397b50678ac22699c33fbd86aa70a73 | [] | no_license | amoretspero/System_Programming_002 | cb2218a20eeb02adb5ff23a32ac77285d8b49eec | 4de533e5868e9b1ffa805bebe4e3061cbd939620 | refs/heads/master | 2020-12-24T16:41:30.814498 | 2016-04-19T09:34:53 | 2016-04-19T09:34:53 | 31,661,920 | 0 | 0 | null | 2016-04-19T09:34:54 | 2015-03-04T14:45:36 | Batchfile | UTF-8 | C | false | false | 456 | c | /*
* hello-2.c : Demonstrating the module_init() and module_exit() macros.
* This is preferred over using init_module() and cleanup_module().
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
static int __init hello_2_init(void)
{
printk(KERN_INFO "Hello, world 2\n");
return 0;
}
st... | [
"amoretspero@gmail.com"
] | amoretspero@gmail.com |
abc186ba74fbf0c3dd7c8c636d7a80d07e571445 | 347c284a27c0492963a0c4b592e8e2d22b293b06 | /vision/L2/examples/demosaicing/xf_demosaicing_config.h | 2b256bf9b13c4f8588a5f86cb0a615e1b292436a | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | phlight4fork/Vitis_Libraries | be14d1ac9e97d85ac823b3170c744242fc5001b3 | a60e1df95fa43e715cc9223f470587456463be8b | refs/heads/master | 2022-11-27T11:34:16.901157 | 2022-10-24T01:53:55 | 2022-10-24T01:53:55 | 269,535,014 | 0 | 0 | Apache-2.0 | 2020-06-05T05:01:40 | 2020-06-05T05:01:39 | null | UTF-8 | C | false | false | 1,316 | h | /*
* Copyright 2019 Xilinx, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | [
"sdausr@xilinx.com"
] | sdausr@xilinx.com |
5cd765d82dbbb304193dbdbaccfa080eac23d084 | 8b8c2fef385dc68c7654ee1348db653a2ebd98f2 | /submit/prj5-sol/stall-sim.c | e87fbce862b94a16ad0fde678b712c197f873e03 | [] | no_license | alexgwalley/i220a | 8279808f9a195bdedc3a5c97d6086a099a8ba0bf | d9099f75287f467a82f81cd08001d4d9480e26e0 | refs/heads/master | 2023-01-22T22:53:31.338244 | 2020-12-06T17:32:50 | 2020-12-06T17:32:50 | 290,840,887 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,118 | c | #include "stall-sim.h"
#include "y86-util.h"
#include "errors.h"
#include "memalloc.h"
#include <assert.h>
enum {
MAX_DATA_BUBBLES = 3, /** max # of bubbles due to data hazards */
JUMP_BUBBLES = 2, /** # of bubbles for cond jump op */
RET_BUBBLES = 3, /** # of bubbles for return op */
MAX_REG_WR... | [
"awalley1@cs.binghamton.edu"
] | awalley1@cs.binghamton.edu |
1428d0952ac2282eff19acebb79880ad69245d9e | a093d567bc8bea97ba282e7a743b41f6107d99a4 | /exercise/4-4/calc.h | 2940726d940f229ab7a7ec532e338f6ed795fceb | [] | no_license | icescut/TCPL | 7053a9fdc57fca74548def626edc51fe171ac8ee | c751a6db7a5f2f8855ab53b3830310844b21e226 | refs/heads/master | 2020-09-12T03:53:47.353956 | 2016-10-07T13:09:13 | 2016-10-07T13:09:13 | 66,769,157 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 169 | h | #ifndef _CALC_H_
#define _CALC_H_
#define NUMBER '0'
void push(double);
double pop(void);
int getop(char []);
int getch(void);
void ungetch(int);
void clear();
#endif
| [
"noreply@github.com"
] | icescut.noreply@github.com |
e0d0332af92bf150545448752c7a9ccab9fa643c | 9504788a66a4e24316b0966712d812f42a12ba1b | /2_User_projects_V1_6/Proj_1_Led_display_32_element/Proj_1F_PCI_and_T1_interrupt/Proj_1F_header_file.h | 3dd8132b7a1ca0346ab1fa704ab825fbd499ce40 | [] | no_license | aclandmark/PCB-111000 | d9d1556916f0955a749eb4966cec4ec8c4c0947f | 8f1ea1d047f20491e97976899665dadc7fca9999 | refs/heads/master | 2023-07-22T02:41:35.722385 | 2023-07-17T17:17:17 | 2023-07-17T17:17:17 | 154,730,767 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 440 | h |
#include "../../Resources_V12/Header_files/Basic_HW_setup.h"
#include "../../Resources_V12/Subroutines/Basic_HW_plus_Timer.c"
#include "../../Resources_V12/I2C_Subroutines/I2C_subroutines_1.c"
#include "../../Resources_V12/I2C_Subroutines/I2C_slave_Rx_Tx.c"
#include "../../Resources_V12/Header_files/I_O_from switches... | [
"mark.osborne15@btinternet.com"
] | mark.osborne15@btinternet.com |
9b2a024d4a382a60f286148f6e88f6a163b85ad6 | f6902b329cfa555bfba764e31b301b4d5d851be3 | /rie/4/5.c | c8ead7fcbbab117348fa7970676204d1e53f27c3 | [] | no_license | Chariemo/home_c | 80565e49ce32735868351c7545bd51de8588e3e6 | a92bbd848bc9af5f73014a82d1c63d1ad74e6650 | refs/heads/master | 2021-01-17T19:25:28.850245 | 2017-04-06T06:20:33 | 2017-04-06T06:20:33 | 57,260,643 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 129 | c | #include<stdio.h>
int main(void)
{
char ch;
for (ch = 'A'; ch <= 'z'; ch++)
printf("%c ASCLL is %d.\n",ch,ch);
return 0;
}
| [
"charleyschen@163.com"
] | charleyschen@163.com |
9f900661fb40cf0807f91d8bc95871d1df6689bd | 7f6c235b0598353549959c18f69eefd20b766907 | /libsrc/target/aquarius/fcntl/chdir.c | 5fd69a3bc52823d2e492f6071a9ff5ef94fd7323 | [
"ClArtistic"
] | permissive | z88dk/z88dk | 46dfd4905f36d99333173cadd0a660839befc9f0 | 8b07f37cc43c5d9ffe69b563c80763491d8faff7 | refs/heads/master | 2023-09-04T19:29:49.254958 | 2023-09-03T20:51:24 | 2023-09-03T20:51:24 | 54,035,569 | 820 | 263 | NOASSERTION | 2023-09-05T11:09:04 | 2016-03-16T13:48:16 | Assembly | UTF-8 | C | false | false | 470 | c |
#include <fcntl.h>
int chdir(const char *d) __smallc __naked
{
#asm
INCLUDE "fcntl.def"
EXTERN asm_strlen
ld a,ESPCMD_CHDIR
call __esp_send_cmd
ld hl,2
add hl,sp
ld a,(hl)
inc hl
ld h,(hl)
ld l,a
push hl
call asm_strlen
... | [
"dom@suborbital.org.uk"
] | dom@suborbital.org.uk |
b2b29a6183f6df7c03eb4af14094ab5afada9d90 | 63539c402d3eb132b8e4ea1a5957e058630ae3e1 | /shifumin/shiyan1/test1.c | 53cce643a362b019e57bfcf5c05ff7d5b7a22c5e | [] | no_license | jjucom18/classCode | ae86f40d5756d5e2d3082c5989012bbbff973e9a | 8d355c4bfcea13661b1a4e06807a68d7086b353c | refs/heads/master | 2020-08-29T12:25:57.021729 | 2020-01-04T10:28:07 | 2020-01-04T10:28:07 | 218,028,602 | 15 | 5 | null | null | null | null | UTF-8 | C | false | false | 460 | c | #include<stdio.h>
#include<stdlib.h>
int main(int argv,char **argc)
{
int var1,var2,var3,temp;
int *ptr_var1=&var1,*ptr_var2=&var2,*ptr_var3=&var3;
printf("请输入三个数字:");
scanf("%d%d%d",&var1,&var2,&var3);
printf("原始输入值:%d%d%d\n",var1,var2,var3);
printf("变量地址:%p,%p,%p\n",&var1,&var2,&var3);
temp=*ptr_var1;
*ptr_va... | [
"1464586517@qq.com"
] | 1464586517@qq.com |
215fdd1aac343e903020ed05a7e15481c8aaa362 | 81121ecb0f4897b5e754a7bfdd5c41571d369da4 | /MotateProject/motate/cmsis/TARGET_Atmel/sam3n/include/instance/uart1.h | 2e5f6fa78f89000fb5ab749dccf7c1e5ba68172f | [] | no_license | Amaan24/Motate | 5613435c5b2ab16e300cb0c99ccaf99565d3d949 | 44f96303a007928be2c84e41bcd49f204c76182e | refs/heads/master | 2020-06-27T16:41:30.227063 | 2016-09-26T14:29:07 | 2016-09-26T14:29:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,515 | h | /* ---------------------------------------------------------------------------- */
/* Atmel Microcontroller Software Support */
/* SAM Software Package License */
/* -----------------------------------------------------------------... | [
"giseburt@gmail.com"
] | giseburt@gmail.com |
14d2ac8b37bbc2e0f5fd982ec911d95755a5266d | 241f24e6a837081fd2f3c574c613cfd0b0ab4fb9 | /usr.bin/lex/sub2.c | bad4e711be6358a3f1b4d2f956de0f153ad8cda1 | [] | no_license | b4/4.3BSD-Quasijarus | 9474549f02d468f847adb58c797af650f3b803b9 | 2e0a87cbd51f1c47d04f3c57f07f6d9e1aa8ec1b | refs/heads/master | 2021-01-22T20:07:46.920215 | 2017-03-17T04:39:43 | 2017-03-17T04:39:43 | 85,271,248 | 1 | 0 | null | 2017-03-17T04:36:05 | 2017-03-17T04:36:05 | null | UTF-8 | C | false | false | 20,549 | c | #ifndef lint
static char sccsid[] = "@(#)sub2.c 4.2 (Berkeley) 1/12/88";
#endif
# include "ldefs.c"
cfoll(v)
int v;
{
register int i,j,k;
char *p;
i = name[v];
if(i < NCH) i = 1; /* character */
switch(i){
case 1: case RSTR: case RCCL: case RNCCL: case RNULLS:
for(j=0;j<tptr;j++)
tmpstat[j] = FALSE;
... | [
"abs@absd.org"
] | abs@absd.org |
a06eaa11c65612dc9851db1eeff375f60b48d241 | b66ce972665c615194bb5fbd5038cc10c98602f2 | /cpp_hojdoj/engine/ImageMagick/src/MagickCore/channel.c | 7b8acc3dfcee8c8c6b6476fbf334b7236d5837c1 | [
"MIT"
] | permissive | Fakor/HojDoj | 035c19462e8a3d9e6100213a580b84a28fb33b8f | 5363b38e5d145785208ef81b9033132c7ac3b2f2 | refs/heads/master | 2022-11-30T09:56:25.532117 | 2019-11-22T22:02:21 | 2019-11-22T22:02:21 | 178,614,734 | 0 | 0 | MIT | 2022-11-22T03:46:10 | 2019-03-30T21:47:23 | C | UTF-8 | C | false | false | 42,683 | c | /*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% %
% ... | [
"davidjohansson35@gmail.com"
] | davidjohansson35@gmail.com |
afd721e177fd1a93d27524901f9e72af01e013fb | a449d5a1a37dabedd68553a20f7da1716020184d | /GUI/Project/src/GUI_EnergyMode_DB.c | d14d3bb8bbb8e3f5ef8d004be57e078a2b7f5a59 | [] | no_license | heejong/HostPC | 4a80292a17502c97e2c7c47275484f3dff5027f8 | f71230e33343eb07cf56b54ee5a19e2babab5841 | refs/heads/master | 2021-01-21T07:39:54.803029 | 2013-08-01T16:56:14 | 2013-08-01T16:56:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,332 | c | //==============================================================================
/** @file GUI_EnergyMode_DB.c
@brief This file provides the functions needed for the energy mode DB screen.
### HARDWARE/FIRMWARE ENVIRONMENT
OS | HW type | HW ver. | FW ver.
... | [
"gnetscher@gmail.com"
] | gnetscher@gmail.com |
39e629075a582813e8a468d5bcf0dde01d094ad1 | 57a0cff15aa7a0a274691919bd5f0ceaf5caf886 | /basics/get_next_line.c | 390a931fb1e21f55601878bf80973748082d986e | [] | no_license | Robin-P/lemin | b32764917f70c7fba76add9cd3d1e5506c52bfdf | 21cd297b6413d4a6a29106065ca2f35777c92ca4 | refs/heads/master | 2020-03-21T20:39:49.096395 | 2018-06-28T13:25:39 | 2018-06-28T13:25:39 | 139,020,399 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,654 | c | /*
** get_next_line.c for get_next_line in /home/benjamin.g/delivery/CPE_2016_getnextline
**
** Made by Benjamin GAYMAY
** Login <benjamin.g@epitech.net>
**
** Started on Wed Jan 11 09:47:43 2017 Benjamin GAYMAY
** Last update Thu Apr 6 11:33:37 2017 Benjamin GAYMAY
*/
#include <unistd.h>
#include <stdlib.h>
#incl... | [
"robin94320@gmail.com"
] | robin94320@gmail.com |
af3fffcbef4cb06c5bd3bff00b32982c9406cc2d | 3b4eb535197196f699948b9d6beb9a4fae7623eb | /ADSupport/supportApp/hdf5_hlSrc/H5DOpublic.h | ce0d32ef670b2c1b9c0d4e782a90d0a5821d16b4 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf5",
"LicenseRef-scancode-hdf4"
] | permissive | ISISComputingGroup/EPICS-areaDetector | 23fa0825051e1686749b25def9e14c1fa1cbc579 | 40ba36a1d804841e6736609a3b996b564188ce37 | refs/heads/master | 2023-06-08T22:29:18.675011 | 2022-06-06T12:12:03 | 2022-06-06T12:12:03 | 40,836,309 | 0 | 0 | NOASSERTION | 2022-05-19T21:33:53 | 2015-08-16T19:41:47 | C | UTF-8 | C | false | false | 1,541 | h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... | [
"freddie.akeroyd@stfc.ac.uk"
] | freddie.akeroyd@stfc.ac.uk |
1715150117e2e5938b6f30327c4862c61a37791e | 32d404963376a396ee7ef518304b31f91694b79a | /Beta Weekend 1/DUMP/UMG_LoadingProgress_classes.h | 1a51b9b9b90f49f751eb45bacc4bd81e410200d4 | [] | no_license | TammelTin/Icarus-Dump | af2d1899491444924636b3903d5ee327a87d97c9 | 148c92b73f02add701816fd51fafc041145a635a | refs/heads/main | 2023-08-11T02:58:04.032131 | 2021-09-10T12:16:02 | 2021-09-10T12:16:02 | 401,130,226 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 956 | h | // WidgetBlueprintGeneratedClass UMG_LoadingProgress.UMG_LoadingProgress_C
// Size: 0x290 (Inherited: 0x260)
struct UUMG_LoadingProgress_C : UUserWidget {
struct FPointerToUberGraphFrame UberGraphFrame; // 0x260(0x08)
struct UUMG_LoadingIcon_C* LoadingIcon; // 0x268(0x08)
struct UTextBlock* Text; // 0x270(0x08)
str... | [
"30595413+TammelTin@users.noreply.github.com"
] | 30595413+TammelTin@users.noreply.github.com |
a3dabcffbfc1b30e54d96e462b195ab821ea9b7d | 9f6fd304999f25aa237d9060379b614fa3a75a56 | /example-uart-c/build/gen/mgos_ro_vars.h | 5b1dbb95b1a83e35b0ec274140a05b852320a31e | [
"Apache-2.0"
] | permissive | lekhoa2017/mongoose_learning | db32b283fdcd26793ee90415e126d55341c6785b | 29a8e49fbc8a2ad7b5ed5f91363b13e40801e016 | refs/heads/master | 2020-03-10T16:10:59.576922 | 2018-04-14T00:50:42 | 2018-04-14T00:50:42 | 129,466,505 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,077 | h | /*
* Generated file - do not edit.
* Command: /mongoose-os/fw/tools/gen_sys_config.py --c_name=mgos_ro_vars --c_global_name=mgos_sys_ro_vars --dest_dir=/fwbuild-volumes/2.0/apps/example-uart-c/esp32/build_contexts/build_ctx_129320520/build/gen/ /mongoose-os/fw/src/mgos_ro_vars_schema.yaml
*/
#ifndef MGOS_RO_VARS_H_... | [
"khoa.le@uts.edu.au"
] | khoa.le@uts.edu.au |
d2e1a8aa399d031d41fa83518518f0357207a2e1 | ab7caa5098a8588d965bff22ded172cd489e9874 | /hdf5-1.8.20/src/H5Gtraverse.c | 94b87168b62608279106033d483b2f1e0bd23b2f | [
"LicenseRef-scancode-hdf5",
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"MIT"
] | permissive | GWU-CFD/flash-distro | a8d0a690a3cc4967b9a5bd4af9a9ced824022218 | 740f45047bde057365823036158893c19c6d7c72 | refs/heads/master | 2023-02-01T05:28:54.306794 | 2020-12-09T18:03:49 | 2020-12-09T18:03:49 | 210,458,713 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 35,557 | c | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... | [
"adhruv@pfe22.nas.nasa.gov"
] | adhruv@pfe22.nas.nasa.gov |
de429bb9039180982865fbab105bd940274c3edb | 3874ebaa00b984495179752f19225cdc02c95f17 | /8/4.c | d3c815ee2966d7d36165ac1ccff8cbf0fd85fe6f | [] | no_license | c21/Solution-to-K-and-R | 4aaa802595bb721026d0ab2bb39f8a10b362065f | 0e740a9d34ed1dd2d0d410bac5524db49cf61fef | refs/heads/master | 2020-04-10T00:06:13.724530 | 2016-09-05T20:21:00 | 2016-09-05T20:21:00 | 51,031,264 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,401 | c | #define NULL 0
#define EOF (-1)
#define BUFSIZ 1024
#define OPEN_MAX 20 /* max #files open at once */
typedef struct iobuf
{
int cnt; /* characters left */
char *ptr; /* next character position */
char *base; /* location of buffer */
int flag; /* mode of file access */
... | [
"chengsu@ubuntu.ubuntu-domain"
] | chengsu@ubuntu.ubuntu-domain |
fb57a7fdf79c8ffba177c0c4c03e5dc6b4f8bf79 | f262085a295c6a12b5f4f86b1a36d92e2e254b3d | /components/newlib/include/sched.h | 6fcdf25bfead0847461b00b599bd3e1c0972af03 | [] | no_license | fxsheep/8910DM_LVGL | a7419a0ec4ff8b0612200b0073759c7beb7fad5e | 652a91d7ebda374be58fbb927714263234a78698 | refs/heads/master | 2023-07-09T16:37:09.962057 | 2021-08-11T07:18:47 | 2021-08-11T07:18:47 | 391,400,407 | 2 | 0 | null | 2021-07-31T15:55:06 | 2021-07-31T15:55:06 | null | UTF-8 | C | false | false | 2,341 | h | /*
* Written by Joel Sherrill <joel@OARcorp.com>.
*
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* Permission to use, copy, modify, and distribute this software for any
* purpose without fee is hereby granted, provided that this entire notice
* is included in all... | [
"864876693@qq.com"
] | 864876693@qq.com |
25b35cc907349ef1889cb34e0eaea4c6f0f3f19d | a03a7935a191d63bee76fd3b85a61ee27f98904a | /src/operators/Displace/DisplaceViewerPluginInfo.C | 2e5f089d6cadf1c84b87129ae61082755fbe90d4 | [] | no_license | cchriste/visit | 57091c4a512ab87efd17c64c7494aa4cf01b7e53 | c72c413f571e56b52fb7221955219f11f4ba19e3 | refs/heads/master | 2020-04-12T06:25:27.458132 | 2015-10-12T15:41:49 | 2015-10-12T15:41:49 | 10,111,791 | 5 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,447 | c | /*****************************************************************************
*
* Copyright (c) 2000 - 2015, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl... | [
"bonnell@18c085ea-50e0-402c-830e-de6fd14e8384"
] | bonnell@18c085ea-50e0-402c-830e-de6fd14e8384 |
a315590b8bbd8ef6c1d798eee2251d75594520da | 6aa406767612c3eec15c9dcd26ce49841c1555bb | /ADK_6.2.43/apps/libs/connection/dm_dut_handler.h | 7e099e088785e785e210bb93098158ea46164607 | [] | no_license | hongshui3000/BluetoothEarbud | 0bb483ca3c19f9c4b317a6ef1f4e8a9712313dd1 | b173ec3666c9e02d115d52d301b74fcd2d08cb47 | refs/heads/master | 2021-04-06T12:42:57.286099 | 2018-03-06T01:55:33 | 2018-03-06T01:55:33 | 124,361,091 | 1 | 7 | null | 2018-03-08T08:30:02 | 2018-03-08T08:30:01 | null | UTF-8 | C | false | false | 1,589 | h | /****************************************************************************
Copyright (c) 2004 - 2015 Qualcomm Technologies International, Ltd.
Part of 6.2
FILE NAME
dm_dut_handler.h
DESCRIPTION
*/
#ifndef CONNECTION_DM_DUT_HANDLER_H_
#define CONNECTION_DM_DUT_HANDLER_H_
/*************************... | [
"chaw.meng@geortek.com"
] | chaw.meng@geortek.com |
af03431a988b6c8af2edc56aa510f064cf1f5d1b | faa5361a628b00a1fb142767122db78ceb6d88b1 | /STM32Cube_FW_F7_AKT/Projects/STM32746G-Discovery/Examples/UART/UART_TwoBoards_ComDMA/Src/stm32f7xx_hal_msp.c | f9a75b06d9deb498ac28a8ed342333550573f16b | [
"BSD-2-Clause"
] | permissive | ghsecuritylab/Embedded-Systems-Development | 471b1f3546dc87de5b9380be1bf69d5b52f53777 | 88025ac30a41f88ee0f87da5dbdc68d8a42716f8 | refs/heads/master | 2021-02-28T15:38:31.809116 | 2018-05-30T17:12:46 | 2018-05-30T17:12:46 | 245,709,676 | 0 | 0 | null | 2020-03-07T21:42:08 | 2020-03-07T21:42:07 | null | UTF-8 | C | false | false | 7,961 | c | /**
******************************************************************************
* @file UART/UART_TwoBoards_ComDMA/Src/stm32f7xx_hal_msp.c
* @author MCD Application Team
* @version V1.1.0
* @date 30-December-2016
* @brief HAL MSP module.
********************************************... | [
"gnoril.lirong@gmail.com"
] | gnoril.lirong@gmail.com |
d00fa2bbce4805f2a1a07c76949866e5eca167d7 | 768cea4721ebe4439ce7af0a372726b703d484bd | /levels/castle_inside/painting.inc.c | a7afb4858d2128111baa8d06dd86e265aae96833 | [] | no_license | mountainflaw/sm64_60 | 08355027afd3a01ebabc246bac674dc666f17a15 | 831e0c420189e84a9369889b7f7cd9d276f38e2b | refs/heads/master | 2020-08-28T18:40:44.871138 | 2019-10-27T00:55:47 | 2019-10-27T00:55:47 | 217,787,985 | 5 | 1 | null | null | null | null | UTF-8 | C | false | false | 52,445 | c | #include "game/paintings.h"
// 0x07021800 - 0x07021808
static const Ambient inside_castle_seg7_light_07021800 = {
{{0x50, 0x50, 0x50}, 0, {0x50, 0x50, 0x50}, 0}
};
// 0x07021808 - 0x07021818
static const Light inside_castle_seg7_light_07021808 = {
{{0xff, 0xff, 0xff}, 0, {0xff, 0xff, 0xff}, 0, {0x32, 0x32, 0x... | [
"n64"
] | n64 |
532c009c2b13917a4fa30ad508bba4e99def34e1 | 669c29669e86175e65da2799fe26068cec63a70e | /branches/daly/version13/src/back_end/SessionManager/src/MIC.C | a184ee03219e8a25425ff7a26b20198cd9a4efbf | [] | no_license | markuspf/magnus | b5a77a961caba44783122c7c68d93fa6b8e94237 | a13d0c3c84fd37f82c0eda2bd3006c7bd6b546aa | refs/heads/master | 2020-12-24T06:52:39.856479 | 2012-01-12T03:43:50 | 2012-01-12T03:43:50 | 73,392,353 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,702 | c | // Copyright (C) 1996 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
//
// Contents: Implementation of class MIC
//
// Principal Author: Dmitry Bormotov
//
// Status: in progress
//
// Revision History:
//
//
#include "MIC.h"
#include "OutMessages.h"
//------------------------... | [
"daly@axiom-developer.org"
] | daly@axiom-developer.org |
41feed4b770cd50ccbf1b7ca9f68153810dff9ca | 75b947e6a2a15385cf1d14c47e4ea3277c26e987 | /LinuxC/day06/demo2.c | c652b893536a6f6aa4c242320aa2da13e175377c | [] | no_license | fsxchen/CppStudy | 828490de9841fd6299c7e19da41ebbc56568584a | 9c33be2eb75d4238f803c8cfbc0b7f6d01487be4 | refs/heads/master | 2021-01-19T02:17:36.849741 | 2016-12-29T09:27:30 | 2016-12-29T09:27:30 | 26,864,021 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,205 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <string.h>
#include <signal.h>
#include <curses.h>
#include <math.h>
WINDOW *w;
int num, i;
int isstop = 0;
void handle(int s) {
if(s == SIGUSR1) {
if(isstop == 0) {
isstop= 1;
} else {
... | [
"fsxchen@gmail.com"
] | fsxchen@gmail.com |
540a9a8110f0991aadca3597c3fc897511fe6b5e | 2bf5aeba13be2afeebe704fca08f599f53842e2e | /Binary_Search_iteration.c | ddf9f8da8f251725b3c13f12e304a749f5825f0a | [] | no_license | engineeringstudy2708/C-Program | d1267edfdc7ad86fabf86e9e0161db19a7ee4eea | 31fb2e8adc47171a6dca39cd521dc1f851d0f592 | refs/heads/main | 2023-08-29T08:01:32.650512 | 2021-10-06T16:43:29 | 2021-10-06T16:43:29 | 412,866,793 | 0 | 4 | null | 2021-10-06T16:56:32 | 2021-10-02T17:31:22 | C | UTF-8 | C | false | false | 578 | c | #include<stdio.h>
// Take Sorted Array
int main()
{
int key,low=0,high=0,mid=0,status=0;
int arr[8]={1,2,3,4,5,6,7,8};
high = 7; // array.length - 1;
printf("Enter the value to be search : ");
scanf("%d",&key);
while(low<=high)
{
mid=(low+high)/2;
if(arr[mid] == key)
{
printf("... | [
"noreply@github.com"
] | engineeringstudy2708.noreply@github.com |
c72fda76467fe3548b86dc39d06f0cfa12af96ab | 7fa45a8bf8362140b7a0e907e24b95b6a11c63de | /09-add_file_save/ae.h | 86d02834ef72926911274067040f44a11c0c1754 | [] | no_license | gq13965786/Redis-Simplify | d9c367e9fb1baa1940959e0f5288039f7406a4a6 | be1217164dd867bc77b24c5373c525712c0cad2d | refs/heads/master | 2020-09-14T11:22:33.129812 | 2019-11-25T02:46:53 | 2019-11-25T02:46:53 | 223,115,065 | 0 | 0 | null | 2019-11-21T07:34:19 | 2019-11-21T07:34:18 | null | UTF-8 | C | false | false | 3,793 | h | /* A simple event-driven programming library. Originally I wrote this code
* for the Jim's event-loop (Jim is a Tcl interpreter) but later translated
* it in form of a library for easy reuse.
*/
#ifndef __AE_H__
#define __AE_H__
#include <time.h>
/* 事件执行状态 */
// 成功
#define AE_OK 0
// 出错
#define AE_ERR -1
/* 文件事件... | [
"lishuhuakai@gmail.com"
] | lishuhuakai@gmail.com |
ee0bea1348a4cb6d2c5e951f5a3539527941a74e | 8932ea0802c92605f726bae500875610b969519d | /homeexam/Plenumstimer2017-master/Uke13/server.c | 09d86294cb26408dec2ccd0b81bec1b6d79a5179 | [] | no_license | yosephog/copies | 0e92dedf0e99b5158867d74ed5379ac5f5eec150 | f28bd995c8927fa9c5a322d915255151b08c7cf8 | refs/heads/master | 2020-04-05T18:27:24.571520 | 2019-06-17T23:30:38 | 2019-06-17T23:30:38 | 157,102,623 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,966 | c | #include <netdb.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include "util.h"
#define BUF_SIZE 10202
typedef struct msg_list {
struct msg_list *next;
char* msg;
} msg_list_s;
int interrupt_received ... | [
"thorfry@yahoo.com"
] | thorfry@yahoo.com |
59b632f15ff366220282050d27fa9478b7f7e7b1 | 0c45b1db8dd1814af6cd10a0010703d4c2d2a082 | /main/simpleExercises/c5/str.c | 134f8cfb035d9fd8f3fea482c3aae5438f3e9c91 | [] | no_license | Rest6/Programming-In-C | 021c25c84028de769aadbab3b9da28d8371518c1 | 7bd31a52518c5de919f3234ee15b1c988db08c04 | refs/heads/master | 2020-03-25T04:48:39.827102 | 2019-06-09T21:33:10 | 2019-06-09T21:33:10 | 143,413,813 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 769 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct _person {
char* firstName;
char* lastName;
char* title;
unsigned int age;
} Person;
typedef struct _alternatePerson {
char* firstName;
char* lastName;
char* title;
short age;
} AlternatePerson;
int main(void... | [
"ibroychenko@gmail.com"
] | ibroychenko@gmail.com |
c0e96232d8163bab4c7066865f73bce786191815 | 3baf82fcfef6b39dfac392a9c80574642acbfb60 | /lapack-netlib/SRC/zggqrf.c | 7962a60eae4c49052ab6ce08b336b7253b9944c7 | [
"BSD-3-Clause-Open-MPI",
"BSD-3-Clause"
] | permissive | carlkl/OpenBLAS | cc35f0ebb3c7d23c2ea3bc297e13b525c4bc3c3f | a4303ae37817e85eacf459327dea834df6cd23d8 | refs/heads/develop | 2023-03-20T07:24:53.838299 | 2022-07-25T04:14:30 | 2022-07-25T04:14:30 | 355,603,348 | 1 | 0 | BSD-3-Clause | 2021-04-07T15:56:10 | 2021-04-07T15:56:09 | null | UTF-8 | C | false | false | 25,417 | c | #include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <complex.h>
#ifdef complex
#undef complex
#endif
#ifdef I
#undef I
#endif
#if defined(_WIN64)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
#else
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#if... | [
"noreply@github.com"
] | carlkl.noreply@github.com |
57db2fbbd8f0afbee02407a314eb7367f2c3ef17 | 89d029d65f95d0fa7b0e0741bfa141d5b5cac025 | /analyza-pole.c | 3033523032e9e8f62d7b52efef84f21c297e96e1 | [] | no_license | ladaliska/prg-c | db8abd9b9f6706cdb3ed5f558b88a439e4824af2 | 47fc75fae39bf1e29fccd8ec746aba108d5e3854 | refs/heads/main | 2023-04-26T02:58:19.044516 | 2021-05-14T08:05:51 | 2021-05-14T08:05:51 | 326,618,131 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,670 | c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main() {
int c, n[5], x, d;
for (c = 0; c <= 4; c++) {
n[c] = rand() % 100 + 1;
printf("%d ", n[c]);
}
printf("\n");
if(n[0] < n[1] && n[0] < n[2] && n[0] < n[3] && n[0] < n[4]){
printf("%i", n[0]);
x = n[... | [
"noreply@github.com"
] | ladaliska.noreply@github.com |
43eb63fd3835f2d6a8688fa4f422d69fd0cfe161 | 9b3880bdecf314aa6b6eb692285789a8a11f4238 | /Sequence timer-f3-gd 1.1.6 - 综合测试 - 中文界面/GUI/date_setting_page.c | 47771da03a34e35a3bc24a118322ac21cf197af8 | [] | no_license | huangjie18/SequenceTimer | 5f10de45d7fad7140ff42687c6a5e0fa4fb53de5 | 8bdebe25aa53e9574e9f2916c429c5f9abd65bfb | refs/heads/master | 2021-09-11T19:17:18.633670 | 2018-04-11T09:27:12 | 2018-04-11T09:27:12 | 114,428,849 | 0 | 0 | null | 2017-12-16T02:55:57 | 2017-12-16T02:55:57 | null | UTF-8 | C | false | false | 4,706 | c | #include "date_setting_page.h"
#include "lcd.h"
#include "gui.h"
#include "rtc.h"
#include "flag.h"
#include "touch.h"
#include "data.h"
extern _date_time_data date_time_data;
extern _flag_dev flag_dev;
void date_setting_page_activity()
{
gui_draw_arcrectangle(95,44,225,80,4,1,BLUE,WHITE);
// gui_draw_arcre... | [
"2319743089@qq.com"
] | 2319743089@qq.com |
a9c77df4867da3abce6acf51e1dfeb44c080b6fd | c986be96449c3b179cc1417229d0e8fff61b765d | /apps/tc/tc_capture_mode/firmware/src/main.c | 5d0d8b03cb6eb2cef7e74357cdecd31092cab945 | [
"ISC",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | muthualagappanm/test_csp_apps_sam_ha1 | 6d127dbab8566e6347ba30bb2b073d3ee23d8966 | 378e7da8fb454c0f317f7f3ffcdb2f2e0c7228bc | refs/heads/master | 2023-03-17T23:47:03.929767 | 2021-03-17T04:16:34 | 2021-03-17T04:16:34 | 348,576,768 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,927 | c | /*******************************************************************************
* Copyright (C) 2019 Microchip Technology Inc. and its subsidiaries.
*
* Subject to your compliance with these terms, you may use Microchip software
* and any derivatives exclusively with Microchip products. It is your
* responsibility to ... | [
"syam.nair@microchip.com"
] | syam.nair@microchip.com |
8eeb7f456c28a2f9f9419d20c4ab5ca43c27e3bf | 6d5b9b85d7ebee5899166a776a49597a520133cb | /STM32Cube_FW_F7_V1.8.0/Projects/STM32F769I_EVAL/Examples/RTC/RTC_TimeStamp/Src/main.c | 6b060ad916c790dd9f1f4e726cd6f7a441197c03 | [
"BSD-2-Clause"
] | permissive | koson/STM32-Tests-Project | 291531c504b256fc70b484467fc285ef2349fed9 | 25fb44d23362e89df3ae489285dae1a4be3d0414 | refs/heads/master | 2022-04-12T17:33:56.763263 | 2020-04-04T23:02:45 | 2020-04-04T23:02:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,126 | c | /**
******************************************************************************
* @file RTC/RTC_TimeStamp/Src/main.c
* @author MCD Application Team
* @brief This sample code shows how to use STM32F7xx RTC HAL API to
* ensure Time Stamp configuration.
*********************************************... | [
"i.orfanidi@mail.ru"
] | i.orfanidi@mail.ru |
3acbfe8f2ca07860561bdaafee550ffa363db47f | 5791d786c0f26fc287ac0fa7b293fe7339e041c2 | /Classes/spiceCpp/spicelib/analysis/cktncdump.c | 79355555b32e782732a80c4fe166a28d64d0c959 | [] | no_license | fengmm521/myspice | 2c2da3e9c250e0a4193d2d999b2eb119c18f0d38 | aacf57b4a11a34aa8ed38ee3557f6dc532aabffb | refs/heads/master | 2021-01-10T11:26:53.150769 | 2015-09-27T16:28:59 | 2015-09-27T16:28:59 | 43,237,336 | 3 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,201 | c | /**********
Copyright 1999 AG inc. All rights reserved.
Author: 1999 Alan Gillespie
**********/
#include "ngspice/ngspice.h"
#include "ngspice/cktdefs.h"
#include "ngspice/suffix.h"
void
CKTncDump(
CKTcircuit *ckt)
{
CKTnode *node;
double new, old, tol;
int i=1;
fprintf(stdout,"\n");
fprintf(stdout,"L... | [
"fengmm521@gmail.com"
] | fengmm521@gmail.com |
8b5c207a69a50f8cd13c04ae2999feefcfc3d030 | 686bb0f74792f114addec0020cc89f149c2cdc3b | /WGL/context.h | 068c5cac19a4ac8d23d1578189e10bbc3ce31873 | [] | no_license | chris-stones/rh_window | 932c6d8fe929fc235234c01425cca81c3ed9bf39 | ae2ad59cdd87675a86bc2d2635e383df4e3c13a6 | refs/heads/master | 2021-01-18T09:20:44.061923 | 2014-08-08T12:25:06 | 2014-08-08T12:25:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 183 | h |
#pragma once
#include "display.h"
#include "screen.h"
#include "../rh_window.h"
#include<windows.h>
struct _rh_render {
rh_window_handle window;
HDC dc;
HGLRC rc;
};
| [
"chris.stones@zoho.com"
] | chris.stones@zoho.com |
78d9a8e862e29e32c278a17a83f8abae3eb460bc | 90725f1ac11156bc50f37fa0bb35946d6b7b6e3f | /src/c/mesa3d/Mesa-orig/src/mesa/shader/prog_optimize.c | 4fe351251e8c8dca85334451d7d96b8610f674e2 | [] | no_license | emcmanus/FlashMesa3D | 050273bafd09913f0319a753a3e5631aefc71260 | 94251abf88add7fb72f35f82d29d89231fb6c073 | refs/heads/master | 2021-01-01T17:28:43.118895 | 2011-03-01T03:14:36 | 2011-03-01T03:14:36 | 1,424,536 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 30,040 | c | /*
* Mesa 3-D graphics library
* Version: 7.5
*
* Copyright (C) 2009 VMware, Inc. 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, includ... | [
"emcmanus@gmail.com"
] | emcmanus@gmail.com |
5760e443027af0e9ba7cad2c6226c0851ef0034f | 553a81c221fc528b26bc98d3c9207296af174e3b | /vm.h | e09c718e0ca9c4975f848b382e117b5ba30c7046 | [
"MIT"
] | permissive | lzq123218/noahx | c962428fc0557102e22d7f60eaeaa1c58f46ce2a | ad26c12ce6005f5409d9070be49e634c8e68b562 | refs/heads/master | 2020-04-10T16:13:19.264552 | 2018-11-16T02:31:41 | 2018-11-16T02:31:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,625 | h | #pragma once
#include <stdbool.h>
#include <WinHvPlatform.h>
#include "range.h"
#include "util.h"
typedef uint64_t vm_gphys_t;
typedef struct {
WHV_PARTITION_HANDLE handle;
WHV_RUN_VP_EXIT_CONTEXT exit_context;
} vm_t;
void
vm_create(vm_t *vm);
typedef int vm_mmap_prot_t;
static const vm_mmap_prot_t VM_MMAP_PROT_... | [
"shina@ecc.u-tokyo.ac.jp"
] | shina@ecc.u-tokyo.ac.jp |
3e042add0f4377529bb7947ca348271595fa5870 | 6fa32a1e48850411d3e32bf9fefb2ddef4096fb7 | /main/ili9340.h | ed2a24880db105cb28a864fa50ab09bff6244d78 | [
"MIT"
] | permissive | nopnop2002/esp-idf-px4 | ad03b89d54d8dfaf5ceeb34b5327bb02b87858e1 | 4df2847f393c29ce2390112836c0adcdce2cd222 | refs/heads/main | 2023-07-31T19:37:23.039777 | 2021-09-23T03:00:45 | 2021-09-23T03:00:45 | 300,996,314 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,174 | h | #ifndef MAIN_ILI9340_H_
#define MAIN_ILI9340_H_
#include "driver/spi_master.h"
#include "fontx.h"
#define RED 0xf800
#define GREEN 0x07e0
#define BLUE 0x001f
#define BLACK 0x0000
#define WHITE 0xffff
#define GRAY 0x8c51
#define YELLOW 0xFFE0
#define CYAN 0x07FF
#define PURPLE 0xF81F
#define DIRECT... | [
"hau26280@tree.odn.ne.jp"
] | hau26280@tree.odn.ne.jp |
66ca5cafff816ed5ff27f1d0f5ab19f6be57cfb8 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/237/843/CWE191_Integer_Underflow__short_min_postdec_03.c | c35b8d471c3e2eee8e590b4a12827ae80261f2d4 | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,470 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE191_Integer_Underflow__short_min_postdec_03.c
Label Definition File: CWE191_Integer_Underflow.label.xml
Template File: sources-sinks-03.tmpl.c
*/
/*
* @description
* CWE: 191 Integer Underflow
* BadSource: min Set data to the min value for short
* GoodSource: Set dat... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
385a5db0ed36c3b24ca187a6122a055f6abdd426 | 876d8b536e33fe4a9b7b26a302808f3a4b2dc89e | /src/test/unit/csv_test.c | 9feee54cef16393fe31c5e49462be4ce6682442a | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | diasbruno/libcsv | 2c1d57a88505ed85b6381125b9d99cb65e976bb8 | b99725405de6560ac7e58b796d9aefb5080711c6 | refs/heads/master | 2021-09-14T16:18:03.198150 | 2018-05-16T02:19:29 | 2018-05-16T02:19:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,220 | c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "csv.h"
typedef enum {
TEST_TYPE_FILE,
TEST_TYPE_STR
} test_type_t;
typedef struct {
unsigned int row;
unsigned int col;
const char *value;
int success;
} test_condition_t;
typedef struct {
unsigned int num;
test_type... | [
"scott.newman50@gmail.com"
] | scott.newman50@gmail.com |
6facca31dad1b3d28bfe786e45cd49887e12b168 | 075ed80a041ae98a7ae9bb20a9551b4be6493a86 | /d/Empire/std/armour.c | 84497b6c4df5e6dba83231eb08a4c7605b56c854 | [] | no_license | simonthoresen/viking | 959c53f97c5dcb6c242d22464e3d7e2c42f65c66 | c3b0de23a8cfa89862000d2c8bc01aaf8bf824ea | refs/heads/master | 2021-03-12T21:54:46.636466 | 2014-10-10T07:28:55 | 2014-10-10T07:28:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 494 | c | #include "/d/Empire/empire.h"
inherit base I_ARMOUR;
inherit util EMP_I_UTIL;
static void
create()
{
base::create();
util::create();
}
public int
query_weight()
{
int val;
val = ::query_weight();
if (val <= 0) {
return 1;
}
if (!query_property("mithril")) {
return val;
... | [
"simon@hult-thoresen.com"
] | simon@hult-thoresen.com |
d9e0f12b6b73d211a18cb50a12e6217bbccda81c | a8cc21e0c8ae05fb49eb7f46bcd4bb0b625a276e | /lab02.c | 965c01c75fb26758a14dccd94588f3f0a8b99ac7 | [] | no_license | amar47shah/IntroC | d9241a3020489316b9156fc157f42b834521fc74 | 48f1a694027278f3cf8218d46ce0a97b43fc122d | refs/heads/master | 2021-01-23T11:07:32.139160 | 2013-01-12T03:25:34 | 2013-01-12T03:25:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,844 | c | /* Amar Shah
*
* Introduction to Programming Languages CECS130-50
* Lab Assignment #2
* 16 May 2012
*
* A C program that converts a user-determined amount of an unspecified currency
* into amounts of various global currencies, and displays the results in a table.
*/
// This program makes use of the standar... | [
"amar47shah@gmail.com"
] | amar47shah@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.