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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
20737149cdec225380f3fb9dce2f81df3e3fa161 | 47de4d848e1e03676b1ed3e4e2da8ed7b854638a | /Marathon/allMyProgsWithTests/allProgs/mx_is_mersenne.c | 96f2275c849606dc29c93d7854b819d73a540e79 | [] | no_license | berdyshevol/ucode | c1079e1bfaf528bfad8ed7943d0680145638371b | 8b4a5713a4dd2961f47df1c30230c5e508bf056d | refs/heads/master | 2020-08-27T12:43:58.860281 | 2020-05-06T19:38:08 | 2020-05-06T19:38:08 | 217,372,770 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 322 | c | #include <stdbool.h>
bool mx_is_prime(int num);
double mx_pow(double n, unsigned int pow);
bool mx_is_mersenne(int n) {
if (!mx_is_prime(n))
return false;
int pow = 1;
int g = mx_pow(2, pow);
while (g < n + 1) {
pow++;
g = mx_pow(2, pow);
}
return g == n + 1;
... | [
"oberdyshev@e2r7p10.unit.ua"
] | oberdyshev@e2r7p10.unit.ua |
1dc8ebd2bd44e49da43d9008702c9d1facf8c50b | 5a065cdbf2add6b446b7b510d0be3701fb623728 | /proj/DSC_R2/OMP/include/comm_typedef.h | 3e89aadf55f7bca7076c97aaf9ea053aa49c8baf | [] | no_license | lanian09/mysource | 1d05d749c3a7502003129d5d2f8d9757899301c5 | a5b630d54cee6ecd1249a00c8bad1d61c100b263 | refs/heads/master | 2021-01-24T06:29:01.901109 | 2013-08-31T00:46:43 | 2013-08-31T00:46:43 | 2,004,310 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 388 | h | #ifndef COMM_TYPEDEF_H
#define COMM_TYPEDEF_H
typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef int INT;
typedef unsigned int UINT;
typedef long long INT64;
typedef long LONG;
typedef unsigned long ULONG;
typedef short SHORT;
typedef char CHAR... | [
"uamyd5279@gmail.com"
] | uamyd5279@gmail.com |
4f12a81574ce16a64e547a6ad8fcfd38b72daee1 | 3a1c15f95ad5b81ad69a9ea12d827f893477ea5b | /tags/iup_3_10/iup/src/iup_tabs.h | 836548e7ff7bb7bb21cd63e1b74341be35831b23 | [
"MIT"
] | permissive | svn2github/iup-iup | 299a5cfc9d20f1e38078837e6199784f8c7dcfde | b6a92cebd91e90018c410426461683e1d74fabef | refs/heads/master | 2020-04-12T06:44:10.183905 | 2019-01-16T18:10:52 | 2019-01-16T18:10:52 | 60,389,764 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,134 | h | /** \file
* \brief Tabs Control
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_TABS_H
#define __IUP_TABS_H
#ifdef __cplusplus
extern "C" {
#endif
char* iupTabsGetTabOrientationAttrib(Ihandle* ih);
char* iupTabsGetTabTypeAttrib(Ihandle* ih);
char* iupTabsGetPaddingAttrib(Ihandle* ih);
void iupTabsCheckCu... | [
"(no author)@2f08bc20-984a-4df8-b195-9b5d5d477537"
] | (no author)@2f08bc20-984a-4df8-b195-9b5d5d477537 |
ab4bbf01ea6d4344409dd66644d567427dca03dc | 6578a2c13658ec3f3b9d0b92156128acdb70fa95 | /shared_items_def.h | 34931920a01db48f2b7c37b6a01fb4481696550c | [] | no_license | chasebad8/Array_Sorter_4001 | 150fc767eca0d696a4fb8502b0066a7959ba1564 | 990bae565abab5da43a66e5f90744ef58cf2d000 | refs/heads/main | 2023-05-05T01:56:38.609161 | 2021-05-25T21:43:12 | 2021-05-25T21:43:12 | 370,835,076 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 649 | h | #ifndef SHARED_ITEMS_DEF_H
#define SHARED_ITEMS_DEF_H
#endif
int set_semvalue(int sem_id);
void del_semvalue(int sem_id);
int semaphore_p(int sem_id);
int semaphore_v(int sem_id);
int isNum(int num);
int swap(int indexOne, int indexTwo, void * memory_location);
void debugMessages(char message[],int debug);
... | [
"noreply@github.com"
] | chasebad8.noreply@github.com |
29b7e418a44144dd0ba9b793c0b8d6e50a223c5c | 6bc7be4a5390faffa168b15ed24632d9348a7121 | /Ccode8/BinaryTree.c | 40d105be76f8ead0239cf7df719d95ee952f04d3 | [] | no_license | yinmingsong/Data-Structure | 8c2a99078b2b721c1226f63208beff442164035b | c781546355ab67d91d8cde4fef8a8dec882b29f8 | refs/heads/master | 2022-04-06T03:52:49.995020 | 2020-02-28T07:49:15 | 2020-02-28T07:49:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,229 | c | //
// Created by HP on 2019/11/9.
//
#include "BinaryTree.h"
#include <stdio.h>
#include <stdlib.h>
#include "TreeStack.h"
#include "TreeQueue.h"
PointTree LocalNode(BinaryTree * t,int e)
{
if(BiTreeEmpty(*t))
{
printf("Wrong.\n");
return NULL;
}
Queue q;
int a = 1;
PointTree p ... | [
"stephenyang@nuaa.edu.cn"
] | stephenyang@nuaa.edu.cn |
05ace8ac165c805ae4810fa32b92f3e40814f6f5 | 976093fd2797b6e553fd021bdecf61a8922a26e2 | /C-Programming-Exercises-master/Code/Arrays/strcmp.c | 62bd2fd24e4b7bf60a81d9a9fdd13d5f189aaa6f | [
"MIT"
] | permissive | fabestine1/MyThing | 8c8171bc5c0a3a85c79a4c6f664322f0c652958b | 56ab84ef245ef04ce0c815d7c80a31c574c98967 | refs/heads/main | 2023-03-23T04:47:15.815014 | 2021-03-10T11:11:45 | 2021-03-10T11:11:45 | 346,363,847 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 651 | c | #include <stdio.h>
#include <string.h>
int main() {
char word[200], word2[200];
fgets(word, 200, stdin);
fgets(word2, 200, stdin);
//printf("%s\n", word);
//printf("%s\n", word2);
int min_len = strlen(word2);
int diff = 1;
if (strlen(word) < strlen(word2)) {
min_len = strlen(word);
diff = -1;
}
in... | [
"ifionuf@gmail.com"
] | ifionuf@gmail.com |
b521a7f3c4f65f1706ea5e61748406c2f68e1bc9 | cf79bbe74f5707a58dfaaddf875c49b11e03572d | /el caracol.c | b4c66b950376d66c29cfc8f5a4616c84bfd704ca | [] | no_license | Emiliano1198/omegaup | a475932246a46db5f036e97376004e57dfd31799 | dbe2cb9bc3f64108d3c923475554cfaa173841f9 | refs/heads/master | 2020-03-27T17:03:13.782861 | 2018-08-31T01:32:27 | 2018-08-31T01:32:27 | 146,826,048 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 189 | c | #include <stdio.h>
int main(int argc, char *argv[]) {
int p,s,r,d,t;
scanf("%d %d %d",&p,&s, &r);
t=(p-s);
d=t-r;
if(s>r) {
printf("%d",d);
}else{
printf("%d",d);
}
return 0;
}
| [
"42160818+Emiliano1198@users.noreply.github.com"
] | 42160818+Emiliano1198@users.noreply.github.com |
93187a2901bf313079981710bf890e11fa4cacdb | e4519b9e07f343aae3847c2b749607a3ccaa1bdf | /TP6/sudoku/sudoku.c | 655c60f28ce7ebadc72062095b25203bbce7fc71 | [] | no_license | khenissimehdi/C-TP | 5bbffd96a5958496f59f03c1ca86774efb4261be | b08060d19c17730c463945cf034d919bdbe31f84 | refs/heads/master | 2023-05-11T17:34:00.212234 | 2021-06-04T12:19:38 | 2021-06-04T12:19:38 | 300,581,574 | 1 | 1 | null | 2020-12-21T11:16:11 | 2020-10-02T10:37:24 | C | UTF-8 | C | false | false | 2,285 | c | #include <stdio.h>
#include "sudoku.h"
void initialize_empty_board(Board grid){
}
int checkRow(Board grid, int row,int num,int lo,int ho){
if (lo < ho)
{
if (grid[row][lo] == num){
return 0;
}
checkRow( grid,row, num,lo+1,ho);
}
}
int checkCol(Board grid, ... | [
"5anfouskhenissi00123@gmail.com"
] | 5anfouskhenissi00123@gmail.com |
4a8891a6c7379f349dac11b9a358ac2112baa8b6 | a4cc03a687fec33fb986990cf053c1a04804b6f1 | /allwinner/tsc_demo/tsc_test/tsc/dvb_drv_sun5i.h | 9b1b7772244d0bf2003248bffad39a124b24d2b5 | [] | no_license | lindenis-org/lindenis-v833-package | 93768d5ab5c6af90e67bca2b4ed22552ab5d8ae8 | 220e01731729a86a0aac2a9f65e20a0176af4588 | refs/heads/master | 2023-05-11T22:20:40.949440 | 2021-05-26T09:42:15 | 2021-05-27T08:24:18 | 371,616,812 | 6 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,723 | h | #ifndef DRIVER_INTERFACE_H
#define DRIVER_INTERFACE_H
#include<linux/ioctl.h>
/*****************************************************************************/
//define iocltl command
#define TSCDEV_IOC_MAGIC 't'
#define TSCDEV_ENABLE_INT _IO(TSCDEV_IOC_MAGIC, 0)
#define TSCDEV_DISABLE_INT ... | [
"given@lindeni.com"
] | given@lindeni.com |
6e9cac8ad0f0244e1fe42a278b69e1ae19c6e7aa | 16a43c26b3ef0affc22955505f107f4e25407a60 | /arch/ppc/mpc55xx/drivers/Mcu.c | eb6d824a81fc77f3ab3abb84805e4a674099ff24 | [] | no_license | miaozhendaoren/OpenSAR | 0eae3dcd4bba0582c78a45bad69d3367082bda22 | f032389fb4b7740a3655980dc762d0444688d065 | refs/heads/master | 2021-01-22T06:58:31.625764 | 2014-06-28T07:51:54 | 2014-06-28T07:51:54 | 28,798,993 | 0 | 1 | null | 2015-01-05T05:32:11 | 2015-01-05T05:32:11 | null | ISO-8859-1 | C | false | false | 27,002 | c | /* -------------------------------- Arctic Core ------------------------------
* Arctic Core - the open source AUTOSAR platform http://arccore.com
*
* Copyright (C) 2009 ArcCore AB <contact@arccore.com>
*
* This source code is free software; you can redistribute it and/or modify it
* under the terms of the GNU G... | [
"parai@foxmail.com"
] | parai@foxmail.com |
f32bb96977e2db9561444e5ff17c1eeaf4d49996 | e5c20767e48e579c3ab8e45c581476e1c4575243 | /BICPL/1.4.6/Volumes/scan_polygons.c | 9d1ba92aba880c634652fc342fa6f0690f244724 | [
"LicenseRef-scancode-other-permissive"
] | permissive | leoliuf/Neuroimaging | f8e01bf49026e4a2acc95e1c78219c25ea27a46f | 391777650c10449f56ecd32707c03263b98391db | refs/heads/master | 2023-03-01T22:05:57.745322 | 2015-06-19T02:18:32 | 2015-06-19T02:18:32 | 67,168,526 | 0 | 1 | null | 2016-09-01T21:44:50 | 2016-09-01T21:44:50 | null | UTF-8 | C | false | false | 11,172 | c | /* ----------------------------------------------------------------------------
@COPYRIGHT :
Copyright 1993,1994,1995 David MacDonald,
McConnell Brain Imaging Centre,
Montreal Neurological Institute, McGill University.
Permission to use, copy, modify, and distrib... | [
"harald.waxenegger@gmail.com"
] | harald.waxenegger@gmail.com |
e44c459ae1183370678703c06349f242b7e52747 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/soc/ti/extr_knav_qmss_queue.c_knav_queue_close.c | 48e316bf345b2c616fe20b63231f940b6d66d71a | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,086 | 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 |
109735976e0060730d1851bf3eeb875a539f7447 | 2a907041ceff4bca25d4ea94a2b234b6786fc486 | /src/uranus/eventmanager.c | f5d6eb8dfd8626be7cef766d0ab1bb2949d67d72 | [] | no_license | AdamRLukaitis/Gaia | f4977129f55534906bac4a83a91f1c60906f8f92 | 7ac7d0ee6b9a6d2d79e9c03ee338faba4fc93078 | refs/heads/master | 2020-03-28T08:17:29.437587 | 2012-04-16T21:14:04 | 2012-04-16T21:14:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,559 | c | /*
* eventamanager.c
*
* Created on: 20/12/2011
* Author: piranna
*/
#include "eventmanager.h"
#include <stdio.h>
#include <string.h>
#include "fixedQueue.h"
#include "syscall.h"
#include "TestAndSet.h"
static fixedDict eventmanager_events;
static fixedDict eventmanager_events_delegated;
static fixedQue... | [
"piranna@gmail.com"
] | piranna@gmail.com |
330ff429e80a346f09a078e3b966af0cd34f0f44 | 0437b60dfc50741abefd77ec5fc864c00ec4abf7 | /apps_soundbox/script/script_test/script_interact/script_interact_key.c | 5dbd8d5e6e810d6e538c0488b8594347ed82ee84 | [] | no_license | mynamelcz/soft-IIC | 790050fba314cb7b473eb9c6e8ddb306d4fb57a0 | 8386b3185574287d74a15cae92b3b4e526b6834c | refs/heads/master | 2020-04-09T18:24:59.327568 | 2018-12-05T12:01:54 | 2018-12-05T12:01:54 | 160,511,447 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 10,181 | c | #include "script_interact_key.h"
#include "common/msg.h"/*******************************************************************
AD按键表
*******************************************************************/
#define ADKEY_INTERACT_SHORT \
/*00*/ MSG_INTERACT_SEND_CMD,\
... | [
"997170576@qq.com"
] | 997170576@qq.com |
bb4b536586a5f529fed21dd8f86fc6baddb6a3f4 | cb305a34679fb6e33e7fab3d2477e3eaba29a70a | /tests/unistd/unlink.c | 3f7d84b62691ba100203b671ed6639127b720965 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"NCSA"
] | permissive | juj/emscripten | b40925151a4c1a8b2954816708ffed2165c3bf5b | b22df433afe8c262ec190e595a5c8eb299850460 | refs/heads/master | 2023-08-31T00:57:31.708054 | 2012-04-26T18:05:37 | 2012-04-26T18:05:37 | 4,149,606 | 10 | 2 | NOASSERTION | 2022-11-17T13:11:25 | 2012-04-26T16:19:07 | JavaScript | UTF-8 | C | false | false | 1,118 | c | #include <stdio.h>
#include <errno.h>
#include <unistd.h>
int main() {
char* files[] = {"/device", "/file", "/file-forbidden", "/noexist"};
char* folders[] = {"/empty", "/empty-forbidden", "/full"};
int i;
for (i = 0; i < sizeof files / sizeof files[0]; i++) {
printf("access(%s) before: %d\n", files[i], a... | [
"max99x@gmail.com"
] | max99x@gmail.com |
4aba711139d1ac8ef9f705636c15060f800b6ee1 | 4f90c13d42bcb31c13530635973ba1febe8f1d84 | /nand.c | 6aea498ca445115e32e5a5e565538b04059eec0d | [] | no_license | fengjiayou99/nandk9f2g_test | cf391d1d6908d21c7c61a071127d64df46ca01ff | 38ce0b52b708b808cafd3f65947d18eb77948868 | refs/heads/master | 2020-12-25T19:04:10.895581 | 2012-04-04T11:31:55 | 2012-04-04T11:31:55 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 4,593 | c | #include "s3c24xx.h"
#include "nand.h"
#define NAND_SECTOR_SIZE_LP 2048
#define NAND_BLOCK_MASK_LP (NAND_SECTOR_SIZE_LP - 1)
#define TACLS 1
#define TWRPH0 5
#define TWRPH1 0
#define readp1 0x00
#define readp2 0x30
#define readid 0x90
#define writep1 0x80
#d... | [
"1219909189@qq.com"
] | 1219909189@qq.com |
9ebe1160a03211855aba8098aee87476f5ac4abb | 9192182cfcfcf4ce9f9bbb4003106e29b37b5bd1 | /mame-0.141/src/mame/drivers/crshrace.c | 0cc26a3bdbac2d8f271ce764cd22e60a5b1d8397 | [] | no_license | johkelly/MAME_hi | a2b9ea9d4f089f75e57de5963af187718733fccd | ccbec44e4c82e5ca83ba80de19bfb9c100dbd349 | refs/heads/master | 2020-05-17T13:29:54.978078 | 2012-07-13T19:03:50 | 2012-07-13T19:03:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 24,800 | c | /***************************************************************************
Crash Race (c) 1993 Video System Co.
driver by Nicola Salmoria
Notes:
- Keep player1 button1&2 pressed while entering service mode to get an
extended menu
Stephh's notes (based on the games M68000 code and some tests) :... | [
"john.kelly@readytalk.com"
] | john.kelly@readytalk.com |
e0740d9fa71661b57d3dd9b210251b38d29ab868 | 91a652ff1cf4a493dc4092f25e07cb6b4a07d24b | /CProjects/AssemblyC/main.c | 96927ec6c2f7dd842b145bddc03c84ab0c6f0635 | [] | no_license | dnivanthaka/PICMPLAB-Projects | cc1ff9d85439665187b1450f76a2d683d1a623ea | 57d622f8019713d88e72861dfee6b1b851acdc70 | refs/heads/master | 2021-01-17T19:56:48.330454 | 2016-08-05T15:02:21 | 2016-08-05T15:02:21 | 65,027,358 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 277 | c | #include <xc.h>
#include <stdio.h>
#pragma config BOREN = ON, CPD = OFF, FOSC = HS, WDTE = OFF, CP = OFF, LVP = OFF, PWRTE = ON
void init()
{
// Init devices
// Disabling the comparators
//CMCON = 0x07;
}
int main()
{
asm("movlw 0x07");
return 0;
} | [
"nivanthaka@gmail.com"
] | nivanthaka@gmail.com |
975ef2d4ba4d1d302e3febc554774056ab17d8cf | eafae6e88ae9c25a11a218414e4e80a73de8deed | /Dependencies/Header/mysql/mysql_version.h | ada3c0d606213e06c2f0f119aa49e9abe2cdd654 | [
"Apache-2.0"
] | permissive | GabrielLins64/SimpleERP | 12fdc969a8bf1a211cc48b62fac10ec601eec8c1 | 8a25bdab32bd58a866f429b7f541e0e0617ef2e1 | refs/heads/main | 2023-05-14T11:55:15.623120 | 2021-06-02T18:41:58 | 2021-06-02T18:41:58 | 373,289,684 | 0 | 0 | Apache-2.0 | 2021-06-02T20:05:27 | 2021-06-02T20:05:26 | null | UTF-8 | C | false | false | 230 | h | /* Do not edit this file directly, it was auto-generated by cmake */
#warning This file should not be included by clients, include only <mysql.h>
#include <mariadb_version.h>
#define LIBMYSQL_VERSION MARIADB_CLIENT_VERSION_STR
| [
"miguelnischor@gmail.com"
] | miguelnischor@gmail.com |
13f450cb8144b1d018facf373817e7c4d2701304 | 49780f24a92fcc9a7c855144fb195ae3736bf390 | /examples/devices/MSP430G2xx/MSP430G2xx1_Code_Examples/C/msp430g2xx1_wdt_01.c | aab6e9a471f4d3112cc56bc84fdfca1a69229045 | [] | no_license | PiBoxY/msp430ware | 81fb264c86ff1f68f711965b793aa58794ae2f00 | 7c96db00f97bbfd3119843e18ac895a54b4a6d39 | refs/heads/master | 2020-04-21T07:29:13.386144 | 2019-02-06T11:32:42 | 2019-02-06T11:32:42 | 169,394,007 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,895 | c | /* --COPYRIGHT--,BSD_EX
* Copyright (c) 2012, Texas Instruments Incorporated
* 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 c... | [
"admin@piboxy.com"
] | admin@piboxy.com |
a53f38f12ac1b77a3a9359e815bbd09cb9b4fc52 | 12d901db31520ca284ede5064199ebf2b9b7385e | /project.mod.c | 0366bc044b162e41beadc641d5468f69a64d1621 | [] | no_license | Alisher12398/SP_Project | 37c400d189df195250d590db32b527cfbd1f3f44 | 1c52e2352f76e4201d84eac4795a1745131f608c | refs/heads/master | 2020-04-27T19:58:25.331613 | 2019-05-11T07:44:40 | 2019-05-11T07:44:40 | 174,638,978 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 596 | c | #include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
MODULE_INFO(name, KBUILD_MODNAME);
__visible struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODU... | [
"Alisher12398@gmail.com"
] | Alisher12398@gmail.com |
488d80fd0dca3a4a80a435f3cc80005d2f7a1663 | d2c9f96953540ac904568136980006983534148a | /kernel/interupt/workqueue_test.c | ae88b29c1528c284102fa7a7621c5f3d1cb271d5 | [] | no_license | bbrui/datastructure | 9680df6befd02c146d2d0641fab80e008676d886 | 7ebbcc2e2f7eee8f83584b1b1cb7b30814c9243d | refs/heads/master | 2021-09-24T11:32:16.369466 | 2018-10-09T03:26:43 | 2018-10-09T03:26:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,450 | c | #include <linux/module.h>
#include <linux/init.h>
#include <linux/workqueue.h>
#include <linux/proc_fs.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
static struct workqueue_struct *queue = NULL;
static struct work_struct work;
static struct delayed_work test_dwq;
void delay_func(s... | [
"guozhengqian0825@126.com"
] | guozhengqian0825@126.com |
113432e3fdf167616fd85da2651117097e7d0be7 | ac362bb8969d647cd219430bc71c831d894e531c | /sys/compat/svr4_32/svr4_32_schedctl.c | d691767cd29f663bf9b2cc1033f93076e98fa0d3 | [] | no_license | noud/mouse-bsd-4.0.1 | efb3b16fcc872ab227e6bb651cf1e836796a0804 | 4c0a1e08df407a759afac2d6a98507df94f5f814 | refs/heads/master | 2023-02-24T23:42:54.060718 | 2020-08-16T20:10:53 | 2020-08-16T20:10:53 | 334,536,412 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,899 | c | /* $NetBSD: svr4_32_schedctl.c,v 1.3 2005/12/11 12:20:26 christos Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Dan McMahill.
*
* Redistribution and use in source and binary forms, with or with... | [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
7d9f1e0e53b59cc38503b614d6d266ba75bf463a | 1701297fb26c1ab4a050a79853ea4768e393c41a | /hexload.c | bd8eb80a1294a13d1c5ae9b0bf1d11d454752e07 | [] | no_license | slaeshjag/ihextools | 5760847e80553ba4a4dffc23cef28d19a730a042 | d64455c7e4d72f7d4988dc052b7139d342d3ed0f | refs/heads/master | 2021-05-04T11:54:00.663575 | 2016-09-11T14:41:06 | 2016-09-11T14:41:06 | 55,817,033 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,896 | c | /*
Copyright (c) 2016 Steven Arnow <s@rdw.se>
'hexload.c' - This file is part of ihextools
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software... | [
"s@rdw.se"
] | s@rdw.se |
1914f463508a55a93f214a58f54a74ffe37e835d | f5228d4314b6e495288afb6ca6388c4a2bf239f9 | /kwai-android-base/src/main/cpp/include/bionic/tls.h | 0d7fe9445c70a4f897262e9ec431c32a66fefe44 | [
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"BSD-2-Clause"
] | permissive | skingwl/KOOM | a98ce96a730e92e0aeb227d5b0a17747de758a26 | 0b3f4de52a29ddc3db8239aa46f8b6d3fd303da6 | refs/heads/master | 2023-07-24T15:46:46.730333 | 2021-08-05T03:20:24 | 2021-08-05T03:20:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,669 | h | /*
* Copyright (C) 2008 The Android Open Source Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, t... | [
"xueqiushi@kuaishou.com"
] | xueqiushi@kuaishou.com |
366d9b5219bf33c0fbdbbddf87c21418f36211b0 | 958488bc7f3c2044206e0358e56d7690b6ae696c | /c/link/link.c | b35353fddd7dec874500fdedc9647e7a1754586d | [] | no_license | possientis/Prog | a08eec1c1b121c2fd6c70a8ae89e2fbef952adb4 | d4b3debc37610a88e0dac3ac5914903604fd1d1f | refs/heads/master | 2023-08-17T09:15:17.723600 | 2023-08-11T12:32:59 | 2023-08-11T12:32:59 | 40,361,602 | 3 | 0 | null | 2023-03-27T05:53:58 | 2015-08-07T13:24:19 | Coq | UTF-8 | C | false | false | 6,637 | c | // link.c
#include "link.h"
#include "link_node.h"
#include <malloc.h>
#include <assert.h>
long Link_log(const char* message, const void* address){
static long memory_checksum = 0L;
if((message == NULL) && (address == NULL)) return memory_checksum;
assert(message != NULL);
assert(address != NULL);
//fprintf(... | [
"paul_ossientis@riseup.net"
] | paul_ossientis@riseup.net |
4f4666b278355315e592c850175867f57ecfa40f | dd94bcd2a693b6b346846505d626618e073ed5a0 | /ex07/cgi.c | ed27eace320a91675f029aab2a6554e6c119d40d | [] | no_license | brotheravocado/Lab4 | 35f9d44bf884461f2cd9f43083b55844b4830d30 | c5e828a58ca2aafff9d5c2b4169526af3828934e | refs/heads/master | 2023-01-18T16:10:32.550325 | 2020-12-08T10:31:59 | 2020-12-08T10:31:59 | 316,274,495 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,005 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <zconf.h>
#define PORT 3183
#define QLEN 10
#define BUFFER_SIZE 1024
void *handle(int csock);
void s_error(int csock);
void msg_get(int client_sock);
void msg_post(int client_sock);
int main(int argc, c... | [
"dbswl5920@gmail.com"
] | dbswl5920@gmail.com |
36fb14c4a6a8349c8d5ea7fddf430537bf5f9e4c | e6f39266af8f8528e70858e8dfba74f1606f5c2a | /day04/ex07/ft_find_next_prime.c | 55a4410a3adc5cbc0c22bb8b6d0b3ef8fd9beac4 | [] | no_license | ccu-an-b/Piscine_42 | 216a632eb5495de60b2c8f086e251c4be618661f | 5eb5f3a4902517b65c4ba5b6f5989a8461c4b6a9 | refs/heads/master | 2020-03-09T11:07:56.070222 | 2018-04-13T07:49:47 | 2018-04-13T07:49:47 | 128,753,840 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,282 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_find_next_prime.c :+: :+: :+: ... | [
"ccu-an-b@student.42.fr"
] | ccu-an-b@student.42.fr |
9f9524ae68a2f69d4617bcf2b6fc14fb32eec3d6 | 03314774e82d608dad2750b808b9065e5bddca1d | /4c/lab4c-805167986/lab4c_tls.c | 2434db560d9668a5591f25c30bf565391840ed7f | [] | no_license | randallwc/CS111 | a4d5979b805df96d9258079081a03ff03f55f640 | d305968ba3aadb4a8259dfd59d7779245e98179c | refs/heads/main | 2023-02-04T09:08:50.183783 | 2020-12-20T21:49:49 | 2020-12-20T21:49:49 | 308,837,196 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,506 | c | // NAME: William Randall
// EMAIL: wrandall1000@gmail.com
// ID: 805167986
// lab4c_tls.c
#include <mraa.h> //aio and gpio
#include <stdio.h> //fprintf
#include <stdlib.h> //exit // rand
#include <string.h> //strerror //atoi
#include <getopt.h> //getopt
#include <time.h> //timespec //clock_gettime
#include <poll.h> //... | [
"wrandall1000@gmail.com"
] | wrandall1000@gmail.com |
fdb91a751ae65958b765ade0c0e1f8903f13cc91 | c3e386bb4867b7bbd28eaef0af6c100d7c3a8c58 | /a2-synchrotron-contiki/cpu/avr/radio/rf230/hal.c | 6e295f3049d360c09561c37741de98d67a7e291a | [
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license"
] | permissive | iot-chalmers/a2-synchrotron | 2b1977227c937863f0027ad0b4a31c2be538d8f0 | 1224860ff62db2e91af5ed0c6ab2da7ee66295d8 | refs/heads/cooja-main | 2021-01-01T16:58:31.204870 | 2017-11-08T10:51:30 | 2017-11-08T10:51:30 | 97,966,364 | 10 | 7 | BSD-3-Clause | 2019-06-18T12:24:01 | 2017-07-21T16:15:20 | C | UTF-8 | C | false | false | 23,683 | c | /* Copyright (c) 2008, Swedish Institute of Computer Science
* All rights reserved.
*
* Additional fixes for AVR contributed by:
*
* Colin O'Flynn coflynn@newae.com
* Eric Gnoske egnoske@gmail.com
* Blake Leverett bleverett@gmail.com
* Mike Vidales mavida404@gmail.com
* Kevin Brown kbrown3@uccs.edu
* Nat... | [
"beshr@chalmers.se"
] | beshr@chalmers.se |
24affaefa5848e42dd045242111fed74b295cbb0 | 93cd8e55b2637db18caab5e7ef3a439b4c8e9955 | /C语言刷题课/C语言刷题第六讲/C语言刷题第六讲/BC52-衡量人体胖瘦程度.c | 891545f03f7970b0d59e3d4ec3dbb7cf78cfca10 | [] | no_license | jialebihaitao/C | f4814938e68fb949563c44140c8f4ae8fc093791 | ce7565851daf2f857ae5761457f1b048feaaa35b | refs/heads/master | 2023-03-21T19:58:12.740759 | 2021-03-20T11:58:51 | 2021-03-20T11:58:51 | 324,665,359 | 0 | 0 | null | 2020-12-28T03:31:23 | 2020-12-27T01:28:38 | C | GB18030 | C | false | false | 1,072 | c | #define _CRT_SECURE_NO_WARNINGS
//题目描述
//在计算BMI(BodyMassIndex ,身体质量指数)的案例基础上,判断人体胖瘦程度。BMI中国标准如下表所示。
//
//
//输入描述:
//多组输入,每一行包括两个整数,用空格隔开,分别为体重(公斤)和身高(厘米)。
//输出描述:
//针对每行输入,输出为一行,人体胖瘦程度,即分类。
//示例1
//输入
//80 170
//60 170
//90 160
//50 185
//输出
//Overweight
//Normal
//Obese
//Underweight
#include<std... | [
"13555089837@163.com"
] | 13555089837@163.com |
fd8e664d7af5e30ba20210a6d89816922eccb56b | 42485ac360220501f714f2b997540a860b03d179 | /950_672_2053_20190531/NA51023_BSP/uitron/ThirdParty/eCos/include/dhcp.h | f48e700a557be8d0fcf88f8b2002712f49e653ab | [] | no_license | nikitos1550/some_novatek_sdk | 2a76a37c1dd32b69e358e1e4646f9bea7e43e846 | 1a4b7af327d4fdaa9527df7225a001d5009e52cb | refs/heads/master | 2023-02-22T17:08:49.576697 | 2021-01-17T19:52:59 | 2021-01-17T19:52:59 | 330,468,587 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,240 | h | #ifndef CYGONCE_NET_TCPIP_DHCP_H
#define CYGONCE_NET_TCPIP_DHCP_H
//==========================================================================
//
// include/dhcp.h
//
// DHCP protocol support
//
//==========================================================================
//####BSDCOPYRIGHTBEGIN####
//
// ---... | [
"XXXX@XX.com"
] | XXXX@XX.com |
c7a96be6e78121ca2e93a316e36d213011569ee2 | 077d186bc928cc74b2ce16490f3835762409ac43 | /DATA STRUCTURE/Source code/More programs/Chapter05/CH5PR1.C | 4605351cddffaab1a7fc6af0c1b98e65316c4558 | [] | no_license | suvaw/Datastructure | 52e21ec6d2de4dd113c502b508f453a2aa90ffdb | 648d2c55936b58df3dc96679018ac2dbaceebabf | refs/heads/main | 2022-12-26T02:34:10.045434 | 2020-10-04T19:07:34 | 2020-10-04T19:07:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,975 | c | /* CH5PR1.C: Program to create a 3-tuple from a given matrix */
#include <stdio.h>
#include <conio.h>
#include <alloc.h>
#define MAX1 3
#define MAX2 3
struct sparse
{
int *sp ;
int row ;
} ;
void initsparse ( struct sparse * ) ;
void create_array ( struct sparse * ) ;
void display ( struct sparse ) ;
int count ( ... | [
"suvadipmandal.1995@gmail.com"
] | suvadipmandal.1995@gmail.com |
a79d8e45e36008da91a41b604b4bc28d0f1ff288 | a280aa9ac69d3834dc00219e9a4ba07996dfb4dd | /regularexpress/home/weilaidb/software/ffmpeg-3.0.2/compat/avisynth/avs/capi.h | 00c5ce2368ff415d49163d12af6bc72f8a505114 | [] | no_license | weilaidb/PythonExample | b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466 | 798bf1bdfdf7594f528788c4df02f79f0f7827ce | refs/heads/master | 2021-01-12T13:56:19.346041 | 2017-07-22T16:30:33 | 2017-07-22T16:30:33 | 68,925,741 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 462 | h | #define AVS_CAPI_H
# define AVSC_CC __cdecl
# define AVSC_CC __stdcall
#define AVSC_INLINE static __inline
# define AVSC_EXPORT EXTERN_C
# define AVSC_API(ret, name) EXTERN_C __declspec(dllexport) ret AVSC_CC name
# define AVSC_EXPORT EXTERN_C __declspec(dllexport)
# ifndef AVSC_NO_DECLSPEC
# define AVSC_API(r... | [
"weilaidb@localhost.localdomain"
] | weilaidb@localhost.localdomain |
53979e68e5e82cde8b4623e6dfb7b0b994f04fea | bd53fed67c9860e3b7d778afc135ac554a045104 | /2021.2.22/2021.2.21_算法/哈希(散列表).c | 4ae92f42a528323954d676cf43d2f6298603feea | [] | no_license | SuperCoder1999/BeginnerTrainingOfProgramming | 867d8323dce9ae9bb33e8e9062ae2cdc34732192 | 89f48da3055e766f01324d0793db93678b2768a9 | refs/heads/master | 2023-04-08T09:52:39.655826 | 2021-04-17T14:32:26 | 2021-04-17T14:32:26 | 357,955,990 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 922 | c | #include"Head.h"
// *******************
// 暂且写不出哈希算法,有一道题有哈希算法的影子
//// 牛客网上传有错误,回头再看
//// 使用哈希算法可以按照想要的顺序取排列数组,这题天然利用了下标-----学名-桶排列
//int main()
//{
// int n = 0;
// scanf("%d", &n);
// int arr[100000] = { 0 };
// int i = 0;
// // 输入数据的时候就开始用哈希算法了
// int tmp = 0; // 暂存区,是下标也是输入的值
// int max = 0;// 记录最大下标,可以省去不必要的循环
//... | [
"331150871@qq.com"
] | 331150871@qq.com |
1eae656909ba3303545634a56e5bec1e18d21743 | 6f481ddeff88307035638093fb7511ce6932ab1b | /BSP/TIM2.c | 6aa374c4bcff34f1e784e6411e6db36a50d93838 | [] | no_license | dammstanger/MicroQ_RCV1 | c488804e3be406005a215c98ca5b84a5a666f0c1 | e032f1e06c2b9954e7aeada836ad1c31860620fe | refs/heads/master | 2021-01-12T01:02:21.696854 | 2017-01-31T01:44:47 | 2017-01-31T01:44:47 | 78,333,402 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 2,575 | c |
#include "TIM2.h"
/*
* 函数名:TIM2_NVIC_Configuration
* 描述 :TIM2中断优先级配置
* 输入 :无
* 输出 :无
*/
void TIM2_NVIC_Configuration(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn;
NVIC_InitStr... | [
"xiaodeng6185@gmail.com"
] | xiaodeng6185@gmail.com |
e94495a392997ff7a648971677024398aad1aee3 | 6fd6bdcc284218883dea1f649daaa26b6529bc21 | /source/Engine/ResourceTypes/ModelFormats/COLLADA.h | b899f6fba623ded82cce89327d0c6e538e239a13 | [
"Unlicense"
] | permissive | aknetk/HatchGameEngine | bd7d38807e89ac33a58384f0f254ebdbfbebec54 | 364ee32bda8b469d51c3eaab952eb6e2bda069cf | refs/heads/master | 2022-09-25T06:20:57.789609 | 2022-09-16T03:42:49 | 2022-09-16T03:42:49 | 241,234,254 | 26 | 14 | Unlicense | 2023-08-30T21:04:57 | 2020-02-18T00:05:23 | C | UTF-8 | C | false | false | 2,985 | h | /*
Implemented by Jimita
https://github.com/Jimita
*/
#ifndef COLLADAMODEL_H
#define COLLADAMODEL_H
#include <Engine/Includes/Standard.h>
#include <Engine/Rendering/3D.h>
#include <Engine/ResourceTypes/IModel.h>
typedef enum {
DAE_X_UP,
DAE_Y_UP,
DAE_Z_UP,
} ColladaAssetAxis;
typed... | [
"aurumdude@gmail.com"
] | aurumdude@gmail.com |
e756cd2bfd08ff71b2696176aacf31d9cbd51dba | 02b79c5fea852ca77d82305efc0e000dca87a83b | /srcs/output/ft_putstr_fd.c | 7cfb02900a698f8531ee0ecbe0b146fd83e3cee0 | [] | no_license | mathyba/ft_libft | 76fe02dbe9b62d3406e62eaeebaca6a6e692e834 | b18fe7ab6c7bce6956877c62238fac9d904901a3 | refs/heads/master | 2020-04-27T17:25:38.485355 | 2019-03-10T15:24:43 | 2019-03-10T15:24:43 | 174,518,606 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,144 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: ... | [
"emuck@protonmail.com"
] | emuck@protonmail.com |
e05a51edc198d725a66703f02ddee5fba02dedcd | 75dd85b5eccaf549c836d1faea0e4df805d79f76 | /ft_check_tetr.c | 98f4d0f32935fa6f699aa4314f9bfe22315d7ddd | [] | no_license | mirexcool/fillit | c97d833e28994d1c0d290fffbe7f9b7883f89ea7 | a99ff62240dbe89dcb3d62bd89f52c37159eff56 | refs/heads/master | 2021-01-20T12:37:37.339617 | 2017-05-05T14:41:37 | 2017-05-05T14:41:37 | 90,385,586 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,878 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_check_tetr.c :+: :+: :+: ... | [
"yyefimov@e1r5p17.unit.ua"
] | yyefimov@e1r5p17.unit.ua |
9bb832dba31cbf26bf8e86c0b02b9d5f7df701ba | 9a4207e71f54a90b2745a5d4dbcd8aef218aeec3 | /include/runtime.h | d3ddeae45b29649150b78d5c28d992f49ea0b4a2 | [] | no_license | magicbuffer/ncrypt-hook | 9a1d0273bd70e705c626bf931ed68378b49f0dbe | b647696ddd36569343208d45731582b042c8b625 | refs/heads/master | 2022-11-24T02:57:03.746905 | 2020-08-04T19:41:33 | 2020-08-04T19:41:33 | 285,045,243 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 310 | h | #pragma once
#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>
VOID __chkstk(VOID);
PVOID memset(PVOID p, INT v, SIZE_T s);
SIZE_T strlen(LPCSTR str);
LPSTR itoa(INT value, LPSTR result, INT base);
LPSTR strcat(LPSTR dst, LPCSTR src);
LPCSTR bin2hex(const PUCHAR input, const SIZE_T size, HANDLE heap); | [
"d@magicbuffer.net"
] | d@magicbuffer.net |
01101b6695038124f5c5cac3ec2c07b949955742 | f72688cc9d2ceb3fe9b086e56292ce271d520e91 | /xv6-readcount/defs.h | 0f0853a95c9f7f0720f39c093b46067d06793004 | [
"MIT"
] | permissive | JokuW/ostep-palautus | 0954f2800a4e2b973f405267491832840d43aa44 | 05d89cbcb6fcff0676681cbe1688fc105902f325 | refs/heads/main | 2023-04-17T06:12:10.815291 | 2021-04-25T18:19:37 | 2021-04-25T18:19:37 | 361,504,804 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,572 | h | struct buf;
struct context;
struct file;
struct inode;
struct pipe;
struct proc;
struct rtcdate;
struct spinlock;
struct sleeplock;
struct stat;
struct superblock;
// bio.c
void binit(void);
struct buf* bread(uint, uint);
void brelse(struct buf*);
void bwrite(struct buf*);
// cons... | [
"noreply@github.com"
] | JokuW.noreply@github.com |
585d4817ed280c08851579d085d342cd191dbf5a | 04c8d8da9cebc13513c1b9c7658707ecadfa0ed3 | /Roll a Ball/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_EqualityComparer_1_gen_102MethodDeclarations.h | f245e37c4403634138caa15632296cfeb331a0ec | [] | no_license | fkieyhzen/RollABall | ed9ef9e93f3cfaecd2be10013797e97e9c1e479e | f083b660966094939ed2b5d2028e31bb4e86a67e | refs/heads/master | 2023-03-19T18:19:11.437779 | 2015-06-08T15:27:45 | 2015-06-08T15:27:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,688 | h | #pragma once
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.IDictionary`2<System.String,System.Double>>
struct EqualityComparer_1_t7447;
// System.Object
struct Object_t;
// System.Collections.Generic.IDictionary`2<System.String,System.Double>
struct IDictionary_2_t1815;
// System.Void S... | [
"patrick@beetheswarm"
] | patrick@beetheswarm |
78adc58aed01248ef8ac7863ef819d4ac4a51132 | bef5bd3b91af9f3a2340b697d8d752557f39d8d0 | /src/libs/dsp/VCU/v2_10_00_00/examples/crc/2837x_vcu2_crc_32/main.c | bf1bed28ed2c60011b16bf85c8e33b58b6310565 | [
"MIT"
] | permissive | Furkanprlk/DSP_F28335_Examples | c024561fac4481baca58bf2d5fe0b3e9a8b49507 | 3b480c15e3eb0e1d5898474f283beaec6d986961 | refs/heads/main | 2023-07-01T08:44:49.793346 | 2021-08-09T20:59:01 | 2021-08-09T20:59:01 | 356,860,168 | 8 | 1 | null | null | null | null | UTF-8 | C | false | false | 12,875 | c | //#############################################################################
//! \file /2837x_vcu2_crc_32/main.c
//!
//! \brief Demo code for the 32-bit CRC routine(VCU and C)
//!
//! \date May 21, 2013
//!
//! This example shows how to
//! -# use the vcu2 supported 32-bit CRC routines from the library
//! -# us... | [
"furkanprlk0@gmail.com"
] | furkanprlk0@gmail.com |
2ac0dd62b62e726915867686e05e8c9db7d0399f | efb24b67becbc98caafcdd7d589432376bea15e9 | /HAL/src/stm32f4xx_hal_sd.c | c4ebdf0d56917b47d83c5ee5401a1c9517f3f05c | [] | no_license | osannolik/RTOS-Cortex-M4 | fc7eabae9a9599ebeb82407c7304adcf387281d6 | 94b34be0211382819890adb0bf74b887b04ac2b2 | refs/heads/master | 2021-01-12T17:47:01.948245 | 2016-10-22T15:22:48 | 2016-10-22T15:22:48 | 69,390,263 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 111,764 | c | /**
******************************************************************************
* @file stm32f4xx_hal_sd.c
* @author MCD Application Team
* @version V1.3.0
* @date 09-March-2015
* @brief SD card HAL module driver.
* This file provides firmware functions to manage the following ... | [
"jonas@godtycklig.se"
] | jonas@godtycklig.se |
c16fcc7fccc43707bab467779bdb09dd3f5c1dcb | e5fc59a4b92aff128de78c2cc96c425fdbdd5340 | /libc/winsup/cygwin/math/cbrtl.c | 95074e9646c23629f7dacd4b2efe5431ad7f0b45 | [
"MIT",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"BSD-2-Clause-Views",
"GPL-2.0-or-later",
"GCC-exception-2.0",
"LicenseRef-scancode-gcc-compiler-exception-2.0",
"BSD-3-Clause",
"HP-1986",
"LicenseRef-scancode-newlib-historical",
"BSD-2-Clause",
"SunPro",
"LicenseRef-scancode-nilsson-historical",... | permissive | virtines/wasp | 2ad58fe6628b0655e90a2d6dde80694fafce4efa | 0ddb5143057d7e6aaa3a3f2dfdebcc384c15c2fe | refs/heads/main | 2023-05-23T23:29:50.213465 | 2023-03-31T17:43:23 | 2023-03-31T17:43:23 | 415,649,935 | 12 | 5 | MIT | 2023-03-31T17:43:25 | 2021-10-10T17:10:12 | C | UTF-8 | C | false | false | 1,639 | c | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
static const long double CBRT2 = 1.2599210498948731647672L;
static const long double... | [
"ncw@u.northwestern.edu"
] | ncw@u.northwestern.edu |
f9a4a9318426d1ac482ed14a529c8c8d11d78b37 | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/WINDOWS/EP/FREECELL/FREECELL.C | 9a5b7c24fe03f87b9fa1076f35c620ef28a463ad | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,756 | c | /****************************************************************************
Freecell.c
June 91, JimH initial code
Oct 91, JimH port to Win32
Main source module for Windows Free Cell.
Contains WinMain, initialization routines, and MainWndProc.
Design notes:
Note that although this program... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
1ca9cce42d5499c172a7b1f3bc4dcce1d29a4a28 | e39cdf2d8bd9af9c6fb1d8cb436b24275a18f288 | /vc_lib_src/src/wctrans.c | b60d155dad5902af28595525476509d2178c048c | [] | no_license | IRON-HAN/learn_c | 5977d32355b694f3196d1bcf6457aa74381aa64e | 0d17f80944dd81a106d2d9425707419b122c4e36 | refs/heads/master | 2021-05-30T03:49:19.717917 | 2015-08-09T08:18:16 | 2015-08-09T08:18:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,019 | c | /* towctrans/wctrans functions for Microsoft */
#include <string.h>
#include <ctype.h>
#include <wctype.h>
#ifndef _YVALS
#include <yvals.h>
#endif
#pragma warning(disable:4244)
#ifndef _WCTYPE_T_DEFINED
typedef wchar_t wint_t;
typedef wchar_t wctype_t;
#endif
typedef wchar_t wctrans_t;
_C_STD_BEGIN
static const s... | [
"jason_yao@htc.com"
] | jason_yao@htc.com |
097c295b92768e2e98597f80a7022150c28a999b | 95940698571e5b9d14f854f9adcb4e770ed88772 | /MQTT-SN-Client/Sources/Events.c | 9181c224f4091f9ce48d39cb2db830f8062064af | [] | no_license | juliencombattelli/iSerre | 2c97596e64eefc1e74371736e01c7f361ddc0f4b | ec251e5361f0ac271719c22dafe709e148658a7f | refs/heads/master | 2021-09-20T16:00:56.351338 | 2017-01-05T23:05:50 | 2018-08-11T15:31:45 | 71,727,281 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,633 | c | /* ###################################################################
** Filename : Events.c
** Project : MQTT-SN
** Processor : MKL26Z128VLH4
** Component : Events
** Version : Driver 01.00
** Compiler : GNU C Compiler
** Date/Time : 2016-11-01, 20:24, # CodeGen:... | [
"julien.combattelli@hotmail.com"
] | julien.combattelli@hotmail.com |
04eff189e0f4f51f3edccd7a07138d91cd23ebfb | c914e3995dbdbf349e56815b826b56af1e7e344c | /funpractice.c | 9afe1ecfe812ae45d0281be3d88943460b6622cf | [] | no_license | Inkybo/C-Files | d0ac2ffd01d801073c9f5b7a252ae1dcdacb0a4a | 02a9a18b942a342dcca5b7f9830af791c1137bac | refs/heads/master | 2021-09-06T06:22:47.582493 | 2018-02-03T04:54:34 | 2018-02-03T04:54:34 | 106,343,481 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 921 | c | #include <stdio.h>
void dashes(int many);
int Add(int x, int y);
int mult(int x, int y);
float FAvg(int x, int y);
int Big(int x, int y);
int main()
{
int n1 = 8;
int n2 = 6;
int total;
int result;
float a;
dashes(30);
total = Add(n1, n2);
printf("Sum is %d\n", total);
dashes(30);
result = mult(n1, n2);
p... | [
"inkybo@gmail.com"
] | inkybo@gmail.com |
4a4e1073871b631cca9a1bbdc13c90161562fc78 | 1420f97d40ae9dc9baaf45b24cfd269cf7c25e22 | /lspfinal/2008final/client.c | 436c67c23c5e9585ee0a7644d4aab5b56aa2d4a1 | [] | no_license | Siamw/linux_C | 4bd678807ce96f4244c817bb3e608437e1154ef0 | 8dfb3329c2ff5b4b599e1de7cfedb0e156af2955 | refs/heads/master | 2020-04-17T02:25:57.065119 | 2019-01-17T00:48:49 | 2019-01-17T00:48:49 | 166,133,906 | 0 | 0 | null | null | null | null | UHC | C | false | false | 1,623 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include "tcp.h"
main(int argc, char *argv[])
{
int sockfd, n;
struct sockaddr_in servAddr;
struct hostent *hp;... | [
"hjw5167@gmail.com"
] | hjw5167@gmail.com |
0e3094cfb446c0c350508700ffea9a8a399a3ed6 | 048f08c10874702c2ee825a4504b83b2ff75c91d | /Système d'Exploitation Centralisés/TP/TP2/TinyShell/tinyshell.c | 46c1d891a36fe31d7aaa8b5fdd93de0f206b47b3 | [] | no_license | allone-jab/cours_m1 | deb637621e6296e24c169c0d60096b838c7b709d | 0c616e40e1c0c646185c0d060f5113a9e9ae0571 | refs/heads/master | 2020-09-28T06:21:36.292746 | 2019-12-08T17:51:42 | 2019-12-08T17:51:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,074 | c | #include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 64
#define ALLOC_FAILURE 1
char* readLine() {
int position = 0;
int buffer_size = MAX;
char* buffer = malloc(sizeof(char) * buffer_size);
char c;
if(!buffer) {
fprintf(stderr, "Allocation error\n");... | [
"todelattre@gmail.com"
] | todelattre@gmail.com |
25f513b3d312c459e7ba77f3041ef93dbf03fa95 | b8c748fe53a1b39c2d2d92b2054495ef0e1ffa73 | /hello.c | d7e0c1a759d44aa008c77153625d181e0b4f5075 | [] | no_license | khyiao0829/lecture-2019-opensource | 0df6b6da1a780490dd45483511c82e3c05c308ab | 30060657f83f5d963409301c5cf9b1a0743b6755 | refs/heads/master | 2020-08-03T13:19:21.084750 | 2019-09-30T03:52:04 | 2019-09-30T03:52:04 | 211,765,779 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 82 | c | #include <stdio.h>
int main (void)
{
printf("hello wolrd \n");
return 0;
}
| [
"iao0829@naver.com"
] | iao0829@naver.com |
77cde4f88815b08caf5aa5cbdc1a112553a69b76 | b78b290827811c8d65011cb4097733eab3482043 | /openresty-php5.6/opt/cphalcon/ext/phalcon/cache/frontend/output.zep.c | 52736f946ed21e585eda8e59e56d91e760707365 | [
"BSD-3-Clause"
] | permissive | lilclimate/Docker-Webservice | 60112997b5a02e8a0cfe130bcd2311bbe8829e14 | f12c3234b427ca1e2c66634e5b5fb81a8807c613 | refs/heads/master | 2021-01-11T17:22:28.118343 | 2017-04-09T02:30:10 | 2017-04-09T02:30:10 | 79,767,174 | 1 | 1 | null | null | null | null | UTF-8 | C | false | true | 5,133 | c |
#ifdef HAVE_CONFIG_H
#include "../../../ext_config.h"
#endif
#include <php.h>
#include "../../../php_ext.h"
#include "../../../ext.h"
#include <Zend/zend_operators.h>
#include <Zend/zend_exceptions.h>
#include <Zend/zend_interfaces.h>
#include "kernel/main.h"
#include "kernel/object.h"
#include "kernel/memory.h"
#i... | [
"zhangyuanxi@meizu.com"
] | zhangyuanxi@meizu.com |
ccf20f15647fe312bd644b5ccd9b910082248255 | 518b426a2db7f1d618719d364c0e08a3f2de87dd | /leetcode/066.plus_one.c | 2ab59e4a6d8ccdf8dc78d5cf324ed2bbab43f3b9 | [] | no_license | shaodan/coder | e8103fde7a567556eb5e2faec5938c15d5dcb9cb | 4590f5652bb1f1c86fc0722bb5c09fda76212a84 | refs/heads/master | 2020-03-30T19:52:00.639052 | 2019-10-26T15:17:22 | 2019-10-26T15:18:02 | 151,562,658 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,137 | c | /**
* Return an array of size *returnSize.
* Note: The returned array must be malloced, assume caller calls free().
*/
int* plusOne(int* digits, int digitsSize, int* returnSize) {
int* result = NULL;
int i=digitsSize-1,j;
if (digits[i]==9) {
do {
i--;
} while(i>=0 && digits[i]... | [
"shaodan.cn@gmail.com"
] | shaodan.cn@gmail.com |
43debb659d8380bc721abbcd5018d166d61223ee | 98117bcf259f7f062c184ceb61ea06708e7631ce | /photo-example/gen-cpp/send_photo_types.h | 4faae40fc9e4946f4f02ba14f0fdc1ad524110a4 | [] | no_license | ZimingLu/thrift_image_project | bef9c491cd92966e1f537611b9a03a09ab7ed78f | 7a4f334f256a2b0856ff6e5cbc15b4c684b0c825 | refs/heads/master | 2021-04-09T15:17:22.563007 | 2018-03-20T09:00:15 | 2018-03-20T09:00:15 | 125,713,843 | 0 | 0 | null | null | null | null | UTF-8 | C | false | true | 429 | h | /**
* Autogenerated by Thrift Compiler (0.11.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#ifndef send_photo_TYPES_H
#define send_photo_TYPES_H
#include <iosfwd>
#include <thrift/Thrift.h>
#include <thrift/TApplicationException.h>
#include <thrift/TBase.h>
#include <th... | [
"luyongchen@luyongchendeMacBook-Pro.local"
] | luyongchen@luyongchendeMacBook-Pro.local |
9b9bd2eb7743ca875a1ecc0302947c9cc65b98ae | 00944b473501ff192f2e08f8a2b17cc49b675789 | /Beginner/1.c | 122a7c027e78bcc8d38d91056037e5fb51a92902 | [] | no_license | tejasrao/Data-Structures-and-Algorithms | 24694d3a7b5e2736175aa42740118031af908a31 | b6b0405983367c52dc06b374d79052a2ed61f6b1 | refs/heads/master | 2020-05-31T23:35:11.819260 | 2019-06-06T08:16:58 | 2019-06-06T08:16:58 | 190,542,055 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,564 | c | #include <stdio.h>
#include <stdlib.h>
const int ROWS = 100;
const int COLS = 100;
void printMatrix(int mat[ROWS][COLS], int r, int c) {
int i, j;
printf("\n");
for (i = 0; i < r; i++) {
for (j = 0; j < c; j++) {
printf("%d\t", mat[i][j]);
}
printf("\n");
... | [
"tejasraocktl@gmail.com"
] | tejasraocktl@gmail.com |
0cde5fe459817995b802cb83bff1e6bcb49bf79d | e784cc4c0fe6d17cc98501805d99e7716c808d18 | /libft/ft_lstnew.c | 55cfbab904f90097cb0963e6a88fcc1c5fcf15a6 | [] | no_license | vlytvyne/Get_Next_Line | e665ba74fabcd80721ae1ee0b1e0a286f138abb8 | cde0e47bdb096e00a17fe0a0c0349ab1a5618bb5 | refs/heads/master | 2020-04-06T11:18:48.319519 | 2019-02-22T20:12:59 | 2019-02-22T20:12:59 | 157,412,070 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,402 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: ... | [
"vlytvyne@e2r12p11.unit.ua"
] | vlytvyne@e2r12p11.unit.ua |
2b1bd24a441ba1cf45fdf7d7bb87d298912b9e73 | 94d9afe4bbf825afb12ac6db129a30dd73b69fed | /STM32F10x_FWLib/inc/stm32f10x_sdio.h | 4ce32f7933782370d33f66a176805011c5082c6d | [] | no_license | vell001/CLionSTM32Demo | 563337d807d87aae98c2876c3b2053eb57df6876 | fc60d0a3503f23e1d6448ac40f729e5bc08b2fbb | refs/heads/master | 2023-08-19T00:22:24.930179 | 2021-09-20T10:36:12 | 2021-09-20T10:36:12 | 408,399,759 | 10 | 0 | null | null | null | null | UTF-8 | C | false | false | 21,335 | h | /**
******************************************************************************
* @file stm32f10x_sdio.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the SDIO firmware
* library.
*****************... | [
"vell001@qq.com"
] | vell001@qq.com |
4ec94bc3c62831a9e2e38dc6873adfe7dfef659a | 56fd405ac1356c82adf6e3af2c4168d290d3d4ca | /third_party/nRF5Thread/examples/thread/ncp/usb/pca10056/blank/config/sdk_config.h | 2599c5e306be5ea185934558eb5382af56c2d628 | [] | no_license | ghsecuritylab/nrf_iot | 26038dcc379ad46b6b178ba38c1a1bb2dd6fe1d3 | 4089cbcbfb40180c9998eae1a5d3ece87c2718b6 | refs/heads/master | 2021-02-28T20:38:57.528201 | 2019-08-24T10:22:15 | 2019-08-24T10:22:15 | 245,731,072 | 0 | 0 | null | 2020-03-08T01:08:58 | 2020-03-08T01:08:58 | null | UTF-8 | C | false | false | 94,237 | 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 no... | [
"robokishan.blogspot@gmail.com"
] | robokishan.blogspot@gmail.com |
2460bfa3044b402132a2c128101531014f1a64d1 | c65934c14103baa18ca8c1dab2837837bed7fd39 | /allocator.h | 85680b9df7972b863d97d15ab5d887eaff907134 | [] | no_license | pelekoudasq/MemoryAllocator | 849ba305540b5c1087e376f8d4e6dc53a82cfb07 | 2b7c1c923ec92bd706c10c6d6bc5f13aa8ff5e27 | refs/heads/master | 2020-03-18T04:41:56.035707 | 2018-12-23T12:23:12 | 2018-12-23T12:23:12 | 134,301,211 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 576 | h | //#include "fns.c"
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
//Domi gia bitmpa klp
typedef struct list {
char *bitmap;
void *selida;
struct list *next;
} Domi;
//Hash table/ hash list
typedef struct hashlist{
Domi * NodeDomis;
int klasi;
struct hashlist *next;
}hashlist;
typedef hashl... | [
"peleioannis@gmail.com"
] | peleioannis@gmail.com |
31e8f228a2fbe447ec4132805b055217cd618e58 | bc975ffd5698fa8f1d52b85aa739089d0ce0833a | /SevSegNums.h | 8d972c42fec98342c74f2666522d4c922d433451 | [] | no_license | jason1813/BUBattle | b665593d034ad9488f3760fe394e651a1dd5673b | 74fbf5da8db74a1c5cd8739f119d894bf69d615e | refs/heads/master | 2021-09-09T21:58:54.103876 | 2018-03-17T02:50:55 | 2018-03-17T02:50:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 95 | h |
#include "Arduino.h"
typedef void (*num_func) (int seg[]);
extern num_func displayNumber[];
| [
"jmmorris2@mail.bradley.edu"
] | jmmorris2@mail.bradley.edu |
342016dd97623afe537317b9aab9468b63534b48 | abde200124866bff5be792896728b1b78228f8af | /0x07-pointers_arrays_strings/9-set_string.c | 6f7feadf2910c63b1561a37e688140cbf1e9715d | [] | no_license | andresgfranco/holbertonschool-low_level_programming | 0c6055713f4200a080492abd671d0567eb819ad2 | 001fe4f47887c29ee3ae57f81f2990a8d9e9aef5 | refs/heads/master | 2023-04-16T23:51:14.138302 | 2021-04-21T02:20:33 | 2021-04-21T02:20:33 | 296,100,325 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 196 | c | #include "holberton.h"
/**
* set_string - sets de value of a pointer to a char
* @s: Double pointer
* @to: Simple pointer
* Return: void
**/
void set_string(char **s, char *to)
{
*s = to;
}
| [
"andresgfranco0@gmail.com"
] | andresgfranco0@gmail.com |
b1e8a5ed390c3c28edc35b990894e4385c2e6b1f | 7a3ffcc9e593ddf817d630298f8a60f821099c0a | /BEPiD/BepidAulas/aula07/Aula07Genealogica/Aula07Genealogica/main.c | 2717b7e4c07660968f9fcba59363c6b41fca4179 | [] | no_license | DaniloBarros/Studies | 51d09f32804dd5642bb4c65c5154d0753ee20151 | 6289db9bd71ddd043988afaceffb1712c019bfea | refs/heads/master | 2016-08-13T01:18:53.664253 | 2016-03-18T22:55:12 | 2016-03-18T22:55:12 | 54,225,176 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,776 | c | //
// main.c
// Aula07Genealogica
//
// Created by Danilo Barros Mendes on 2/19/15.
// Copyright (c) 2015 Danilo Barros Mendes. All rights reserved.
//
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
typedef struct Pessoa{
char *nome;
char *dataNascimento;
struct Pessoa *mae;
struct Pess... | [
"DaniloBarros@Danilos-MacBook-Pro.local"
] | DaniloBarros@Danilos-MacBook-Pro.local |
db2d56def142bf0222f215f7604f7500500f442f | 6d2e1a0b724f4a9f0f54c5295f99d7a0985dfcde | /ansfltr/nt/request.c | 4b211d57f6af88a5133ee9b9b65ef08eace5dd29 | [] | no_license | layerfsd/ndisrd | 8f790257e84d3b76f54db2d51ddc513eb58e0517 | 1ddd9642495cac61bcf4973548adf602f61ba3fd | refs/heads/master | 2023-08-26T14:35:06.850190 | 2021-10-26T16:57:09 | 2021-10-26T16:57:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,112 | c | /*
* Copyright 2001-2021 ansnap@sina.com
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This pro... | [
"john.song@ucloud.cn"
] | john.song@ucloud.cn |
734d9ad3cefad95053885a0a6a676ebc6a2c7341 | 29ef789155feca970274920265bf3e1e57cefd9a | /variable.c | 0d8f98af2fedc77e3dd9f72518c1999d2407f1f4 | [] | no_license | Taraldinn/browser | 0d1c0ef6367591f7a35af1396874d77949eafb99 | e2fc2a0ed53801eb90f3adcdc3afe7ab2c3ef9f3 | refs/heads/main | 2023-03-23T02:16:06.184234 | 2021-03-22T19:45:35 | 2021-03-22T19:45:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 455 | c | #include <stdio.h>
int main() {
int a;
a=1000;
printf("value of a is %d\n",a);
a=-21000;
printf("value of a is %d\n",a);
a=10000000;
printf("value of a is %d\n ",a);
a=-10000000;
printf("value of a is %d\n",a);
a=100020004000503... | [
"59772487+programmer-Quazi@users.noreply.github.com"
] | 59772487+programmer-Quazi@users.noreply.github.com |
4ac58a2a755d9a4bba8123ae4b0221d3fe3e0f52 | 5edab72e1d3d44d082d4f2bbd26e36ba467371ca | /test/eval/fixnum.c | 7ff40c255c0899b655bd4d84112cbc64b839a283 | [
"MIT"
] | permissive | alexandream/nuvm | 2345195095b3c04139994fae593aedeb58bf56b7 | 7bf163b4a4c584d146e87a377b7e6e76d3d576d4 | refs/heads/master | 2020-06-04T19:38:42.879033 | 2018-06-28T17:55:24 | 2018-06-28T17:55:24 | 19,641,976 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,521 | c | #include <stdlib.h>
#include "../test.h"
#include "common/errors.h"
#include "eval/eval.h"
#include "eval/type-registry.h"
#include "eval/values.h"
NError ERR;
CONSTRUCTOR(constructor) {
ERR = n_error_ok();
NT_INITIALIZE_MODULE(n_init_eval);
}
SETUP(setup) {
}
TEARDOWN(teardown) {
}
static NFixnum ... | [
"alexandream@gmail.com"
] | alexandream@gmail.com |
adcad251117c26a0c809c9a43351a628959c392c | 96e7347db30d3ae35f2df119a18472cf5b251fa2 | /Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen3107719250MethodDeclarations.h | 346e2d1eb64ffafdad9e7ed2d9cc0ae786ac6c90 | [] | no_license | Henry0285/abcwriting | 04b111887489d9255fd2697a4ea8d9971dc17d89 | ed2e4da72fbbad85d9e0e9d912e73ddd33bc91ec | refs/heads/master | 2021-01-20T14:16:48.025648 | 2017-05-08T06:00:06 | 2017-05-08T06:00:06 | 90,583,162 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,212 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3737850917MethodDeclarations.h"
... | [
"phamnguyentruc@yahoo.com"
] | phamnguyentruc@yahoo.com |
46bbc20dd14c9aad1306bbc86303c6db02d0d721 | f6b52bfd8dc3076d5212d5cc5ce60426f6af23d1 | /tr2b.c | 785faf0199f6e80f106e8d8b4b33bf1e56f491fc | [] | no_license | Cedar8344/h26 | a5860b99e1d49dbe138741c95d18955e0a9837b6 | ed0d23520250964ecef4af735b83419e1909a616 | refs/heads/main | 2023-01-23T15:44:07.195463 | 2020-11-20T01:58:31 | 2020-11-20T01:58:31 | 314,413,575 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,363 | c | #include <string.h>
#include <stdio.h>
#include <stdlib.h>
void IOerror();
int main(int argc, const char*argv[]){
if(argc != 3){
fprintf(stderr, "Error with given arguments. Please provide 2 strings");
exit(1);
}
const char* from = argv[1];
const char* to = argv[2];
int flen = s... | [
"jerry@lnxsrv06.seas.ucla.edu"
] | jerry@lnxsrv06.seas.ucla.edu |
a20be1621b4e9eb8d89afe590fbdcb9dd870da03 | ba193063f248ac53e87dd67dc1ebb91d023bd3f4 | /isim/score_main_isim_beh.exe.sim/work/m_00000000000654318522_0620851659.c | 91aa3bc967ae2ec647386d7ea479c2d66c800181 | [] | no_license | simonzhow/stacker | 6e92f097513bc37eafe93ea0ddc6c1e7119dba6b | 93b895e9984d91cf2b37c478337db583870752d9 | refs/heads/master | 2021-01-23T10:56:56.602913 | 2017-10-02T07:11:18 | 2017-10-02T07:11:18 | 93,109,965 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,144 | c | /**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ ... | [
"simon.zhou@ucla.edu"
] | simon.zhou@ucla.edu |
c465882c67ba345a19e08a333e0b0acb1ee54547 | beabce43e3d840d3c4d06d2dba7d749336db3340 | /Bsp/bsp.h | f5e8a846d7e89e9ae0ab0b45cf9a3dc470ef5da7 | [] | no_license | goodmasher/STM8S_Multi-Node | 871d4fda34af58ce45e637192af2ccf19c6ca259 | ab1b4725119e31e34a94631cebab8af40395b222 | refs/heads/master | 2022-04-25T15:14:54.835828 | 2018-08-16T10:31:39 | 2018-08-16T10:31:39 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,201 | h | /**
******************************************************************************
* @文件名 : bsp.h
* @作者 : strongerHuang
* @版本 : V1.0.0
* @日期 : 2018年08月16日
* @摘要 : 底层驱动头文件
******************************************************************************/
/* 定义防止递归包含 --------------... | [
"2827246300@qq.com"
] | 2827246300@qq.com |
73b35bb8d5b1f78ed0052c33b0f0397a4e8a54ff | 5040d98911e52d8b55a128a661ddc25fdee0cc16 | /BlackScholesAAD/include/Adept2/adept.h | 57ca9a8e50bcf1ccb29637cf38f383844d9abe92 | [] | no_license | phil-zxx/CppCodeSnippets | 65ec6b9c2384710d86f6575cb66f32086547cf12 | c70b8c5e1eeecec32dc3e58f73eb95066d08f9f1 | refs/heads/master | 2022-07-03T18:10:51.343393 | 2020-05-17T18:38:19 | 2020-05-17T18:38:19 | 141,062,819 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 512 | h | /* adept.h -- Header file for basic scalar functionality of Adept automatic differentiation library
Copyright (C) 2015-2016 European Centre for Medium-Range Weather Forecasts
Author: Robin Hogan <r.j.hogan@ecmwf.int>
This file is part of the Adept library.
*/
#ifndef Adept_H
#define Adept_H 1
#pragma w... | [
"32247590+phil-zxx@users.noreply.github.com"
] | 32247590+phil-zxx@users.noreply.github.com |
4c7b11773f134f0418031bcd3881b3febde5976d | 381d44301e60c0ad779a3bde5e7a7a3c206af13e | /20190828-2/main.c | 4f4becaa2d3f7c0d3bfa5978711c16af26953946 | [] | no_license | mikelanda14/lab1 | 9551f6fb4c0b5dbe794115ecbe21aaa77bb13bbd | aa353d0424b28f2387b000b0b7e944f1c80cc23b | refs/heads/master | 2020-07-12T11:36:34.758341 | 2019-10-09T00:33:20 | 2019-10-09T00:33:20 | 204,809,547 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 362 | c | #include <stdio.h>
#include <stdlib.h>
int factorial(int);
int main()
{
int valor,result;
printf("ingrese numero: ");
scanf("%d",&valor);
result=factorial(valor);
printf("El factorial de %d es %d",valor,result);
return 0;
}
int factorial(int n){
int resp;
if(n==1){
return 1;
}
... | [
"noreply@github.com"
] | mikelanda14.noreply@github.com |
cff3f7d8daafd6e4ef01088ed6955b1f76d51ff8 | c7ab64751eed4df3b9a76392d09453b72bffdc34 | /src/social-edit.c | 2ffbee4c7b03d05cdde3230eb6f5a0a79e45a87b | [] | no_license | Cidan/dawnofwar | 1ac80d6bcaebc2bf112100371eaea1186d9bb26a | a7b51d0be0915d1c0d294fced533603805820c94 | refs/heads/master | 2021-01-20T02:16:02.608831 | 2015-01-12T01:50:31 | 2015-01-12T01:50:31 | 29,106,915 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 11,541 | c | /***************************************************************************
* Original Diku Mud copyright (C) 1990, 1991 by Sebastian Hammer, *
* Michael Seifert, Hans Henrik St{rfeldt, Tom Madsen, and Katja Nyboe. *
* *
* Merc... | [
"aj.lobato@gmail.com"
] | aj.lobato@gmail.com |
a765e7cdfd1ad1e35424114cfafaecb25843a579 | 109c2487947a17a74c6dd74b9feda01aed34d8d1 | /Scott-DFT/ATLAS/Dev1/src/blas/gemm/KERNEL/ATL_sgpKBmm27.c | 277ba6e529b8599d9f8110a9ad47c31ace2eba8d | [] | no_license | ebylaska/NWPW-C- | 93afad2309483d1dd9fe59546b71e1167926de58 | ea4da7c46fa604fe5de87eb90929c13071110148 | refs/heads/master | 2021-01-12T11:39:32.328672 | 2017-08-31T00:54:16 | 2017-08-31T00:54:16 | 72,255,209 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 34,924 | c | #ifndef ATL_RESTRICT
#if defined(__STDC_VERSION__) && (__STDC_VERSION__/100 >= 1999)
#define ATL_RESTRICT restrict
#else
#define ATL_RESTRICT
#endif
#endif
#ifndef ATL_RESTRICT
#if defined(__STDC_VERSION__) && (__STDC_VERSION__/100 >= 1999)
#define ATL_RESTRICT restrict
#else
#define ATL_RESTRICT
#endif
#en... | [
"eric.bylaska@pnnl.gov"
] | eric.bylaska@pnnl.gov |
13f90fb3d5c8e0ce00c82818e40aa6071d6b2b38 | 10049df692e5fe47d8b5b94a078935464807f76f | /resource.h | 10609dd9c334cbfa063ab8dae5287c5ded791049 | [] | no_license | hubgit122/OpenGL_Demo | 866fdc4b14646c3d40553cf8c2f6a2e542bed9a9 | 1fc7d5f03cd8fb1c4bfbb29e1a83f229758759dc | refs/heads/master | 2021-11-13T07:31:18.172795 | 2014-02-08T12:56:51 | 2014-02-08T12:56:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 998 | h | //{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by ogl_texmipmap.rc
//
#define IDC_MYICON 2
#define IDD_OPENGL_DIALOG 102
#define IDD_ABOUTBOX 103
#define IDS_APP_TITLE 103
#define IDM_ABOUT ... | [
"ssqstone@ce94931d-7fba-094c-b420-4f3a64e7cfeb"
] | ssqstone@ce94931d-7fba-094c-b420-4f3a64e7cfeb |
687a0d6356b10cbed6b62df3d62177766c1bb233 | 419d0b562a0029f0a2b16bd39acb3abdf3fb3641 | /c++/COM本质论/giplip/RectPoint_i.c | e772164a1c18e38efbcaad7d935511c7783d82e8 | [] | no_license | Livemy/example | a77ec106ba3e00b14b1c7cef3b8f7feeaa1ae664 | 3e7f9eff66db97867ae2507d7d99e8387fc5a453 | refs/heads/master | 2020-05-16T16:41:27.342782 | 2017-10-06T17:19:55 | 2017-10-06T17:19:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,214 | c | /* this file contains the actual definitions of */
/* the IIDs and CLSIDs */
/* link this file in with the server and any clients */
/* File created by MIDL compiler version 3.01.76 */
/* at Sun Jun 01 23:10:55 1997
*/
/* Compiler settings for RectPoint.idl:
Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
... | [
"wuguijiadeyu@gmail.com"
] | wuguijiadeyu@gmail.com |
9e02a0d352e8b95f89b913ce8b106c05ea32006c | fa9dd95809f07d88b416bb23ed830613c8b1c309 | /OSLab3/m/lib/klib.c | 9b6ac3b51b6c3844796b2f33805a22dcda7c3c56 | [] | no_license | DemoTree/OSLab | b2b4dd15eec540f2aea7e7f6e0f1bd1d42399628 | 2b01fff5b3aab23ab07411b60026a6eb7781c32d | refs/heads/master | 2020-09-10T04:41:16.337267 | 2020-02-18T07:54:34 | 2020-02-18T07:54:34 | 221,650,601 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,841 | c |
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
klib.c
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Forrest Yu, 2005
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++... | [
"zzy9967@126.com"
] | zzy9967@126.com |
1fecb5ca044acb981d8b2646d403e32ccfe67d93 | d2a6fc5e078afa52068083bf78b8e3b2793c6c2d | /HardwareAlarmPowerOffSupport/version.h | 4850b22ae4665a1e3e3d7f0d6b42271ef07f1e0a | [] | no_license | PSP-Archive/Hardware-Alarm-Interface | 038a72d7e97aaee4f6c2b999f7d54a433e762ab1 | bc4a6814d9ffb9d5c1349b4a95e306668fe497b2 | refs/heads/main | 2023-04-03T02:17:21.466722 | 2021-04-06T08:39:16 | 2021-04-06T08:39:16 | 355,116,823 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 817 | h | #ifndef VERSION_H
#define VERSION_H
//Date Version Types
static const char DATE[] = "13";
static const char MONTH[] = "06";
static const char YEAR[] = "2008";
static const double UBUNTU_VERSION_STYLE = 8.06;
//Software Status
static const char STATUS[] = "Alpha";
static const char STATUS_SHORT[] = "a";
//... | [
"abtziangiorgos@gmail.com"
] | abtziangiorgos@gmail.com |
996fb502c4bbdab830b43ac515d52e08ffeb43b0 | 9a4d74593927dcc3b553bcbf7834d43b77af0e57 | /doubly_linked_list.c | 8943829bbbb90c29f70f21cf00beca86e2c0b169 | [] | no_license | ishita159/data_structures | 4388332de0dfe48cb2273dfeab805fd1c2a20f75 | 8cbe3ce609aeb93665c725732c34519fb03a9b1b | refs/heads/master | 2020-05-03T09:28:46.608115 | 2019-12-03T11:40:25 | 2019-12-03T11:40:25 | 178,555,031 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,133 | c | #include <stdio.h>
#include <stdlib.h>
typedef struct linkedList
{
int value;
struct linkedList *previous;
struct linkedList *next;
}node;
node* createMemory()
{
node* temp = (node*)malloc(sizeof(node));
temp->value = 0;
temp->previous = NULL;
temp->next = NULL;
return temp;
}
void in... | [
"singhishita159@gmail.com"
] | singhishita159@gmail.com |
9a6dae8a555004dcb26d47cc9df407a60770378c | 36fdf5ef83b37ff1bc6c98463952dc72f3f60c18 | /DAC.h | 4b4731220fc1332ea495bd54255679c3b55f94a6 | [] | no_license | Dixitsharmaca/Digital2_Analog_Conversion | 520979b197233f1e6e90788aa3a392e83a1469d4 | c8b6b3c85edad0afc23b72d71f6ed1ad04dfbc0c | refs/heads/master | 2020-12-02T21:04:47.543345 | 2017-07-04T22:18:15 | 2017-07-04T22:18:15 | 96,255,747 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 104 | h |
#ifndef DAC_H_
#define DAC_H_
void DAC_Init(void);
void DAC_Out(uint8_t Data);
#endif /* DAC_H_ */
| [
"Dixit.sharma.ca@gmail.com"
] | Dixit.sharma.ca@gmail.com |
006688dffc2e7e9dae137a47f779dcc006459de9 | 2decb7c2b55d07550ed21e7ba0212f0df4f73805 | /assment17/pgrm66.c | 04c0812aed176ce5158f4745b513505a0c869ec3 | [] | no_license | PoojaDeshmukh96/C-program | 21d86cf915dbfc98adee3239b707008a4d908c54 | d24aeec2fa6f097f926e0ba102a053afedd410f0 | refs/heads/master | 2022-12-22T18:44:40.502717 | 2020-09-20T11:07:55 | 2020-09-20T11:07:55 | 297,058,473 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 668 | c | #include<stdio.h>
void pattern(int no1,int no2)
{
int i=0,j=0,k=1;
for(i=1;i<=no1;i++)
{
for(j=1;j<=no2;j++)
{
if(k<=9)
{
//k=1;
printf(" %d ",k++);
}
else
{ k=1;
printf(" %d ",k++);
}
... | [
"deshmukhpooja574@gmail.com"
] | deshmukhpooja574@gmail.com |
9585f9dfed82e7c9e2b0a63ba9c0fb94f896d512 | 1c6a7ae5dca2a38c68fde97a676478c6573bca02 | /linux-3.0.1/drivers/staging/rtl8712/wifi.h | 6032cdc653944d5ef5db69f4905f960a91dd3ca9 | [
"Apache-2.0",
"Linux-syscall-note",
"GPL-2.0-only",
"GPL-1.0-or-later"
] | permissive | tonghua209/samsun6410_linux_3_0_0_1_for_aws | fab70b79dc3e506dc03ac1149e2356137869c6ca | 31aa0dc27c4aab51a92309a74fd84ca65e8c6a58 | refs/heads/master | 2020-04-02T04:24:32.928744 | 2019-01-20T13:51:34 | 2019-01-20T13:51:34 | 154,015,176 | 0 | 0 | Apache-2.0 | 2018-10-24T14:51:04 | 2018-10-21T14:07:31 | C | UTF-8 | C | false | false | 17,095 | h | #ifndef _WIFI_H_
#define _WIFI_H_
#include "rtl871x_byteorder.h"
#ifdef BIT
#undef BIT
#endif
#define BIT(x) (1 << (x))
#define WLAN_ETHHDR_LEN 14
#define WLAN_ETHADDR_LEN 6
#define WLAN_IEEE_OUI_LEN 3
#define WLAN_ADDR_LEN 6
#define WLAN_CRC_LEN 4
#define WLAN_BSSID_LEN 6
#define WLAN_BSS_TS_LEN 8
#define WLAN... | [
"kyh1022@163.com"
] | kyh1022@163.com |
9d999451803099558e5da9502dd8f029c85b82c6 | afe3b9f82c5b57e83e903d08d9ec7b4d3bd80c97 | /Mercury5/proj/sc/middleware/fms/pub/fms_priv.h | 6ed1daf99cd58f5b253966eebb013927ddea0562 | [] | 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 | 37,199 | h | /****************************************************************************/
/* $Workfile:: fms_priv.h */
/*--------------------------------------------------------------------------*/
/* Scope : Flash Memory Services */
/* ... | [
"695732416@qq.com"
] | 695732416@qq.com |
ce94ba73545c37ff5bca8f7bbf017165a5049c0a | 4e432b0a49606d35dce15ef4df4d90d881bf309e | /d/kaifeng/ningxin.c | dc04b4969040bdb2bd5de8bed18f9834912eb9c6 | [] | no_license | MudRen/sanjie | 352e8490ec289877da73b21475c1272409193650 | 87f491aa0608044f23cd3dfe61daed6ec424df58 | refs/heads/master | 2020-04-17T04:10:26.979307 | 2019-01-18T07:02:00 | 2019-01-18T07:02:00 | 166,217,299 | 0 | 1 | null | null | null | null | GB18030 | C | false | false | 1,341 | c | //Cracked by Roath
// create by snowcat jan 21 1998
inherit ROOM;
void create ()
{
set ("short", "宁心宫");
set ("long", @LONG
宁心宫里烟雾缭绕,宫前有一小香桌,上面燃着麝香,烟火的香气扑
鼻。北边墙上正中写着一个金色大字“宁”。地上放着几个白底绣花
蒲团。
LONG);
set("exits", ([
"south" : __DIR__"sanxin",
"west" : __DIR__"qingxin",
"east" : __DIR__"j... | [
"i@chenxuefeng.cn"
] | i@chenxuefeng.cn |
ef46fbf96cac5eea949827815925cd0796ea8758 | f02eeb08322a3bc970011f21d6df76e01cb11766 | /EXIT/APP/SYSTICK/systick.h | dce46e32848d9ac2f55f2ae693c8443507e95d05 | [] | no_license | kom0055/stm32_learning | d9f184a1f79d00a2f6a7ee5afcad3c9f77f5aa0b | f662092bbef0134318e41640f741963dcb60dd5d | refs/heads/master | 2021-06-12T19:49:05.169886 | 2017-03-13T09:06:28 | 2017-03-13T09:06:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 118 | h | #ifndef _systick_H
#define _systick_H
#include "stm32f10x.h"
void delay_us(u32 i);
void delay_ms(u32 i);
#endif
| [
"362519489@qq.com"
] | 362519489@qq.com |
df5b1ab51ce3915621235481af31e429e680b2ce | 60405d4663dbf3e26df2e7659ce730b488ecd6fc | /system/timer.c | 777f976f8df9b5d4e6e2c789ba8a22a36c9ffad8 | [] | no_license | alnunez/RAK7201_US915_OTAA_ADC | cb28f1df5a593914454366861c0252e22d91eadf | 281df9e3d8fadeffd80a737957355c4ef0eb84ab | refs/heads/master | 2022-11-18T22:20:15.684517 | 2020-07-16T01:24:13 | 2020-07-16T01:24:13 | 280,019,870 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,780 | c | /*!
* \file timer.c
*
* \brief Timer objects and scheduling management implementation
*
* \copyright Revised BSD License, see section \ref LICENSE.
*
* \code
* ______ _
* / _____) _ | |
* ( (____ _____ __... | [
"61303722+alnunez@users.noreply.github.com"
] | 61303722+alnunez@users.noreply.github.com |
700bd1918d8e6eefcef59db0fb1c30e1fb0d644a | 8a19591f2da200a5d2c2ecafe0444c6416414d17 | /smth/smth/printmass.h | 9f55bfe424acef37af23dbfb33fe39b556abd0c0 | [] | no_license | softservedata/PMP112015 | 3612832e6da98d734b5f70a936c4081e87e1e9fc | 47575840b6ec2cfa5a42d7c70bcac711ef1d3095 | refs/heads/master | 2020-04-07T02:48:39.910414 | 2017-03-13T20:54:37 | 2017-03-13T20:54:37 | 43,291,641 | 0 | 5 | null | 2016-05-04T18:51:43 | 2015-09-28T09:21:31 | Python | UTF-8 | C | false | false | 79 | h | #ifndef PRINTMASS_H
#define PRINTMASS_H
void printmass(int *a,int n);
#endif | [
"yurij.yanchynskyj@gmail.com"
] | yurij.yanchynskyj@gmail.com |
facfd7d7a161af01a9a999107c572afafbc6c71e | 4e2714c268ad08d397a2c2c3965d5288550bd6de | /redis/multianon.c | f0cdc507ef26413b622d7c848f6b7944a0f9792f | [] | no_license | oiar/linux-kernel | 0bcb8df7f70efb13e8f17e21b7a81619fe278c7d | 634d7e8d02b4c74965b749f152b4df75a9e9c2ce | refs/heads/master | 2023-01-19T22:44:18.409670 | 2020-11-18T03:38:08 | 2020-11-18T03:38:08 | 302,898,461 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 242 | c | #include <stdio.h>
typedef struct {
int count;
} chair;
typedef struct {
int count;
} table;
int main(void) {
chair c = {2};
table t = {5};
// c.count = 2;
// t.count = 5;
printf("%d\n", c.count);
printf("%d\n", t.count);
} | [
"643921472@qq.com"
] | 643921472@qq.com |
bf2bc543f0585e399294d0225ef27c596f76b012 | 86a0a8c6fe396ae130489c9974146bd41d8c7c8b | /src/psp_main.c | ec7916c8cf4dfa34d7924eafa17389322d4fb526 | [] | no_license | PSP-Archive/polygon0 | 6ea4a339ff466bf8283dd0cee8cbca548666a616 | 51688fc65e94bb5fdda8d3e93a5ba4d51e6e6194 | refs/heads/main | 2023-04-19T19:05:13.736308 | 2021-05-23T10:43:03 | 2021-05-23T10:43:03 | 370,025,339 | 0 | 0 | null | null | null | null | SHIFT_JIS | C | false | false | 10,752 | c | // *******************************
// *******************************
//#include<stdio.h>
//#include<stdlib.h>
//#include<math.h>
//#include<string.h>
#include "shered.h"
#include "_clib.h"
#include "pg.h"
#include"my_gu.h"
///////////
//GUm (matrix)
#include"gumInternal.c"
#include"pspgum.c"
#include"pspgum_vfpu.... | [
"pierluigiortenzi@gmail.com"
] | pierluigiortenzi@gmail.com |
3df47828d46753297ac2f827f94322ec9c095934 | a364f5e25e4ec3563c2a6e366069488786927948 | /sys/dev/ic/adv.h | 0f9927709ade3fb5af5d8d9628c062b1cf057c8b | [] | no_license | noud/mouse-bsd | b044db5ba4085794b94ea729eb4148e1c86d73b5 | a16ee9b253dbd25c931216ef9be36611fb847411 | refs/heads/main | 2023-02-24T06:22:20.517329 | 2020-08-25T20:21:40 | 2020-08-25T20:21:40 | 334,500,331 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,567 | h | /* $NetBSD: adv.h,v 1.6 1999/08/07 07:20:15 thorpej Exp $ */
/*
* Generic driver definitions and exported functions for the Advanced
* Systems Inc. Narrow SCSI controllers
*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Author: Baldassare Dante Profeta <dante@mclink.it>... | [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
0bbe33731844fabe3786adb20b6b2821c68ae617 | 191707dd19837f7abd6f4255cd42b78d3ca741c5 | /X11R2/X.V11R2/server/ddx/hp/mfb/maskbits.h | bf5c01ede1aa448679a7faf362949c9f23c1e265 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive"
] | permissive | yoya/x.org | 4709089f97b1b48f7de2cfbeff1881c59ea1d28e | fb9e6d4bd0c880cfc674d4697322331fe39864d9 | refs/heads/master | 2023-08-08T02:00:51.277615 | 2023-07-25T14:05:05 | 2023-07-25T14:05:05 | 163,954,490 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,334 | h | /*
Copyright (c) 1986, 1987 by Hewlett-Packard Company
Copyright (c) 1986, 1987 by the Massachusetts Institute of Technology
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all cop... | [
"yoya@awm.jp"
] | yoya@awm.jp |
8f451d4915325ae4a8b4fc2bc803e939904dc1c3 | ef23e388061a637f82b815d32f7af8cb60c5bb1f | /src/mess/video/911_vdt.c | 94618b7bdf9ab2b8ef5a31e560b90ca680f95231 | [] | no_license | marcellodash/psmame | 76fd877a210d50d34f23e50d338e65a17deff066 | 09f52313bd3b06311b910ed67a0e7c70c2dd2535 | refs/heads/master | 2021-05-29T23:57:23.333706 | 2011-06-23T20:11:22 | 2011-06-23T20:11:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 19,079 | c | /*
TI 911 VDT core. To be operated with the TI 990 line of computers (can be connected to
any model, as communication uses the CRU bus).
Raphael Nabet 2002
TODO:
* add more flexibility, so that we can create multiple-terminal configurations.
* support test mode???
*/
#include "emu.h"
#include "... | [
"Mike@localhost"
] | Mike@localhost |
4936ab3dd2643a4822473c4356ddbf654d7431ae | 57cf899e6c4cee46401efa1f6192153a8ae9cf14 | /assembly/srcs/conversions.c | 3392170e60bc49ef2f94b76db77792f1a7c0b6bd | [] | no_license | EtienneViana/corewar | d79bbe78a2bcb91205baa4feaf3a12a6ccdc9077 | 02478c9460f5e37aa2e72c0956cdec815393ad9f | refs/heads/master | 2020-12-22T00:31:35.234748 | 2020-01-27T23:25:07 | 2020-01-27T23:25:07 | 236,615,054 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,827 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* conversions.c :+: :+: :+: ... | [
"etienne.viana@gmail.com"
] | etienne.viana@gmail.com |
eaf1ddece56bad912e6108b1e819e1b34c6ac17d | dcb980879ab3f8cd1673fb0ea0e13c52b8eaa3b3 | /OP3SAT(1)/Config/hpl_ac_config.h | fb7b0e2920ff0956e84308a3c165e718e07a0bf6 | [] | no_license | mattperng00/OP3SAT | 0218598580e2763fb57cc4ec28911a20774a6360 | 7ce58b3670aeb8284594dd973251d8f9974dfb7a | refs/heads/main | 2023-04-19T06:26:38.938622 | 2021-04-22T21:49:01 | 2021-04-22T21:49:01 | 335,777,377 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,553 | h | /* Auto-generated config file hpl_ac_config.h */
#ifndef HPL_AC_CONFIG_H
#define HPL_AC_CONFIG_H
// <<< Use Configuration Wizard in Context Menu >>>
// <h> Comparator0 Settings
// <o> Positive Input Mux Selection
// <i> These bits select which input will be connected to the positive input.
// <0x0=>I/O PIN 0
// <0x1... | [
"mattperng@gmail.com"
] | mattperng@gmail.com |
083b52c777e80f72c3b85ec7d3dd4e19e418b5ed | 911cab52c6aa9b432a61488d5481f3af2bd3dc28 | /Software/Firmware/drivers/drv_i2c.c | 5b08de71847aedf673949b365682d11e8be6a908 | [] | no_license | nongxiaoming/lpc4330_Xplorer | 37766559d8b8b35fdf6f908b16949ccde2e6ad21 | 704ae998b70b8e113083ae4bd0ad01f502734a71 | refs/heads/master | 2021-06-04T14:25:36.654488 | 2019-05-04T15:18:42 | 2019-05-04T15:18:42 | 19,883,159 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,605 | c | /*
* File : drv_uart.c
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2009-2013 RT-Thread Develop Team
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rt-thread.org/license/LICENSE
*
* Change Logs:
* Date Author ... | [
"nongxiaoming@gmail.com"
] | nongxiaoming@gmail.com |
5d2aec62cee548de7a945d42d805a21864ffb657 | d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9 | /testcases/CWE78_OS_Command_Injection/s03/CWE78_OS_Command_Injection__char_environment_w32_execv_53b.c | bf018f1e87ae8fd7793af298d33dd33d344e8966 | [] | no_license | arichardson/juliet-test-suite-c | cb71a729716c6aa8f4b987752272b66b1916fdaa | e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9 | refs/heads/master | 2022-12-10T12:05:51.179384 | 2022-11-17T15:41:30 | 2022-12-01T15:25:16 | 179,281,349 | 34 | 34 | null | 2022-12-01T15:25:18 | 2019-04-03T12:03:21 | null | UTF-8 | C | false | false | 2,038 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE78_OS_Command_Injection__char_environment_w32_execv_53b.c
Label Definition File: CWE78_OS_Command_Injection.strings.label.xml
Template File: sources-sink-53b.tmpl.c
*/
/*
* @description
* CWE: 78 OS Command Injection
* BadSource: environment Read input from an... | [
"Alexander.Richardson@cl.cam.ac.uk"
] | Alexander.Richardson@cl.cam.ac.uk |
25297213a803111bb5bed3554f5c6320d8eae5f6 | e83d2f56d026c51f7c729fd85875926f01e85db1 | /libyaul/scu/bus/b/vdp2/vdp2_scrn_color_offset_set.c | c887b007617a2aa0a3b7e13b7d0b4687e5708aba | [
"MIT"
] | permissive | razor85/libyaul | fb477cd7fe2191cc6c8dee921bbef923d0f512fa | 0c23a2fcf060de6ff731c35a7e925bafb28312d3 | refs/heads/master | 2023-07-05T13:44:02.616736 | 2018-09-02T01:35:28 | 2018-09-02T18:11:22 | 152,997,908 | 1 | 0 | MIT | 2018-10-14T17:03:27 | 2018-10-14T17:03:26 | null | UTF-8 | C | false | false | 2,900 | c | /*
* Copyright (c) 2012-2016 Israel Jacquez
* See LICENSE for details.
*
* Israel Jacquez <mrkotfw@gmail.com>
*/
#include <vdp2/scrn.h>
#include <assert.h>
#include "vdp2-internal.h"
void
vdp2_scrn_color_offset_set(uint8_t scrn, uint8_t select)
{
#ifdef DEBUG
/* Check if the background passed is valid ... | [
"mrkotfw@gmail.com"
] | mrkotfw@gmail.com |
0b5d0cbce7b00a69b069c6ea1992ea0eac4089d0 | 76ef5f1a36a0d401295db2b7d766eb44c6088f82 | /boards/frdmk64f/se_hostlib_examples/ibm_watson_demo/ibm_watson_demo.c | 1f994645a9e0ec5c253495668de925939a67e448 | [] | no_license | mhcchang/SDK_2.6.0_FRDM-K64F | e93273790a4fcbfdd195d0dd66801fbb526e8493 | 35d9979b7e2010a2e89149c2fc5d453f7982b9b0 | refs/heads/master | 2023-03-17T00:40:54.436065 | 2019-10-12T08:15:49 | 2019-10-12T08:15:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,061 | c | /**
* @file ibm_watson_demo.c
* @author NXP Semiconductors
* @version 1.0
* @par License
* Copyright 2017,2018 NXP
*
* This software is owned or controlled by NXP and may only be used
* strictly in accordance with the applicable license terms. By expressly
* accepting such terms or by downloading, in... | [
"gylpm@163.com"
] | gylpm@163.com |
341b4bd863dbca7841918a0f9c761577a0b8a962 | 5a2349399fa9d57c6e8cc6e0f7226d683391a362 | /src/qt/qtbase/mkspecs/qnx-x86-qcc/qplatformdefs.h | b47aecde0d02625457bad9a0a7ae79f61a2b2fd4 | [
"LGPL-2.1-only",
"GPL-3.0-only",
"LicenseRef-scancode-digia-qt-commercial",
"Qt-LGPL-exception-1.1",
"LicenseRef-scancode-digia-qt-preview",
"LGPL-2.0-or-later",
"GFDL-1.3-only",
"BSD-3-Clause"
] | permissive | aharthcock/phantomjs | e70f3c379dcada720ec8abde3f7c09a24808154c | 7d7f2c862347fbc7215c849e790290b2e07bab7c | refs/heads/master | 2023-03-18T04:58:32.428562 | 2023-03-14T05:52:52 | 2023-03-14T05:52:52 | 24,828,890 | 0 | 0 | BSD-3-Clause | 2023-03-14T05:52:53 | 2014-10-05T23:38:56 | C++ | UTF-8 | C | false | false | 3,598 | h | /****************************************************************************
**
** Copyright (C) 2012 Research In Motion Limited. <blackberry-qt@qnx.com>
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage... | [
"ariya.hidayat@gmail.com"
] | ariya.hidayat@gmail.com |
a9e8ce4a37458020fe2741f2cf699ff1774ca7ac | 8a964d9fdb6e7b1f99ce44b7a38ae9615f8399c3 | /codebase/libs/rapformats/src/ccm/ccm_io_lib.c | 0b6492d2cbf621cfbe4fbbe757ef51fc0f24fbfa | [
"BSD-3-Clause"
] | permissive | zhaopingsun/lrose-core | 93edd9b354ba2db08a52c45a6d9fcd561525403e | 98461699e9cfb8b3547a7143491a0cf42671c66f | refs/heads/master | 2021-10-09T22:21:54.872633 | 2019-01-04T06:18:51 | 2019-01-04T06:18:51 | 110,906,414 | 0 | 0 | null | 2017-11-16T01:20:12 | 2017-11-16T01:20:12 | null | UTF-8 | C | false | false | 7,422 | c | /* *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* */
/* ** Copyright UCAR (c) 1990 - 2016 */
/* ** University Corporation for Atmospheric Research (UCAR) */
/* ** National Center for Atmospheric Research (NCAR) */
... | [
"dixon@ucar.edu"
] | dixon@ucar.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.