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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8b0cc5b8e350feb9bd849606853db8712c7d69f5 | 8ef6b0a9c9c65cf8abecf5cf82d5af485f87f47d | /hashing/EPI13.7_Sliding_Window.h | f57045b82d391c46300c726fecee719e774dc82e | [
"MIT"
] | permissive | RahulSisondia/random_experiments | 50820d729e0e82f76bc65207fd192f722fb6de87 | 2a4f64983718166973d0ada77beb9746abf83ac0 | refs/heads/master | 2023-03-04T11:37:19.832463 | 2023-02-28T12:49:09 | 2023-02-28T12:49:09 | 196,296,969 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,517 | h | #ifndef PCH_H
#define PCH_H
#include "../my_util.h"
struct Subarray {
int start = -1;
int end = -1;
};
vector<string> file_smallest_sub_array(vector<string> parapraph,
unordered_set<string> keywords) {
Subarray result{-1, -1};
unordered_map<string, int> keywords_to_cove... | [
"rahul.sisondia@oracle.com"
] | rahul.sisondia@oracle.com |
9537f3f2219277ff4d8e3e192291054ad0b29604 | 5135627a83d98b03b402892e0074fc8d675659ab | /0x08-recursion/5-sqrt_recursion.c | 6aef0de788f284d10e8dd6817a89a8920700f4e7 | [] | no_license | BD20171998/holbertonschool-low_level_programming | 81f7e130372b9903f7a7e294d75331caaf2bb65d | bdb399df0c91941a7250cfa417023d2fcc970a63 | refs/heads/master | 2021-07-09T09:51:11.284863 | 2020-11-13T04:08:25 | 2020-11-13T04:08:25 | 209,363,813 | 1 | 4 | null | null | null | null | UTF-8 | C | false | false | 699 | c | #include "holberton.h"
/**
* check_sq - helper function that determines whether a number is a
* natural square root
* @n: int to check if there is a natural square root
* @f: int divisor
* Return: int d if divisior is natual square number or -1 if not
*/
int check_sq(int n, int f)
{
int t;
t = f * f;
if (t... | [
"robert.deprizio@gmail.com"
] | robert.deprizio@gmail.com |
9cb40f1652eca5da081fee07e4953d13b6316bb2 | dd2d5cd02589ade1deed64aee0d14f6d380df66a | /libs/myInterfaces.c | 07932f7f75a03f23daa7ddd7c2a384a35ea62e98 | [] | no_license | wanderlinoliveira/Linear-Data-Structures | 305ca6843fcbd11c8324fec5e1425c56938072fb | dc535a255d563739c012b08e71233e54b7c0d9b6 | refs/heads/main | 2023-02-14T22:31:38.128277 | 2021-01-15T13:23:12 | 2021-01-15T13:23:12 | 329,765,670 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,970 | c | #include "myInterfaces.h"
int intScanner(){
int val;
scanf("%i", &val);
getc(stdin);
return val;
}
void stackInterface(){
char ent;
int val;
stack *stk;
createStack(&stk);
printf("\nStack\n\nEnter:\ni {id} - Push the id in the stack;\np - Pop the stack;\ns - Show the stack;\ne - Exit;\n... | [
"wanderlindeoliveira@hotmail.com"
] | wanderlindeoliveira@hotmail.com |
71df46c481cef0fe04b7926551fe7189aef0b061 | b3ab560d4f61ce0328f0c1efdf9b2200b671be9c | /2021-9-11-模拟实现字符串相关函数学习/2021-9-11-模拟实现字符串相关函数-test.c | 0ae033f65482be563d6f946ddc1cc484b84eb03c | [] | no_license | wyiz/C_CODE | f3ed244258a556620893f300eba07d9b1a3800f1 | 9bd4ff6ba7a23bb9152bde81aafe4fce60d80dc3 | refs/heads/master | 2023-07-31T22:21:48.709005 | 2021-09-22T13:42:37 | 2021-09-22T13:42:37 | 402,757,041 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 2,579 | c | #define _CRT_SECURE_NO_WARNINGS 1
#pragma warning(disable:6031)
//模拟实现库函数:strcpy
//这是库函数的方法
/*
#include <stdio.h>
#include <string.h>
int main()
{
char arr1[20] = "xxxxxxxxxxxx";
char arr2[] = "hello";
//把arr2拷贝到arr1当中
strcpy(arr1,arr2); //第一个参数是目标空间的起始地址 第二个参数是源空间的起始地址
printf("%s\n", arr1);
printf("%d\n... | [
"wyz11282021@163.com"
] | wyz11282021@163.com |
d32e8f1548768c6bfe05f7671bc8877e4f538338 | 83214753e9183327e98af0e6768e9be5385e5282 | /d/migong/lev19/npc/boss.c | 65d9e06861b7a34a1c1e99a4a44ac046bf2a5213 | [] | no_license | MudRen/hymud | f5b3bb0e0232f23a48cb5f1db2e34f08be99614e | b9433df6cf48e936b07252b15b60806ff55bb2f3 | refs/heads/main | 2023-04-04T22:44:23.880558 | 2021-04-07T15:45:16 | 2021-04-07T15:45:16 | 318,484,633 | 1 | 5 | null | null | null | null | GB18030 | C | false | false | 6,325 | c | #include <ansi.h>
inherit NPC;
string *order = ({""HIY"", ""HIG"", ""RED"", ""MAG"", ""YEL"", ""YEL"", ""HIW"", ""YEL"",""HIB"", ""CYN"",""WHT"",""HIM"",""BLU""});
void create()
{
mapping npc,mp,j;
int i,k,a,b,c,d,e,f,temp;
set_name(order[random(13)]+"堤洛"NOR, ({ "tero"}));
set("magicgift",4);
set("magicset",1... | [
"i@oiuv.cn"
] | i@oiuv.cn |
ee269f2752c11d80d5a3c092f489533aa7e282cc | 22c92929d49f4ed85872346f5954310a5282fb6e | /code/emWin/Include/GUIDRV_TemplateI_Private.h | 99d36b17f847c66dbe3154a165e9396ea2ddbfe4 | [] | no_license | qiurenguo2014/youjiesun_xianshi | f189a65c61bcf30d7f52594d32db172d6a731ce8 | 0a6f2cdd0c9556d7c7d11469d0aa2bdb2eb8b022 | refs/heads/master | 2021-01-02T09:15:43.900636 | 2014-05-22T00:29:49 | 2014-05-22T00:29:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,955 | h | /*********************************************************************
* SEGGER Microcontroller GmbH & Co. KG *
* Solutions for real time microcontroller applications *
**********************************************************************
* ... | [
"qiurenguo@gmail.com"
] | qiurenguo@gmail.com |
125422f535e79c266b12bc67d788985ac42c2277 | e074527ba557b4dca1cbae68a1a31b8da16b41ef | /2017/outFiles/Application_1/InputBundle_X+G_Input_92_Tree/Application_Fakes_3L_2017.C | 289ecd67bd56b8ce6af6df2ed0bb9700b2f554a5 | [] | no_license | mainechristos/FireMVA | c2bb9848bf7b4852ceec4174e4903abffe58df2d | bbd5e0592d74be04d4292849c4d9bd7c1978d3dd | refs/heads/master | 2020-03-27T02:08:55.780436 | 2018-11-24T20:50:57 | 2018-11-24T20:50:57 | 145,770,033 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 22,868 | c | #include <cstdlib>
#include <vector>
#include <iostream>
#include <map>
#include <string>
#include "TFile.h"
#include "TTree.h"
#include "TString.h"
#include "TSystem.h"
#include "TROOT.h"
#include "TStopwatch.h"
#include "TTreeReader.h"
#include "TTreeReaderValue.h"
#include "TMVA/Tools.h"
using name... | [
"mic46@rutgers.edu"
] | mic46@rutgers.edu |
9459fae6ab54857eb449354eba3dcf8d04b137fd | 021283081a16e7a1534bca9965b696d3fba39e3b | /src/Examples/TIMER/TIMER0_6-steps/gd32f30x_it.h | 71982644014ed230fb4bcf1b73db1ec5986735e3 | [] | no_license | SoCXin/GD32F303 | a918226b098fa971c2aed0bee70a7bb69887c97a | fa7b35c0e44b8dbd6c4e9e3e718940b635c88a7e | refs/heads/master | 2023-05-04T14:25:50.025832 | 2021-05-25T08:34:10 | 2021-05-25T08:34:10 | 180,520,910 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,779 | h | /*!
\file gd32f30x_it.h
\brief the header file of the ISR for GD32F30x
\version 2017-02-10, V1.0.0, firmware for GD32F30x
\version 2018-10-10, V1.1.0, firmware for GD32F30x
\version 2018-12-25, V2.0.0, firmware for GD32F30x
*/
/*
Copyright (c) 2018, GigaDevice Semiconductor Inc.
All righ... | [
"qitas@qitas.cn"
] | qitas@qitas.cn |
ec02ab991191dec506a9a23eee5fce777d0c2ea6 | cac711406faf321c8e3c7b0fcabfc07eba18a213 | /xmlrpc-c/lib/abyss/src/handler.h | 98798c93b70e63fb88aa23f2ffe2727559f8f421 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"ISC"
] | permissive | arssivka/naomech | 5ecf4b9e21030f99958b3f4719ecb96a9f3633ee | 678e270d388498ae888b4f945b3753e21bf5ad5a | refs/heads/master | 2021-01-21T04:37:25.717230 | 2016-07-19T17:22:02 | 2016-07-19T17:22:02 | 44,099,775 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 716 | h | #ifndef HANDLER_H_INCLUDED
#define HANDLER_H_INCLUDED
#include "bool.h"
#include "xmlrpc-c/abyss.h"
typedef struct BIHandler BIHandler;
BIHandler *
HandlerCreate(void);
void
HandlerDestroy(BIHandler *const handlerP);
void
HandlerSetMimeType(BIHandler *const handlerP,
... | [
"arssivka@yandex.ru"
] | arssivka@yandex.ru |
f986973df8e830ea47479601115b89c29c3a520f | 042978951b445586a636d11739a99a641429e69e | /pac4mac_0.3/tools/jtr/magnum-jumbo/src/opencl_pwsafe_fmt.c | d0e146be311159598ae68159e9862eb86c0dc7c1 | [] | no_license | ogarciam/pac4mac | 5e72164a0f1b0f0455dcfce326705f77e4a700c4 | d2d8ca49a71814f31c7a56e5fbf98a902dd4e312 | refs/heads/master | 2021-01-21T12:26:16.158094 | 2015-02-15T13:26:31 | 2015-02-15T13:26:31 | 33,355,148 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,844 | c | /* Password Safe cracker patch for JtR. Hacked together during May of
* 2012 by Dhiru Kholia <dhiru.kholia at gmail.com>.
*
* OpenCL port by Lukas Odzioba <ukasz at openwall.net>
*
* This software is Copyright (c) 2012, Dhiru Kholia <dhiru.kholia at gmail.com>,
* and it is hereby released to the general public un... | [
"sganama@gmail.com"
] | sganama@gmail.com |
d40b767cde25b3d8ca51d6d0725a6ef31bd9f2f3 | 38c9a450d7d2c7fefada875e797201ea5c28e0f8 | /srcs/lemin.c | c8d165b442e61f86045576f9b8658742d31c22bb | [] | no_license | jemagnie/lem-in | 7e0cc02d10325de152c0d0e91f571849b429df71 | 3715ecb5599363eaa8caa32a5f407691f8fb252c | refs/heads/master | 2020-05-23T09:38:16.328786 | 2019-05-14T22:33:45 | 2019-05-14T22:33:45 | 186,709,887 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,450 | c | /* ************************************************************************** */
/* LE - / */
/* / */
/* lemin.c .:: .:/ . .:: ... | [
"jemagnie@student.42.fr"
] | jemagnie@student.42.fr |
2b27c133ced85ef08b1669b1fa96cd021fabb443 | d660adec5a3fb26e8f28ff9284a8dc36c370cf18 | /op.h | f16f86057289e9f35841f87b27d915ef7124f2d0 | [] | no_license | BassirouRabo/corwar_asm | 52712b0fb47be67fa932e73b29cda0c4c8419f28 | 3ac622fb4292f9f25f39e54f71605b93c7d8200d | refs/heads/master | 2023-09-01T11:54:11.238306 | 2018-03-09T02:29:04 | 2018-03-09T02:29:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,713 | h | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* op.h :+: :+: :+: ... | [
"smalllamartin@gmail.com"
] | smalllamartin@gmail.com |
40798d3ef6d67f11b16df85e2894ac4676138b85 | c2cedcf36667730f558ab354bea4505b616c90d2 | /players/bagera/jungle/room12.c | ec7ba90ad96d4f60bd477d947e080497071628f8 | [] | no_license | wugouzi/Nirvlp312mudlib | 965ed876c7080ab00e28c5d8cd5ea9fc9e46258f | 616cad7472279cc97c9693f893940f5336916ff8 | refs/heads/master | 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 517 | c | inherit "room/room";
reset(arg) {
set_light(1);
short_desc=("The jungle");
long_desc=
"The jungle is a beautiful and exotic, as well as\n"+
"dark and mysterious. The branches are thick and blot\n"+
"out most of the sky. It's shady and cool underneath\n"+
"the trees.\n";
dest_dir=
({
"/... | [
"rump.nirv@gmail.com"
] | rump.nirv@gmail.com |
3ba9185ef9870ad5f3b42abb181d4057292d0abb | 04ad1e5adbf9c8011629cce5251ac6e2f6b657e4 | /d/daochang/daochang11.c | ca0bee902644fec1b019d523c0eb29ba0bead993 | [] | no_license | cao777/mudwllz2-utf8 | 7398dd2dc702e8ab9a3c98895d2afc3392c07232 | 19ae1d998a871b9ad7f29c467481015143ffb7a8 | refs/heads/master | 2023-03-16T08:34:07.707561 | 2020-05-09T00:04:07 | 2020-05-09T00:04:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 809 | c | // 百人道场
// Design By Robert 蝴蝶君 emial:robert_st@sina.com
inherit CHALLENGE_ROOM;
void create()
{
set("short","百人道场十一层");
set("long",@LONG
你来到了道场的第十一层。道场的地面是由花岗石铺成而成,理应是
十分平坦。可细瞧那地板上,却凹进些许脚印般大小的坑坑,显得崎岖不
平。清风从西面的窗外吹进,荡起道道细腻的尘埃。道场中间有一个身着
百武战袍的弟子正盘膝而坐,双目紧闭。冷漠中,顿觉道道迫人的杀气。
东面有一个出口,通往道场的休息室。如果你不想再打下去了,就往东面
休息室去吧。
LONG
);
... | [
"ashwing920@gmail.com"
] | ashwing920@gmail.com |
fec9315032a7a39c40beae3d22c913b8537c3d50 | 3f062687efea105bdd1c8503e426348a0ae62844 | /sys/dev/pci/mfii.c | 67f3f4eb6f2066d56b82f5f6fe7cc012125c0056 | [] | no_license | sbennett1990/openbsd-src | 71fac06b87de7100ba01e49a9a100b3576c6a788 | 69a5b86e329d73a3c79faf674aa45ebb57fbf4db | refs/heads/main | 2022-11-01T00:53:51.229299 | 2020-06-12T15:45:10 | 2020-06-12T15:45:10 | 265,322,380 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 99,745 | c | /* $OpenBSD: mfii.c,v 1.68 2020/03/21 20:42:23 krw Exp $ */
/*
* Copyright (c) 2012 David Gwynne <dlg@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear... | [
"scottb@fastmail.com"
] | scottb@fastmail.com |
9e7f0eeac011931eb3644bfa530219a6acc691a9 | c125ab127c302fab259031a3eff2b5a873536fc5 | /platform/mcu/r5f565ne/bsp_RTB/dbsct.c | 45f3eb6f22619e6dc5d6e7a854434802367c0570 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | gilbert168/AliOS-Things-rx_1.3.1 | b4dccf25c3fb563a9f5498c579b9ff031a1f001c | 0aaf37e17603691c889b36347e5bba401b68bed6 | refs/heads/rel_1.3.1 | 2020-03-18T23:07:33.106880 | 2019-03-21T08:29:19 | 2019-03-21T08:29:19 | 135,384,308 | 3 | 1 | Apache-2.0 | 2019-03-21T08:29:22 | 2018-05-30T03:40:35 | C | UTF-8 | C | false | false | 2,529 | c | /***************************************************************/
/* */
/* PROJECT NAME : OS3_CAN */
/* FILE : dbsct.c */
/* DESCRIPTION : Setting of B and R sections ... | [
"gilbert168@126.com"
] | gilbert168@126.com |
a6b484d06cbfc6cf248712c2e57b0d60d6a841b7 | 3d4ff4c6c391bef8465d1f41d67d21e83a2bbeb8 | /server.c | 6c5686ced9713c456828eb9a6c16e07d17bd0d2b | [] | no_license | vishnutejakandalam/socket_programs | ce525fc14c9835aee01b46c05d22e4b940a17215 | b151875e027b6240d304bee7054c59d57358747b | refs/heads/main | 2023-01-19T23:32:00.627478 | 2020-11-27T01:57:54 | 2020-11-27T01:57:54 | 316,376,234 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,400 | c | /*Include headder files*/
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
int index= -1;
int sockfd, newsockfd,port_num,clilen;
struct ... | [
"vishnuteja42@outlook.com"
] | vishnuteja42@outlook.com |
212876a78269c87bafe427fc44f3e056ee6d389f | efb25a20ecddb3a0a8795bc616069fc1a94e5375 | /sdk_k64f/middleware/freemaster/src/drivers/mcuxsdk/serial/freemaster_serial_usart.h | 36bb5468690b20eb13c19b3879bfc79aa612c4e0 | [
"MIT"
] | permissive | Sir-Branch/k64f-starter-template | f6119d67a4d661affca4ca8b5b72a971d0a65754 | f8959fd185f090363d180d69f84c2727e37cbeeb | refs/heads/master | 2022-12-18T22:24:58.356426 | 2020-09-08T02:52:56 | 2020-09-08T02:52:56 | 289,200,355 | 1 | 0 | MIT | 2020-08-24T02:16:20 | 2020-08-21T06:55:08 | C | UTF-8 | C | false | false | 2,449 | h | /*
* Copyright (c) 2007-2015 Freescale Semiconductor, Inc.
* Copyright 2018-2019 NXP
*
* License: NXP LA_OPT_NXP_Software_License
*
* NXP Confidential. 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... | [
"rmerello@itba.edu.ar"
] | rmerello@itba.edu.ar |
495473de7da6c064f03f8a8d70a8e7d5793eea04 | 20cfd8de1d98e03fdfb8a47dc6496ac2fa77ca1e | /src/gadget_write.c | 267bba75537d13800b3c8e2cbfed145cfc410358 | [] | no_license | ElricleNecro/IOGadget | 1b2e9151826a04ecc978cc283d9716cfd7a38b70 | 27600aad62f7bfea155e5d213bce54f23d471891 | refs/heads/master | 2021-01-23T08:52:46.133908 | 2014-05-27T08:33:51 | 2014-05-27T08:33:51 | 15,139,569 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,693 | c | #include "IOGadget/gadget_write.h"
#define SKIP {fwrite(&blksize,sizeof(int),1,fd);}
bool Float_Gadget_Write_format1(const char *name, const Header header, const Particule_f part)
{
FILE *fd = NULL;
int blksize, NbPart = 0, ntot_withmasses = 0, pc_new = 0;
if(!(fd = fopen(name, "w")))
{
perror("Can't open fil... | [
"guiplum@gmail.com"
] | guiplum@gmail.com |
feeec2d4396db550707005b99c6b560b23563cf8 | a0bcc4d93ef1a87e124279eaa1bc3aeb546c0d99 | /common.c | a346751b406ff523c12914edaeb605779383059f | [
"BSD-2-Clause"
] | permissive | tarun-verma/rappel | 05cd48a7aeb9e3cfd13a6546f4734122697e53d5 | 3c621260eaf5f1e89be3e842775b76dde454f333 | refs/heads/master | 2020-12-01T11:38:10.891014 | 2016-02-19T06:56:45 | 2016-02-19T06:56:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,423 | c | #include <stdarg.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "common.h"
extern struct options_t options;
void mem_assign(
uint8_t *buf,
const size_t buf_sz,
const uint64_t val,
const size_t val_sz)
{
if (val_sz != 1 && val_sz != 2 && val_sz ... | [
"yrp604@yahoo.com"
] | yrp604@yahoo.com |
494d3145c8e541d696f8c5886f66a562984e2982 | d660af22f601bee1c3570891d3d25d82b867e9a3 | /iPhoto/Pods/Headers/Private/DLPhotoPicker/NSNumberFormatter+DLPhotoPicker.h | b1a2e89105dba814a97416fa46c8298c9b395c6e | [] | no_license | iPhotoPro/iPhoto---iOS | 9b90639eaf3faff8894b60cc539151f58b2d48c2 | b1d1a894c8d1f505433a2c010c146f996779480f | refs/heads/master | 2020-12-31T04:56:20.294107 | 2016-05-21T17:55:17 | 2016-05-21T17:55:17 | 58,246,685 | 0 | 1 | null | 2016-05-21T17:55:17 | 2016-05-07T03:06:09 | Objective-C | UTF-8 | C | false | false | 81 | h | ../../../DLPhotoPicker/DLPhotoPicker/Categories/NSNumberFormatter+DLPhotoPicker.h | [
"fra.ngo.dac.du@gmail.com"
] | fra.ngo.dac.du@gmail.com |
bd3ddf11ea4fab336fb51a4cdef91b7a4abf5615 | 985beab07c05b613aa8ac3edbcd0987f89344eaf | /fy4/daemon/class/yinshi/celecurse/boostcurse.c | 0ed5f34051fc0d98454f97505fab9c5536583508 | [] | no_license | Yeeler/fy2005 | f6b308592c5037f5b5d40c18b748259447b6abe1 | cd244d4fed63ba57cd72a4e7119353a29df1f3c0 | refs/heads/master | 2021-01-06T20:37:29.371119 | 2017-08-08T07:54:16 | 2017-08-08T07:54:16 | 99,530,241 | 2 | 1 | null | null | null | null | GB18030 | C | false | false | 2,034 | c | // Boostcurse 增加速度5-10, haste +30%
// By Silencer@FY4 workgroup
#include <ansi.h>
inherit SSERVER;
int curse(object me, object target)
{
string msg;
mapping buff;
int add_agi, add_str, add_haste, celeskill;
if(me->query("class")!="yinshi")
return notify_fail("只有帝王谷弟子才能下鞭降。\n");
celeskill = me->query_ski... | [
"yeeler@gmail.com"
] | yeeler@gmail.com |
0b6b034c62e2a87eb48d17bf64b152aaff2ac3f5 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/arch/x86/events/intel/extr_core.c_free_excl_cntrs.c | 2b169cc4df82573451f5f5723c1986abf10dc7ce | [] | 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 | 908 | 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 |
e1dbb99edda109ff763794a3c76dc1835996c9c4 | 76d83240e90bab3cfaefc3ce77ccf2ce32a89e7b | /AIC/Practica 1/dhry.h | 47e758629f949dba9422521b57de83f9c2f06c92 | [] | no_license | rafacastalla/ETSINF-3 | b98fa7b72996261bd88825d1c4707cfd0ed07655 | ead625969c7e9b29aad185497c64bcd315867d0b | refs/heads/master | 2022-05-21T18:49:28.233780 | 2019-10-30T13:25:00 | 2019-10-30T13:25:00 | 222,428,471 | 10 | 8 | null | 2022-04-07T09:04:34 | 2019-11-18T11:01:49 | null | UTF-8 | C | false | false | 18,497 | h | /*
****************************************************************************
*
* "DHRYSTONE" Benchmark Program
* -----------------------------
*
* Version: C, Version 2.1
* ... | [
"mlurbe@hotmail.es"
] | mlurbe@hotmail.es |
9eb0f412ea64458aa5c14c0ae9623f9101a7de01 | 3b6de0cc16613295e86af56018034a4d082a7834 | /Lista 8/ex8L8.c | 218bc000030b67ec48128386c642d984a1e7e228 | [] | no_license | Matheus-Santos31/Aprendizado | a9a0f82f6a6ece0fde89c1c66a3b5d28528d9bbd | c100b8cecc95a63a47a2c0a3ce54de1b763ee0ca | refs/heads/master | 2023-03-29T02:45:49.006364 | 2021-04-04T19:06:19 | 2021-04-04T19:06:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 923 | c | #include<stdio.h>
#include<ctype.h>
#include<string.h>
int main(){
char nome[50],cPF[15], rg[15],endereco[50],cidade[30],cep[9],estado[30];
printf("Digite o nome: ");
setbuf(stdin,NULL);
gets(nome);
printf("Digite o CPF: ");
setbuf(stdin,NULL);
gets(cPF);
printf("Digite o RG: ");
se... | [
"matheus.antonio@ufu.br"
] | matheus.antonio@ufu.br |
2e18e2231c1f97cfad42312a3615f48f8dbd8e6c | d2028a494b657ed2ab65e7e738bc7d84b00b1f11 | /src/calculateEntropy.C | 0bec0bccfe4a4e6dbb73d259e289aa549030d032 | [] | no_license | KongTu/pythiaMultAnalyzer | ab91f9204e0bf53106f4f60d1c650e59804e6e35 | 1470acf1081cd368a4c9db7db2fcde693b1104f3 | refs/heads/master | 2020-03-30T21:21:44.595727 | 2019-01-30T23:19:26 | 2019-01-30T23:19:26 | 151,626,228 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,523 | c | #include <memory>
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <math.h>
#include <map>
#include <sstream>
#include <iomanip>
#include "TFile.h"
#include "TH1.h"
#include "TCanvas.h"
#include "TMath.h"
using namespace std;
double EE_lnxG[]={4.25524,3.73213,3.5477,3.43114,3.34513... | [
"kong@zhoudunming-lt.star.bnl.gov"
] | kong@zhoudunming-lt.star.bnl.gov |
97e37fe7d0564f859593e45690379ad55ef74315 | d0716604c71534995eade60a412e70f7c6b14cee | /MemoriaPrincipal.c | 7a1d0569fa398ba8b7d93dc75dd8927b1333f085 | [] | no_license | GMNetto/Process_Scheduler_Simulator | 56355137f6fd67daec78581af69f5c15b7d31377 | 7381bbfb27425f354f00d0abf503ef317dff8293 | refs/heads/master | 2021-01-13T08:53:19.638788 | 2016-10-26T11:59:45 | 2016-10-26T11:59:45 | 71,998,864 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,273 | c | #include "MemoriaPrincipal.h"
MP*criaMP() {
MP*novo = (MP*) malloc(sizeof (MP));
novo->ocupacao = 0;
novo->processo = NULL;
}
TFilaProcesso*criaNoMP(TProcesso*novo) {
TFilaProcesso*comeco = (TFilaProcesso*) malloc(sizeof (TFilaProcesso));
novo->estaMP = 1;
comeco->processo = novo;
return c... | [
"gustavo.m.netto@outlook.com"
] | gustavo.m.netto@outlook.com |
3252d9a1bd5682d2564d861973dedfdf50769f6c | 6ef6213d2fa39d1d0ab7e2373d882b9d263e8c6d | /ti_components/drivers/edma3_lld_02_12_00_21/packages/ti/sdo/edma3/rm/package/package_ti.sdo.edma3.rm.c | fcce7e8e55ec380f9f9f489d8bf48715710e9860 | [
"BSD-3-Clause"
] | permissive | Zhangh2018/PROCESSOR_SDK_VISION_03_06_00_00 | 9c380d3167b156a11a8f21814e94ac5550cddc87 | 05c72de5d031006c7565d4234abd53670a926acd | refs/heads/master | 2021-10-16T13:43:05.313842 | 2019-02-11T09:10:44 | 2019-02-11T09:10:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 454 | c | /*
* Do not modify this file; it is automatically
* generated and any modifications will be overwritten.
*
* @(#) xdc-B21
*/
#include <xdc/std.h>
__FAR__ char ti_sdo_edma3_rm__dummy__;
#define __xdc_PKGVERS 02, 02, 15
#define __xdc_PKGNAME ti.sdo.edma3.rm
#define __xdc_PKGPREFIX ti_sdo_edma3_rm_
#ifdef __xd... | [
"yukichen@otobrite.com"
] | yukichen@otobrite.com |
9610bf27c5333b178dfadcec02a20da806454968 | 0b6d218fbfb0585b84e4aff3afed86d05dcc3a29 | /test bed.c | f79c9561c36b97504abbfade4cc5977edeca0322 | [] | no_license | Hackerax1/pltwcodingreview | 0169821d5bdbb587e48063ab49f74ba5e18f7b1f | 194398b38415668b418156ca4eb5513172ac846e | refs/heads/master | 2022-12-19T17:26:07.675735 | 2020-10-02T14:52:34 | 2020-10-02T14:52:34 | 300,024,487 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,829 | c | #pragma config(Sensor, in1, lineFollower, sensorLineFollower)
#pragma config(Sensor, in2, potentiometer, sensorPotentiometer)
#pragma config(Sensor, in3, lightSensor, sensorReflection)
#pragma config(Sensor, dgtl1, limitSwitch, sensorTouch)
#pragma config(Sensor, dgtl2, bumpSwitch, sensorTou... | [
"noreply@github.com"
] | Hackerax1.noreply@github.com |
812479d0d38a126c1ced9f1ab10a1ce7df4a390f | 96f5d5003edec67fb54896e3b28ad37ed43c6381 | /Recursion/ClosestPoint/Closest_point2.c | ce6be0650599241e6c711bebd026ed05c8c18328 | [] | no_license | sourabhgome/DataStructures | 0a43418de1bd079dc24608c42897296edb6c1b43 | d9462363230beb951b01826fc86f7e3b8dd07376 | refs/heads/master | 2023-03-23T19:37:50.526296 | 2021-03-03T06:08:09 | 2021-03-03T06:08:09 | 324,315,583 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,719 | c | #include<stdio.h>
#include<math.h>
double findDistance(int x1, int y1, int x2, int y2)
{
return sqrt(pow(x2-x1,2)+pow(y2-y1,2));
}
int main()
{
double minDist1,minDist2;
int i,j,x1,x2,y1,y2,x3,y3,x4,y4,size,temp,divider;
int points[22][2]={{1,3},{1,6},{2,3},{2,7},{1,8},{3,5},{3,9},{4,8},{4,10},{5,7},{5,10},{6,6},... | [
"sourabh@artha.energy"
] | sourabh@artha.energy |
42213fe9a97d63c1fc41a4b35193c12e8082b08a | 0cde2e002fe87bfcdd262c0cf8029c31a9a4861c | /stm32cubef7 (1)/STM32Cube_FW_F7_V1.2.0/Projects/STM32746G-Discovery/Templates/Inc/stm32f7xx_it.h | 13abd10604c408d9b9f2a505f7d378aa25040db1 | [
"BSD-2-Clause"
] | permissive | acrepina/STM32F7_serverWEB | 045cd3f0fc02f41033f92cec2a7c4fa2be16ba2a | 31a8263f28af2aac5945c4586b26619692248fef | refs/heads/master | 2021-01-10T14:47:34.595249 | 2015-11-20T09:13:21 | 2015-11-20T09:13:21 | 45,683,119 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,060 | h | /**
******************************************************************************
* @file Templates/stm32f7xx_it.h
* @author MCD Application Team
* @version V1.0.1
* @date 21-September-2015
* @brief This file contains the headers of the interrupt handlers.
**************************************... | [
"acrepina@yahoo.fr"
] | acrepina@yahoo.fr |
e7a516dae313c19f32f6e72c07e2ce15351cb945 | 5b7d0f4b79a411e2fba1ea24c9cf1d4af20f813d | /iOS8.1.1/System/Library/PrivateFrameworks/ManagedConfiguration.framework/Support/profiled/profiled-Structs.h | 9132f3c6aa597425a493bc69b0454a6edc4932f3 | [] | no_license | ichitaso/iOS-iphoneheaders | 07ebebac9afb043f10d921c15f24c44ce664b800 | e0e0b2f57eeb94a0d07036e6dc14472cd1972843 | refs/heads/master | 2023-06-08T08:07:00.244639 | 2023-05-28T11:03:07 | 2023-05-28T11:03:07 | 21,318,634 | 81 | 57 | null | 2018-05-14T19:47:30 | 2014-06-29T07:24:01 | null | UTF-8 | C | false | false | 665 | h | /*
* This header is generated by classdump-dyld 0.7
* on Tuesday, December 2, 2014 at 7:32:25 PM Japan Standard Time
* Operating System: Version 8.1.1 (Build 12B436)
* Image Source: /System/Library/PrivateFrameworks/ManagedConfiguration.framework/Support/profiled
* classdump-dyld is licensed under GPLv3, Copyright © 20... | [
"willfeeltips@gmail.com"
] | willfeeltips@gmail.com |
6ad252ba0aa38a3196ca7b3cb9b68c05f09b6b26 | 23b18ee7f41deccecf5c63002c7b193a4c0090ed | /lab2/prgm4.c | 35bc7b4df9893d7c1b59fcbfef634c3d414e10f4 | [] | no_license | rahulbarnwal/OsLab | 0210ea1fd6cfe55a89f71516d9faca1757d5f807 | 91d022b4bb45dd2e53e596d4dfdc247737b2179e | refs/heads/master | 2021-03-22T04:45:30.562252 | 2018-03-28T11:15:04 | 2018-03-28T11:15:04 | 116,114,227 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 202 | c | #include<stdio.h>
#include<math.h>
int main()
{
int n;
scanf("%d ",&n);
int y=(int)((log(n+1))/(log(2)));
y=y+1;
printf("N= %d and y=%d\n",n,y);
for(;y>0;y--)fork();
printf("X");
return 0;
}
| [
"rahulbarnwal70@gmail.com"
] | rahulbarnwal70@gmail.com |
897d96e1c35863586d4fcad3dfaf646ee6831b1a | 5020fe665d88c317be198a092d8c3cf4f57618cf | /hw5/Algorithms.h | f4dacf647ce49a714de325af565ae44b693ba36b | [] | no_license | matthewachan/algorithm-analysis | 6d58da7b0a505ed203eaabb6616b4a3f4b8b9dc7 | c631fe77dda1055615749b57ba45910b2dfc5554 | refs/heads/master | 2021-01-10T07:25:56.459036 | 2015-10-13T19:44:47 | 2015-10-13T19:44:47 | 44,200,194 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 768 | h | /*
Matthew Chan PIC 10B Intermediate Programming
ID: 604178275 Winter 2015
Email: matthew.a.chan@gmail.com Assignment #5
Section: 2B
Honesty Pledge:
I, Matthew Chan, pledge that this is my own independent
work,which conforms to the guidelines of academic honesty as
described in the course sylla... | [
"chanchan4219@ucla.edu"
] | chanchan4219@ucla.edu |
da98c93aa784653d6827344d2c1799afa627b851 | 0744dcc5394cebf57ebcba343747af6871b67017 | /os/board/rtl8730e/src/component/soc/amebad2/cmsis-dsp/Source/MatrixFunctions/arm_mat_add_f32.c | a19236b77d74d34eea1783c9e55c1b24ab938b8c | [
"GPL-1.0-or-later",
"BSD-3-Clause",
"ISC",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive",
"Apache-2.0"
] | permissive | Samsung/TizenRT | 96abf62f1853f61fcf91ff14671a5e0c6ca48fdb | 1a5c2e00a4b1bbf4c505bbf5cc6a8259e926f686 | refs/heads/master | 2023-08-31T08:59:33.327998 | 2023-08-08T06:09:20 | 2023-08-31T04:38:20 | 82,517,252 | 590 | 719 | Apache-2.0 | 2023-09-14T06:54:49 | 2017-02-20T04:38:30 | C | UTF-8 | C | false | false | 8,961 | c | /* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_mat_add_f32.c
* Description: Floating-point matrix addition
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------... | [
"sh924.chang@samsung.com"
] | sh924.chang@samsung.com |
8efc47bf3cbdcd7a80df04162a209a32baf4f0e3 | d5cbb92d6b5935666bbf6f8934001e538c797bc5 | /tests/list_test.c | 146677513861395a423329da0d8ea7db67c52781 | [] | no_license | prakhar241/c-coding | 3ea19729bdf49729a86d804b63fa1d43977657e5 | 6a8b9249a85b8b6758a7bf564f81e7a49e6730d4 | refs/heads/master | 2016-09-05T11:49:59.019613 | 2014-09-30T02:19:22 | 2014-09-30T02:19:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 781 | c | /*
* File: list_test.c
* Author: prakbans
*
* Created on Sep 21, 2014, 12:14:35 PM
*/
#include <stdio.h>
#include <stdlib.h>
/*
* Simple C Test Suite
*/
void list_with_ints();
void testList_with_ints() {
list_with_ints();
if (1 /*check result*/) {
printf("%%TEST_FAILED%% ... | [
"prakharbansal1@gmail.com"
] | prakharbansal1@gmail.com |
b1887132b8f30268f88976c8f80b5c2925d21a64 | dfe78c6aa53b8705cc6209fc1c358709327fe7cb | /py/objstringio.c | a3a7566300cecee2303897d33ab4d602ccf56051 | [
"MIT"
] | permissive | lurch/micropython | c8d26535a46bcf98445f600b0662fdc842101b47 | 28dfbc2ba2ef41a7810e4e39290031eb2207a0a9 | refs/heads/master | 2022-08-17T06:34:07.638171 | 2014-05-01T20:42:18 | 2014-05-01T20:42:18 | 18,501,934 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,997 | c | #include <stdio.h>
#include <string.h>
#include "nlr.h"
#include "misc.h"
#include "mpconfig.h"
#include "qstr.h"
#include "obj.h"
#include "runtime.h"
#include "stream.h"
#if MICROPY_ENABLE_MOD_IO
typedef struct _mp_obj_stringio_t {
mp_obj_base_t base;
vstr_t *vstr;
// StringIO has single pointer used f... | [
"pfalcon@users.sourceforge.net"
] | pfalcon@users.sourceforge.net |
843d5a1a4e463f20993c4d0031ebf2a3afc240e8 | 10bc0fda8cb9191aa900bbda019d572590beb550 | /User/usart/usart.c | 4441367bd7d98df378af27a658805b5dc192d1bb | [] | no_license | VinoLeung24/Bicycle_Lock | 25d1b3e1c03ffc5b214434bc53da5d65d65cd70e | 84776fe6e7ff20ed7848ced5a4fc9fcc2f66d953 | refs/heads/master | 2021-01-23T10:19:41.282733 | 2017-09-06T12:52:28 | 2017-09-06T12:52:28 | 102,607,922 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 8,342 | c | /**
******************************************************************************
* @file bsp_usart1.c
* @author
* @version
* @date 2013-xx-xx
* @brief usart
******************************************************************************
* @attention
*
************************************... | [
"435993441@qq.com"
] | 435993441@qq.com |
188fd32b6900988575c77a677bed8518a23acbbc | d4dba3cb04d83c59a753222d0cefaa479f661aa9 | /baekjoon_c/피보나치.c | 5b90fa69a994859b1483252b9624ee0a516bf936 | [] | no_license | youngsuk0304/algorithm | 5dca6af028b8391eab1240ef23cb2ef6e7a50f55 | d9ad3f68a72d6f8dc612862b93f012f14e6bb992 | refs/heads/master | 2023-04-28T16:32:00.182313 | 2021-05-24T06:47:36 | 2021-05-24T06:47:36 | 197,145,042 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 781 | c | //#include<stdio.h>
//int dp[100];
//int fibonacci(int input_d)
//{
// if (input_d <= 0)
// {
// //dp[0] = 0;
// return 0;
// }
// else if (input_d == 1)
// {
// //dp[1] = 1;
// return 1;
// }
// else
// {
// if (dp[input_d] != 0)
// {
// return dp[input_d];
// }
// else
// {
// return dp[input_d] = fibona... | [
"djfls0304@naver.com"
] | djfls0304@naver.com |
3923be692b73895f6d27119520996a4d2dc66bd8 | 663eab6e145b7bead8863d5e5033aef59d18e923 | /Baekjoon/1110.c | 3e515d1c0dc0176b530f18d695c73e0b46cbc3cd | [] | no_license | kangkong0805/Baekjoon-algorithm-solving-site_C_and_Cpp | fc127084656e6dab1f958d8b76c8eb8e8d6f2cb4 | 905c096f45e3aae20f9d93123ba4a06a1bb6c698 | refs/heads/master | 2023-07-18T21:02:55.232596 | 2021-09-15T13:34:35 | 2021-09-15T13:34:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 176 | c | #include<stdio.h>
int main(void)
{
int n, n = scanf_s("%d", &n), num = n, cnt = 0;
do n = n % 10 * 10 + (n % 10 + n / 10) % 10, cnt++; while (num != n);
printf("%d", cnt);
} | [
"kang3530554@gmail.com"
] | kang3530554@gmail.com |
24c4ab46719fe49670bce1040845552159b44180 | e8769157ea2eeae6f4b67be33724def9a059d5f4 | /mcu_init.c | 008c39077c8b30e5316a095748de92197fb332e0 | [] | no_license | jhhong2501/LineFollwer | a13bfa7395bb14f2a9099ebc26d9cb79cfa45c88 | 75aecacd6187ede15bd3e242575fec0eb1a2d8c8 | refs/heads/master | 2023-02-19T18:36:59.632956 | 2021-01-23T13:42:34 | 2021-01-23T13:42:34 | 281,039,206 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,598 | c | #include "mcu_init.h"
//////////////////////////////////////////////////////////////////
//InitIO()
//Initialize Input & Output of Port
// Input : None
// Output : None
//////////////////////////////////////////////////////////////////
void InitIO(){
//TO DO
DDRA = 0xFF; //0b 1111 1111 //LED
DDRD = 0x00... | [
"noreply@github.com"
] | jhhong2501.noreply@github.com |
e9be0e92ab430880de947b2cce9522a0e8692f42 | 283a62068a0c5f47cd297b8d7ac7cc34f4484aa7 | /model/adpcm-itu/quan.c | 063665aba537cf88a2f3727cf857028fd8b5745e | [
"Apache-2.0"
] | permissive | sxr4316/2.0.SingleResourceMCAC | fcdc2f4bf333584c7ab2fa56579635a6296120c5 | e7f55efa981af941b826d5a8dd1cefc13eda7841 | refs/heads/master | 2021-06-08T16:50:06.388802 | 2016-12-16T13:47:15 | 2016-12-16T13:47:15 | 68,629,819 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,428 | c | #include <stdio.h>
#include <stdlib.h>
#include "encode.h"
extern int debug;
extern long yu;
extern long yl;
extern long dms;
extern long dml;
extern long ap;
extern long pk2;
extern long pk1;
extern long sr2;
extern long sr1;
extern long b1;
extern long b2;
extern long b3;
extern long b4;
extern long b5;
extern lon... | [
"sxr4316@gle-3159-pc24.main.ad.rit.edu"
] | sxr4316@gle-3159-pc24.main.ad.rit.edu |
c5cd1ccb9884a55e04f7f2b6b259f7417747332a | 5500465c731797ce4de769336bd050a206e941d3 | /Dana C/clase6/main.c | f29216dd8d2a0af54cd983fc83a7b4a5185c5797 | [] | no_license | LeonelERey/bibliotecas | 0c7e985ef84019f0d0ba1c1cfefc58885c17591d | f0e7d0dc9bb92af5b0629f6567a5ac283aa9348a | refs/heads/master | 2020-12-30T16:27:59.073913 | 2017-05-11T14:39:07 | 2017-05-11T14:39:07 | 90,988,917 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 364 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
char nombre[5][21];
int i;
for(i=0;i<5;i++)
{
printf("Ingrese un nombre: ");
fflush(stdin);
fgets(nombre[i],20,stdin);
}
for(i=0;i<5;i++)
{
printf("\nEl nombre del indice %d es: %s ",i,nombre[i]);
... | [
"noreply@github.com"
] | LeonelERey.noreply@github.com |
3398cde40342d3852a2f408ac7c89b70553658a7 | dcf26a6bcf853a3f8f6f50f9379998ef4d8aad40 | /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/1-1.c | eb4cd1cb2b39a0d112a18937b7b8d1cedad2be59 | [] | no_license | small-seven/testmem | c5f3202dce1c369e9d84cdaaccc2008b827c16d8 | 2771460c617439bd1be562ffdc94543ea170a736 | refs/heads/main | 2023-03-12T22:16:28.824577 | 2021-03-03T04:24:59 | 2021-03-03T04:24:59 | 343,847,762 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 313 | c | #include <pthread.h>
#include <stdio.h>
#include <unistd.h>
#include "posixtest.h"
#define RETURN_CODE 100 /* Set a random return code number. This shall be the return code of the
#define INTHREAD 0 /* Control going to or is already for Thread */
#define INMAIN 1 /* Control going to or is already for Main */
| [
"huihuigong@users.noreply.github.com"
] | huihuigong@users.noreply.github.com |
8831ee51a1e5674db55bdbf30691b978c2ba670b | 87f989dce11a8e3a21ed484d692740ca6761bbd4 | /main.c | c969bd81ebcd64a42a880a52f9f594aa8d34009a | [] | no_license | AdleneS/RTv1 | 52ff38d409732e7f045b8fa4e682c8263731ea1b | 204d42b6fc60368e9a49667b93ae0d7e57ab03b2 | refs/heads/master | 2022-04-04T03:41:27.582302 | 2020-02-17T17:47:08 | 2020-02-17T17:47:08 | 236,237,843 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,151 | c | #include "rtv1.h"
int multithreads(t_param *p)
{
int i;
pthread_t tid[THREADS];
t_param th_param[THREADS];
i = 0;
while (i < THREADS)
{
th_param[i] = *p;
th_param[i].th_i = TWIDTH * i;
th_param[i].th_imax = TWIDTH * (i + 1);
pthread_create(&tid[i], NULL, ray_tracing, &th_param[i]);
i++;
}
while ... | [
"ad25400@hotmail.fr"
] | ad25400@hotmail.fr |
efff2e6ec1618f5f13ccf7f0bee4948445c6e7f1 | 27531b5ae327d0c4faacc5b09467da28124adb23 | /11week/11주차/raise.c | 80375fa844f8ff35888da1c98e45146493b9adfe | [] | no_license | YeonHeeLee98/Operating_system | 8bd30e021918f69a1bd43d5c0d8eb0f4d2cc3d2d | 4f8d27ec7dee98f8d6327328e343a479feb13ea3 | refs/heads/master | 2022-11-17T10:44:29.002596 | 2020-07-07T05:01:36 | 2020-07-07T05:01:36 | 255,566,953 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 228 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
int main(int argc, char **argv){
int count=0;
while(1){
printf("Hello World\n");
count++;
if(count==3)
raise(SIGINT);
sleep(2);
}
}
| [
"YHLee98y@gmail.com"
] | YHLee98y@gmail.com |
e09d0bca7f3a51df021c3bfb9738a4dcc4174ee3 | 88b6ad68285b81e7646216ad89b135f078ca92cc | /2021_1/programacao_paralela/ex1.c | 598a5e5e4a6dfc50e6d04e53e226447b05c15770 | [] | no_license | rambim/iesb | 7e6d6feeff9c630fe40199dbfa91e6af4fa4a9d1 | 41726f4299290d560caabe104b554ac3b348d61b | refs/heads/master | 2023-05-10T19:39:22.138379 | 2023-05-04T01:00:16 | 2023-05-04T01:00:16 | 243,416,189 | 45 | 83 | null | 2023-03-06T23:31:50 | 2020-02-27T02:51:47 | C | UTF-8 | C | false | false | 381 | c | //OpenMP
#include <stdio.h>
#include <stdlib.h>
#include "omp.h"
int main()
{
double t1, t2;
int i, j, x;
t1 = omp_get_wtime();
for (i = 0; i < 10000; i++)
{
for (j = 0; j < 100000; j++)
{
x = 1;
}
}
t2 = omp_get_wtime();
printf("\n Tempo de exe... | [
"felippe.giuliani@automatizai.com.br"
] | felippe.giuliani@automatizai.com.br |
c6edebf833fb0293185fa2cdc3a3b9b8d29d8cf2 | b71b8bd385c207dffda39d96c7bee5f2ccce946c | /testcases/CWE253_Incorrect_Check_of_Function_Return_Value/CWE253_Incorrect_Check_of_Function_Return_Value__wchar_t_fread_15.c | c9c6e6c81f51bb6fb9a6686dd1c1a465018ada8d | [] | no_license | Sporknugget/Juliet_prep | e9bda84a30bdc7938bafe338b4ab2e361449eda5 | 97d8922244d3d79b62496ede4636199837e8b971 | refs/heads/master | 2023-05-05T14:41:30.243718 | 2021-05-25T16:18:13 | 2021-05-25T16:18:13 | 369,334,230 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,267 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE253_Incorrect_Check_of_Function_Return_Value__wchar_t_fread_15.c
Label Definition File: CWE253_Incorrect_Check_of_Function_Return_Value.label.xml
Template File: point-flaw-15.tmpl.c
*/
/*
* @description
* CWE: 253 Incorrect Check of Return Value
* Sinks: fread
* G... | [
"jaredzap@rams.colostate.edu"
] | jaredzap@rams.colostate.edu |
378ad32dfc0a6326d9035cacc0b52508c50203bf | 2266eb133fc3121daf0aa7f4560626b46b94afe0 | /kungfu/class/shaolin/xuan-tong.c | 01184a4692b18edf7520ff5e14905f963052e8dc | [
"MIT"
] | permissive | oiuv/mud | 6fbabebc7b784279fdfae06d164f5aecaa44ad90 | e9ff076724472256b9b4bd88c148d6bf71dc3c02 | refs/heads/master | 2023-08-18T20:18:37.848801 | 2023-08-13T07:00:15 | 2023-08-13T07:00:15 | 112,278,568 | 99 | 49 | MIT | 2023-02-01T03:42:14 | 2017-11-28T03:05:14 | C | UTF-8 | C | false | false | 1,915 | c | // Npc: /kungfu/class/shaolin/xuan-tong.c
// Date: YZC 96/01/19
inherit NPC;
inherit F_MASTER;
#include "xuan.h"
void create()
{
set_name("玄痛大师", ({
"xuantong dashi",
"xuantong",
"dashi",
}));
set("long",
"他是一位白须白眉的老僧,身穿一袭银丝棕黄袈裟。他身材高大,\n"
"两手过膝。双目半睁半闭,却不时射出一缕精光。\n"... | [
"i@oiuv.cn"
] | i@oiuv.cn |
7e60bb6cfe26e3734b00ba9110e5374836a2c840 | 606963f562d06cf7026e0617e33023b0471c367b | /Estruturas/Queue/main.c | 80b2e272d596645f2ccb1c5f402b857d5f0212e3 | [
"MIT"
] | permissive | Daviqalb07/Estruturas-de-Dados | 9d8a7b70930e958801d89aff29028f8668afb4ec | 485b447402eef347d95087a1acee9a772a14043a | refs/heads/master | 2023-04-11T13:05:52.478927 | 2021-04-29T20:46:45 | 2021-04-29T20:46:45 | 317,851,014 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,520 | c | #include <stdio.h>
#include <stdlib.h>
#include "queue.h"
int main(void){
Queue fila = constructQueue();
int option = -1;
while(option != 0){
printf("\n");
printf("1. Consulta se fila esta vazia.\n");
printf("2. Enfileirar\n");
printf("3. Remover.\n");
pr... | [
"noreply@github.com"
] | Daviqalb07.noreply@github.com |
70c6215849b5f8ecffa07463e38f2290dcc9bb54 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/freebsd/sys/contrib/zstd/lib/legacy/extr_zstd_v04.c_ZSTDv04_resetDCtx.c | 6d224d763bd956e971034502dfcac35d62c35ad4 | [] | 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 | 561 | 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 |
e6524d617270701eda1c9f93b252295b1a472e40 | 2f688a20e367b7cf2cfde93e4a68a6b6021a8004 | /Compiler Project (Yacc:Lisp:C)/cilisp.h | 86bb4f8611fbdec28770b755fef1452b2f671b32 | [] | no_license | ltorres42/Projects | 6aa7a41f058712d17734692c91aeb3a907bf03c0 | 774c726bdbaa0553d40567a1c70bcb3f694a30bf | refs/heads/master | 2021-05-15T19:42:14.814099 | 2017-11-01T04:51:23 | 2017-11-01T04:51:23 | 107,719,655 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,816 | h | /**
* Name: Luis Torres
* Compiler Project
* Date: 10/26/16
**/
#ifndef __cilisp_h_
#define __cilisp_h_
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include "cilisp.tab.h"
int yyparse(void);
int yylex(void);
void yyerror(char *);
typedef enum { NUM_TYPE, FUNC_TY... | [
"Luis@Luiss-MacBook-Pro.local"
] | Luis@Luiss-MacBook-Pro.local |
0efb67f65ce01ab458a9e2900a103573cfbb2a7e | 2b17599b60930786cba263a43ca62f9fd573d0bc | /contrib/pageinspect/brinfuncs.c | dc0e0390ece47740e6a8fedc6779146bf0e22c8d | [
"PostgreSQL"
] | permissive | balabit-deps/balabit-os-7-postgresql-10 | 8cd9fbcb18d0a29f74f91d48232a6644b9b8453d | 9143269b236b85a76dedf44c031448f98aabdc28 | refs/heads/master | 2023-06-10T05:23:37.414896 | 2023-05-27T08:27:33 | 2023-05-27T08:27:33 | 158,246,796 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,298 | c | /*
* brinfuncs.c
* Functions to investigate BRIN indexes
*
* Copyright (c) 2014-2017, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/pageinspect/brinfuncs.c
*/
#include "postgres.h"
#include "pageinspect.h"
#include "access/htup_details.h"
#include "access/brin.h"
#include "access/brin_int... | [
"testbot@balabit.com"
] | testbot@balabit.com |
224362c9958305b45d1b66813883be554caaece1 | 55540f3e86f1d5d86ef6b5d295a63518e274efe3 | /components/platform/soc/bl808/bl808_e907_std/bl808_bsp_driver/regs/mm_misc_reg.h | 04b0156a476f648c8fe4985250f820b8b41461f0 | [
"Apache-2.0"
] | permissive | bouffalolab/bl_iot_sdk | bc5eaf036b70f8c65dd389439062b169f8d09daa | b90664de0bd4c1897a9f1f5d9e360a9631d38b34 | refs/heads/master | 2023-08-31T03:38:03.369853 | 2023-08-16T08:50:33 | 2023-08-18T09:13:27 | 307,347,250 | 244 | 101 | Apache-2.0 | 2023-08-28T06:29:02 | 2020-10-26T11:16:30 | C | UTF-8 | C | false | false | 57,964 | h | /*
* Copyright (c) 2016-2023 Bouffalolab.
*
* This file is part of
* *** Bouffalolab Software Dev Kit ***
* (see www.bouffalolab.com).
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistribut... | [
"qwang@bouffalolab.com"
] | qwang@bouffalolab.com |
2d51c910fb1bed08d8681888bd29bb1a21a2599d | a98bc8906c3fbe4d388442d24cbeed06d06686f9 | /Codechef 2019/April Long 2019/fencing.c | 179a1dc2a3b88c8b28ee52c63e14fff5f3552718 | [] | no_license | Arrowheadahp/Contests-Challenges-and-Events | 1ac4f1b2067276fa669e86ecfdb685d95ba663fd | fc156e5ae49b3074a9dbd56acd4fdc2af25c6a3f | refs/heads/master | 2022-12-13T19:50:38.041410 | 2020-08-22T14:16:23 | 2020-08-22T14:16:23 | 197,886,111 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 512 | c | #include <stdio.h>
int main(void) {
// your code goes here
int T,m,n,k,f,r,c,i;
scanf("%d",&T);
while(T--){
scanf("%d %d %d",&m,&n,&k);
char G[1002][1002]={'0'};
f=0;
while(k--){
scanf("%d %d",&r,&c);
int at[4][2]={{r-1,c},{r+1,c},{r,c-1},{r,c+1}};
int... | [
"prasunbhuin.pkb@gmail.com"
] | prasunbhuin.pkb@gmail.com |
b194474b45fbef6d992a9bd1fb00bfa51f15f88e | 663f36cfff3bfaf9ad64bba430e648b0dadc0f99 | /dependencies/aws-crt-cpp/crt/aws-c-io/source/darwin/secure_transport_tls_channel_handler.c | aba458dd7e3d2bf9e41ff20af5fef992699f63e4 | [
"Apache-2.0",
"LicenseRef-scancode-proprietary-license"
] | permissive | LiberatorUSA/GUCEF | b579a530ac40478e8d92d8c1688dce71634ec004 | 2f24399949bc2b2eb20b3f445100dd3e141fe6d5 | refs/heads/master | 2023-09-03T18:05:25.190918 | 2023-09-02T17:23:59 | 2023-09-02T17:23:59 | 24,012,676 | 9 | 15 | Apache-2.0 | 2021-07-04T04:53:42 | 2014-09-14T03:30:46 | C++ | UTF-8 | C | false | false | 44,261 | c | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/io/tls_channel_handler.h>
#include <aws/io/channel.h>
#include <aws/io/file_utils.h>
#include <aws/io/private/pki_utils.h>
#include <aws/io/private/tls_channel_handler_shared.h>
#include ... | [
"dinand.vanvelzen@gmail.com"
] | dinand.vanvelzen@gmail.com |
600a75e4d268a9a05031a80e98c21295d70a9dba | ce545d7ab264b2bd71fc97b06b93d1140d7a6bf7 | /fdlibm1028/s_matherr.c | c5313d6d859aea0993431ecff2cfd7025e0ed468 | [] | no_license | cigar1920/testprogram | b12685cf4bd6364588f55a580da84424642e6691 | c20cbd6a870dc492d9a834b444937305901fb50d | refs/heads/main | 2023-02-18T18:59:09.520606 | 2021-01-06T13:18:47 | 2021-01-06T13:18:47 | 327,315,745 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 535 | c |
/* @(#)s_matherr.c 1.3 95/01/18 */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunSoft, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provid... | [
"2334969928@qq.com"
] | 2334969928@qq.com |
2d6c77f4c49fbb07452c88cefd94f4bfc90a2b8c | 13641624a94bd28e543b35c66d67744eb8289fd9 | /exampleStrings_comentado.c | dfe97280481dfce34cca44e6934ef967029cba18 | [] | no_license | ULE-Informatica/laboratory1-alvaroAsturias20 | 92c072c097ca6c61b5e3e9d24fbb5c7a2deaf942 | e182500dd0b3b9cb731b955f060539296dccf3d8 | refs/heads/main | 2023-01-13T19:14:51.253210 | 2020-11-15T23:27:16 | 2020-11-15T23:27:16 | 312,044,863 | 0 | 0 | null | 2020-11-11T17:41:29 | 2020-11-11T17:41:21 | C | UTF-8 | C | false | false | 3,348 | c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
char array1[] = "Foo" "bar";
char array2[] = { 'F', 'o', 'o', 'b', 'a', 'r', '\0' };
enum { BUFFER_MAX_SIZE = 1024 };
/*Raw string litereal no es implementado para c sino para c++. Su implementacion sería --> const char* s1 = "Hello world";*/
con... | [
"noreply@github.com"
] | ULE-Informatica.noreply@github.com |
4413bcf140375b5ba83bc619195a4dd9fe41bd79 | d4772d4fd3e4cc1f2cd5179df6bb1272e9887c4f | /Lista1/exB1.c | 3fbca93abcc6b178ca1b16a6fe9fd8666ef6ad7b | [] | no_license | saracampss/EDA2 | a27c023481b3da47ba45d686e3d127932858511f | 3c2fab3be2a2c606d459c210216c10100f98454b | refs/heads/main | 2023-02-27T15:47:54.319425 | 2021-02-09T17:11:05 | 2021-02-09T17:11:05 | 337,553,057 | 1 | 0 | null | 2021-02-09T22:25:22 | 2021-02-09T22:25:22 | null | UTF-8 | C | false | false | 126 | c | #include <stdio.h>
int main(){
int N1, N2;
scanf("%d %d", &N1, &N2);
printf("%d\n", N1 + N2);
return 0;
} | [
"pedrovscella@gmail.com"
] | pedrovscella@gmail.com |
119f48d05e621ea78c51204e2b0c91c7cb178a87 | 3d1d651fd0293f1a53217646a10f38a39c59decd | /ClonyBird/Temp/il2cppOutput/il2cppOutput/UnityEngine_UnityEngine_AnimatorTransitionInfo.h | bd6305f61197126581ab46b05944ffc0222c78d4 | [] | no_license | at-tran/ClonyBird | 51cd7ba74357f51a811debfadf667a859493cca1 | d59a7b010ab99bfd5e4b54edfed72a71644b1735 | refs/heads/master | 2021-05-29T05:20:01.445087 | 2015-07-14T14:09:22 | 2015-07-14T14:09:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,017 | h | #pragma once
#include <stdint.h>
// System.ValueType
#include "mscorlib_System_ValueType.h"
// UnityEngine.AnimatorTransitionInfo
struct AnimatorTransitionInfo_t167
{
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_FullPath
int32_t ___m_FullPath_0;
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_UserN... | [
"nhanhnhanh17399@gmail.com"
] | nhanhnhanh17399@gmail.com |
8e039af764e1674874e7ce2668f63efbea92ec65 | 8edfecdbfd1d9e336b331932f7ff03cda7d81b72 | /1-linux基础/文件操作/Code/file_op/unlink.c | 4aafc4f2bfa9de99e505060454c088b1888d3cc1 | [] | no_license | robotchaoX/linux-tutorial-code | ef96dfe42c23e82ea81dddfaa0008dedd179f7d1 | 170ff5983f1cb4c515b66f2c9c0850f914d0e49f | refs/heads/master | 2020-08-28T14:04:16.958032 | 2020-03-27T13:00:07 | 2020-03-27T13:00:07 | 217,719,979 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 383 | c | #include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
if (argc < 2) {
printf("./unlink filename\n");
exit(1);
}
// 解除硬链接
int ret = unlink(argv[1]);
if (ret == -1) {
perro... | [
"948037851@qq.com"
] | 948037851@qq.com |
c50aefaf23f02766f1ede445cf4750d4893084bf | 78eff93ad7129072ab580281d4dfcc2e89a24379 | /Templates/header_file.h | 50277c8da1769bb753823bf5344c0b7316c00f30 | [] | no_license | sebsgit/toolbox | 8b96ff8272e2a6ba6566f06d808511a4d26d7a1c | 78c3288d9143c287734cbb239bb5ba075eb9e730 | refs/heads/master | 2022-11-02T23:48:03.821855 | 2022-10-03T19:30:56 | 2022-10-03T19:30:56 | 37,983,019 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 99 | h | #ifndef _H
#define _H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif
| [
"s.baginski@mail.com"
] | s.baginski@mail.com |
ee1fa28e5e568f39e09b10a44ccdad722910343d | 185b35ba30b1e35e12f6804e0bf705b05beec162 | /Common/entity/attrib_description.c | 408a03035208f1fe0a7eec2aea6ae9491d1aac81 | [] | no_license | EmuZoneDEV/COH-SRC | 141d40d5f142e3aa8a01fa38c49e7ae41d9baf98 | 7366352e744949c9d90aa1499eb5062e8a761d13 | refs/heads/master | 2020-06-12T12:29:23.941209 | 2019-06-28T15:08:37 | 2019-06-28T15:08:37 | 194,295,994 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 25,512 | c |
#include "textparser.h"
#include "attrib_description.h"
#include "attrib_names.h"
#include "netio.h"
#include "net_packetutil.h"
#include "net_packet.h"
#include "earray.h"
#include "entity.h"
#include "character_base.h"
#include "powers.h"
#include "StringCache.h"
#include "attribmod.h"
#include "character_net.h"
#in... | [
"emuzone.raspberrypi@gmail.com"
] | emuzone.raspberrypi@gmail.com |
0aa85bdceb6315261d118ff2a696598ea81e22cd | 579c24a58b456b689d791fa3ba150b9622a0947f | /YEAR.C | ea60ac9f57ca041d69f4ac22187ed3a53625eba1 | [] | no_license | janakisaras/Jan | fbbe184182d3357ba6204da79f94731278f594e3 | d3ed66a8ebb3700331170deaa882bd1ca62d7c68 | refs/heads/master | 2021-05-11T01:17:18.146854 | 2018-03-21T11:20:44 | 2018-03-21T11:20:44 | 118,323,691 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 206 | c | #include<stdio.h>
int main()
{
int a;
printf("\nEnter the year",a);
scanf("%d",&a);
if(a%4==0)
{
printf("\n%d the given year is leap",a);
}
else
{
printf("\n%d the given year is not leap",a);
}
return 0;
}
| [
"noreply@github.com"
] | janakisaras.noreply@github.com |
c97c5f46d0a31e492d034b8ab96a82ade280877c | aae4ed8528951733208ca4e24947c259fb03f9ca | /Pods/Headers/Private/NBUKit/NSBundle+RKAdditions.h | fbdc75b11e1d5bcf3fdc189555b254d2d0f46862 | [
"Apache-2.0"
] | permissive | toutoumu/HIECToJPEG | e39b918b6e04a45e89284d30b8a605707b238a47 | c775b12951bd39ac1604345aadb5202d1498a014 | refs/heads/master | 2021-09-01T09:36:11.324379 | 2017-12-26T08:18:02 | 2017-12-26T08:18:02 | 114,745,761 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 62 | h | ../../../NBUKit/Library/RestKit Support/NSBundle+RKAdditions.h | [
"toutoumu@126.com"
] | toutoumu@126.com |
9f5048457eb6748bc41c9ec9691df24c2d3b2a2a | 82129dc3bc0734f3c108c4d1927d1e34231a72c9 | /2 semester/lab01/tasks/lab 12/ex3.c | e81c2a9d8f5f051552615c6d35a30a2e95f8c815 | [] | no_license | lenazelenets29/Programing_369 | 93220a8f1bf66a60fd887ecd11b682cce7745a3a | 5071d59c07f9e34f6fef63fcc0644838bf1967a7 | refs/heads/master | 2023-05-14T09:50:05.164485 | 2021-06-07T07:32:34 | 2021-06-07T07:32:34 | 303,693,423 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,258 | c | #include "stdio.h"
#include "stdlib.h"
int main(int argc, char const *argv[]) {
FILE *in_t;
FILE *out_t;
char c_N[2]; // переменная для указания размера матрицы
if((in_t = fopen("in.txt", "r"))==NULL) {
printf("Cannot open file.\n");
exit(1);
}
for(int i = 0; i < 2; i++){
... | [
"lena.zelenets29@gmail.com"
] | lena.zelenets29@gmail.com |
527fdb79368266fdc8795e451895712e30302bee | 0c8cb9ede538d28125fe076eff1e7857b5d2cfea | /fibonacci/fibonacci.h | bcf9fe4f3488fa9f4ef7952cb0a400a3c0b6cea2 | [] | no_license | nasirkhansafi/DPI | 3b2353d97366dafc6d61a9e6b7dda4c38a5eacea | 01f2e1f092834fa64c8f991369089d0ab76b4457 | refs/heads/master | 2023-03-15T04:36:27.542707 | 2015-05-08T15:28:59 | 2015-05-08T15:28:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 508 | h | /* MTI_DPI */
/*
* Copyright 2002-2010 Mentor Graphics Corporation.
*
* Note:
* This file is automatically generated.
* Please do not edit this file - you will lose your edits.
*
* Settings when this file was generated:
* PLATFORM = 'linux'
*/
#ifndef INCLUDED_FIBONACCI
#define INCLUDED_FIBONACCI
#ifde... | [
"jinz@graviton.cse.sc.edu"
] | jinz@graviton.cse.sc.edu |
a227d302bc3a2ca2017b521ab0a0eba4a6453da4 | 9457980ecbccf7effc57236cd95a5ccb8d46d64a | /日常/2013 12 13/1.c | 44f1f5be46000f4c8906b766dbae23202a40ade4 | [] | no_license | leafspace/Previous-days | b64dbe6377e24675c59a86b41f02c9588472df83 | 0a3af2f935d4bb9f6fcdc317e0b561cb806f1bc9 | refs/heads/master | 2021-05-20T02:21:15.528029 | 2020-04-01T10:38:12 | 2020-04-01T10:38:12 | 252,145,238 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,349 | c | /*
以给定的方式标记出方阵中每一行最小元素的位置。如果某一行有多个数值相等的最小元素,
也要同时标记出来。标记方式为每一行的最小元素为0,其他元素为1。
【编程要求】
1.输入N值,则随机生成一个N行N列的由两位正整数组成的N阶方阵,并输出,
同时求出每一行的最小元素并生成标记矩阵输出;
2.程序中应定义一个求数组某一行的最小元素值的通用过程。
*/
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
void cl(int sj[][100],int bz[][100],int n)
{
int i,j,min... | [
"leafspace_zhang@163.com"
] | leafspace_zhang@163.com |
d6692b8075a24ea80ba9c976ac7dc7c3b5ff1da4 | c995bfc67ec690580ea6f4b07779f3ab79a461df | /EIFGENs/analyzer/W_code/C22/ev1679d.c | 8980372a6f345f402734c2273837e842463635a9 | [] | no_license | kris0302/Analyzer | a5d3ab15df4b59a5e9f1487c94a7a858b6dff015 | 91a35daf15642108aeceb9b751e8e838fe7d27a6 | refs/heads/master | 2021-04-06T04:10:07.421778 | 2018-03-11T18:03:36 | 2018-03-11T18:03:36 | 124,779,666 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,694 | c | /*
* Class EV_SEPARATOR
*/
#include "eif_macros.h"
#ifdef __cplusplus
extern "C" {
#endif
static const EIF_TYPE_INDEX egt_0_1679 [] = {0xFF01,231,0xFFFF};
static const EIF_TYPE_INDEX egt_1_1679 [] = {0xFF01,244,1678,0xFFFF};
static const EIF_TYPE_INDEX egt_2_1679 [] = {0xFF01,1678,0xFFFF};
static const EIF_TYPE_I... | [
"37160424+kris0302@users.noreply.github.com"
] | 37160424+kris0302@users.noreply.github.com |
ecc66d8e9355f7ad889c8889e91a6ec21a55bee9 | 4f34eb1bba22f80d25b61fc63bf488197c7634f2 | /sparseLSA/PROPACK/reorth_mex.c | 830ad8094d7fae19bef7b0468f6b38191360d02e | [] | no_license | DeepLearning4BioSeqText/Paper10-SparseLSA | 078794cd4e42859cb526af37b41b216ef3ced8e4 | b8db101d9ef0eb43cb5d6b5abec5c0df82fa723c | refs/heads/master | 2020-12-11T05:30:51.992959 | 2015-01-10T21:42:59 | 2015-01-10T21:42:59 | 29,071,576 | 1 | 3 | null | null | null | null | UTF-8 | C | false | false | 3,573 | c | /*
-------------------------------------------------------------------------
GATEWAY ROUTINE FOR CALLING REORTH FROM MATLAB.
REORTH Reorthogonalize a vector using iterated Gram-Schmidt
[R_NEW,NORMR_NEW,NRE] = reorth(Q,R,NORMR,INDEX,ALPHA,METHOD)
reorthogonalizes R against the subset of columns of Q give... | [
"qiyanjun2012@gmail.com"
] | qiyanjun2012@gmail.com |
93b0f66367818e2361c2c03a52bd909896c1669d | af2f5806cdb788749a9987a4294a8e270aab3ec8 | /Project/06_OpenTyrian/Class/lvlmast.h | 1b0ef814b49dc903b8e027aa58fa5de83e3b1ad0 | [] | no_license | pdpdds/SDLProgramming | 65f53bf7a7d28952780a06b4a1b80b4a80aeea95 | f69683aa41908f8f1b3b80b7076ca0e7908f59da | refs/heads/master | 2021-01-18T22:35:12.116696 | 2020-12-31T06:22:53 | 2020-12-31T06:22:53 | 37,397,842 | 12 | 13 | null | null | null | null | UTF-8 | C | false | false | 1,418 | h | /*
* OpenTyrian Classic: A modern cross-platform port of Tyrian
* Copyright (C) 2007-2009 The OpenTyrian Development Team
*
* 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... | [
"juhang3@daum.net"
] | juhang3@daum.net |
af079001322399d54065bfe0854b25c715e81622 | 7df190df28da7e4ff166e55dc8ce780f11236a9f | /src/router/php8/Zend/zend_execute.c | 6aca553c626175aa78b5b5fff34166cefa5ed2c8 | [
"PHP-3.01",
"IJG",
"Zlib",
"OLDAP-2.8",
"BSD-4-Clause-UC",
"ISC",
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-public-domain",
"TCL",
"BSD-2-Clause",
"GD",
"Zend-2.0"
] | permissive | mirror/dd-wrt | 25416946e6132aa54b35809de61834a1825a9a36 | 8f2934a5a2adfbb59b471375aa3a38de5d036531 | refs/heads/master | 2023-08-31T14:54:47.496685 | 2023-08-30T17:40:54 | 2023-08-30T17:40:54 | 7,470,282 | 520 | 281 | null | 2023-05-29T20:56:24 | 2013-01-06T17:21:29 | null | UTF-8 | C | false | false | 166,491 | c | /*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
+---------... | [
"s.gottschall@dd-wrt.com"
] | s.gottschall@dd-wrt.com |
e85019cb2f652834a479770e5a8e0f3657412888 | 4a020b1ffb4d0261767e72c2e7a0faa73e479b38 | /SimpleContextSwitchAndTimer/src/main.c | 07eb861e53ecedb0239415acb33de1c5ae3ff611 | [] | no_license | shawnq8861/Embedded-Baremetal-RTOS-ARM | 3551045bacba1e0cfb2db8bfd454efcb7a4fd3c0 | effa395f63b6d8eac90b741bf84723765392dc80 | refs/heads/master | 2020-04-06T03:37:16.136611 | 2016-07-11T18:12:15 | 2016-07-11T18:12:15 | 62,766,241 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,640 | c | /************************************************************************************
Module Name:
main.c
Module Description:
Task scheduler and initialization and setup of two task context switching example
Revision History:
23JAN2014 Shawn Quinn
*****************************************************... | [
"shawnquinn861@gmail.com"
] | shawnquinn861@gmail.com |
381b58dd9628f416b908a1b575cfc0172bfd3a23 | ee0c8475d62aa14b26887692e7283b7241da6a8c | /src/Firmware_Library_V2.1.1/Examples/I2C/Master_transmitter&slave_receiver_interrupt/I2C_IE.h | e2561a5f952e0bf96a86c1f415340bccaf0ec753 | [] | no_license | SoCXin/GD32F350 | 1ded8dc9839f981491df71ecbcb6402a1354f3c6 | c6fb38413d95befafc09c7751f8d0d9faa4ad793 | refs/heads/master | 2023-05-02T08:07:54.472708 | 2021-05-25T03:31:34 | 2021-05-25T03:31:34 | 259,245,362 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,505 | h | /*!
\file I2C1_IE.c
\brief The header file of I2C0 and I2C1 interrupt
\version 2017-06-06, V1.0.0, firmware for GD32F3x0
\version 2019-06-01, V2.0.0, firmware for GD32F3x0
\version 2020-09-30, V2.1.0, firmware for GD32F3x0
*/
/*
Copyright (c) 2020, GigaDevice Semiconductor Inc.
... | [
"qitas@qitas.cn"
] | qitas@qitas.cn |
ac6f28ac7d4938581e3351950f072fed91d0b86d | 2685e5b08960e3ab2cbd26b4347f31440aef5dee | /src/dtnperf_modes/dtnperf_client.c | 82722e15b31aab35e6ee6df26640822cf24e567d | [] | no_license | ltartarini90/DTNPERF3-Metadata_Version | 771163071664b5510c965226d64be56ba9fbb3bc | 31c819234b8112dd9e5a3c99c3c9a5fbe6ddb2c3 | refs/heads/master | 2016-09-05T10:26:02.899921 | 2013-12-26T22:45:16 | 2013-12-26T22:45:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 58,523 | c | /*
* dtnperf_client.c
*
* Created on: 10/lug/2012
* Author: michele
*/
#include "dtnperf_client.h"
#include "dtnperf_monitor.h"
#include "../includes.h"
#include "../definitions.h"
#include "../bundle_tools.h"
#include "../file_transfer_tools.h"
#include "../utils.h"
#include <semaphore.h>
#include <libgen... | [
"luca@Notebook-PB"
] | luca@Notebook-PB |
8c3b77c069027d16eea15e8e3279a98981895b87 | 33f4cf37d65745a05df261bf55346fd4eb69d0cb | /w7/ex4/generic_lib.h | e4ed7077027b04e4c0658dccfaaeaf1637442bc8 | [
"MIT"
] | permissive | library1010/c-advance | 4886660a0e9672b8256bcf5229034871c4d98cd6 | 374d216169e3fcd3c9ea750c8f7b5162d7eea0b6 | refs/heads/master | 2020-12-25T05:07:44.333653 | 2016-05-20T15:04:51 | 2016-05-20T15:04:51 | 59,302,512 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 921 | h | #ifndef __GENERIC_LIB_H__
#define __GENERIC_LIB_H__
#include <stdio.h>
#include <stdlib.h>
#include "my_input_lib.h"
/* Generic function */
void printList(void *a, size_t total, char *pattern, void (*printPattern)(void* buf, char *pattern, size_t total));
int findMax(void *buf, size_t size, size_t total, int (*compa... | [
"phanthaobk@gmail.com"
] | phanthaobk@gmail.com |
36880bbfec9ac77fb4289a9e66a4bb61bd829701 | 89e2cd36018689cfea7c71da3bbc096f9f7dc321 | /src/db.c | 9424c742844e1666732c4201fa5ee6da12c59d8f | [] | no_license | RocksCloud/rocksredis | d5c63dd28f75a8c92a441eef1a1a7bca7b4b2012 | 472a8f46ffd07f908b4793fd1d3e2a9dea2b637b | refs/heads/master | 2023-08-23T16:16:22.568617 | 2021-09-15T04:15:14 | 2021-09-15T04:15:14 | 358,267,598 | 8 | 2 | null | null | null | null | UTF-8 | C | false | false | 61,272 | c | /*
* Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
* 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 co... | [
"164571174@qq.com"
] | 164571174@qq.com |
bef7f5f72424f0dff5707bd9ff34d81a0feb3dbf | 26b715831ecfe9a91eb7c368580138dfb774f9e5 | /Experiments/functions/sources/nivo_2T/D9/f33.c | 1124356c8a44fbbaecf3ceb137f9c9ae264556fe | [] | no_license | branislavazivkovic13/master-thesis | 058f353d2fe8d6e83c0a152c35621f5e449f7485 | 469cc7a464c6d61bf919135fa391cb126123292a | refs/heads/master | 2022-10-14T09:30:06.443939 | 2017-09-08T12:52:39 | 2017-09-08T12:52:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 34,546 | c | #include <stdio.h>
int _f1(int a, int b, int c) {
a = (b<<1)*((a>>1)/3);
b = (a<<1)*((b>>1)/3);
a = (b<<1)*((a>>1)/3);
b = (a<<1)*((b>>1)/3);
a = (b<<1)*((a>>1)/3);
b = (a<<1)*((b>>1)/3);
a = (b<<1)*((a>>1)/3);
b = (a<<1)*((b>>1)/3);
a = (b<<1)*((a>>1)/3);
b = (a<<1)*((b>>1)/3);
a = (b<<1)*((a>>1)/3);
b = ... | [
"missuchiha93@gmail.com"
] | missuchiha93@gmail.com |
4d49032f0725c53265e81caa8ddd2102bfbdb0f7 | 21a6fb0f653d4508196700ef179e48ed391851f2 | /Boxing/Boxing/Textures.h | c7b19ff91eb0eb1ea72ac642ca78d49aa6b3de7a | [] | no_license | HagaiAS/BoxingOpenGL | 8ae65a8ece72f3eb7f79f60b844884bab586ac97 | 7ae481d7eb482f4bddd65cbec2a8fb91729234f3 | refs/heads/master | 2020-06-05T07:16:46.203871 | 2015-01-17T16:40:34 | 2015-01-17T16:40:34 | 27,993,902 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,354 | h | #pragma once
#include "Globals.h"
#include "RgbImage.h"
// The textures id and files
GLuint worldTextures[NUM_OF_WORLD_TEXTURES];
GLuint boxer1Textures[NUM_OF_BODY_TEXTURES];
GLuint boxer2Textures[NUM_OF_BODY_TEXTURES];
GLuint crowdTextures[NUM_OF_BODY_TEXTURES];
char* worldTextureFiles[NUM_OF_WORLD_TEXTURES] = { "./... | [
"hagai.a@dna-7.com"
] | hagai.a@dna-7.com |
35516f192299f8e852d52206f77b470fca69afdc | cb82e798d1ea875e87d973d87602baa07166fb7b | /net/ssl/evp/pf.c | 8dd62eab9a41c55b219abc30aa4d6200d30e3f1c | [] | no_license | rowanpang/noteGit | e9470be20bfdb04ac6b80c93f0f1cd3fd97ef565 | 120ca5329addf3a780b2299a0ab74de997b77785 | refs/heads/master | 2023-05-31T05:04:58.731953 | 2023-05-31T02:34:14 | 2023-05-31T02:34:14 | 52,506,290 | 1 | 0 | null | 2021-06-04T01:08:05 | 2016-02-25T07:41:49 | C | UTF-8 | C | false | false | 3,337 | c | /*=============================================================================
# FileName: pf.c
# Desc: rfc5246 tls v1.2 pseudorandom function
# Author: Rowan Pang
# Email: pangweizhen.2008@hotmail.com
# HomePage:
# Version: 0.0.1
# LastChange: 2018-02-05 09:46:50
# History:
==... | [
"pangweizhen.2008@hotmail.com"
] | pangweizhen.2008@hotmail.com |
55acb94193383fc89a8102744af4f0418ca17b56 | a6d312bee541eb5f5e76c76adadb943ec40076f8 | /tools/mintlib/include/osbind.h | 7c8038a4e06a8e7bbbd707c28dfde5cb39b7faae | [] | no_license | paulwratt/m68k-magxnet | 67f41d0568f1254526b1cb853954270c395ebe27 | 40011536c82f8089c523aa50681aeac829e6ff93 | refs/heads/master | 2023-06-03T17:14:05.800910 | 2021-06-25T05:20:00 | 2021-06-25T05:20:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 68,885 | h | /*
* osbind.h bindings for OS traps
*
* ++jrb bammi@cadence.com
*/
/*
* majorly re-hacked for gcc-1.36 and probably beyond
* all inlines changed to #defines, beacuse gcc is not
* handling clobbered reggies correctly when -mshort.
* We now use the Statement Exprs feature of GnuC
*
* 10/12/89
* changed all "... | [
"admin@tho-otto.de"
] | admin@tho-otto.de |
7fcfb9d1607622932a0373dc843848d0e320dfab | 6f63acc1924de7701731984ae8655516a3965e63 | /include/stdarg.h | 755b713dc562944c919ea5cc775758b6060d6341 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | nao1215/LearningXinuFromSource | 8e14d769250a8ad4a5d196e90e7751a8ae33e38b | 27c18888bb46ee91e66f94edeca62ea407f4504b | refs/heads/master | 2023-01-22T22:38:05.889242 | 2020-11-05T21:44:01 | 2020-11-05T21:44:01 | 301,029,773 | 7 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,816 | h | /**
* @file stdarg.h
* @brief 可変長引数を実現するための宣言およびマクロ
*/
//! 可変個の実引数を扱うための情報を保持するための型(__builtin_va_listはGCCに定義された型)
typedef __builtin_va_list va_list;
/**
* @def va_copy()
* @brief va_list型のコピーを作成する。
* @details GCCに定義された__builtin_va_copy()のラッパーマクロ。
* @param[out] dst コピー先(va_list型)
* @param[in] src コピー元(va_list型... | [
"n.chika156@gmail.com"
] | n.chika156@gmail.com |
115b48647076484eb1eca5ebda5d71603c3f1c6d | 2114db79e26bd45fe3fd28fb9e42399e392fca74 | /PmodLibDemos/RecorderDemo_795/PmodLibArchive/PmodLibSrc/PmodSF/pmodsf_sector_erase.c | 45975e5743f029afc0eb48cc8a0f0605336db74a | [] | no_license | duttondj/Digilent-PMOD-driver-libraries | 67f230126e64bbf6a5ec7ee634eb38fd893ca6c1 | d6ae2226e88fd9bb72282b7467a9b9dcf91ae281 | refs/heads/master | 2021-01-17T23:01:58.213878 | 2011-12-19T03:13:16 | 2011-12-19T03:13:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,752 | c | /************************************************************************/
/* */
/* pmodsf_dpd_rel.c Implementation file for PmodSFSectorErase */
/* */
/***************... | [
"CaptnIgnit@8bbe6f1c-b789-5162-a2a6-bc72c77501e9"
] | CaptnIgnit@8bbe6f1c-b789-5162-a2a6-bc72c77501e9 |
827a3d892336981955fc1666e9fdf8a2f2bcaea4 | 5ca9d7934a4ff8f3075781fd0e00df28132607af | /Hashing Testing/aeroportos/numeros.c | b5a2e42087db672bc1471863b1eebf300a686112 | [] | no_license | Tiago-Matinho/EDA2 | 67cd37e4b8b5a624e7742fca739876281e965237 | 49b7888789a7c32ae8df8a2998ff0604b66bd8a9 | refs/heads/master | 2023-02-17T21:35:21.393215 | 2021-01-19T16:29:40 | 2021-01-19T16:29:40 | 192,941,423 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 672 | c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#define FLIGHT_CODE 7
#define AIRPORT 5
#define TIME(H, M) H * 60 + M
#define TO_GMT_H (M) M / 60
#define TO_GMT_M (M) M % 60
#define MAX_AIRPORT 200003
#define MAX_FLIGHT 750003
//Retirado da implementac~ao de Tries das aulas praticas
#... | [
"l35735@alunos.uevora.pt"
] | l35735@alunos.uevora.pt |
5e5775a5cae9a76bffac55fc8eec436ea00822c8 | f2dd6c8981845ac88c1bfacd38b3cb36128a1c3d | /RTKCPFXP/RTIOCTL.H | d54e274ba66817f01e7bca85c578ddb3ae20a2c7 | [] | no_license | greshem/develop_ddk | 4ada64ef6223024aa4e801fc57bdd7f161b75cc8 | bfcb063815162f0fde22f8adca593d555d7da6db | refs/heads/master | 2020-05-29T17:44:13.833485 | 2017-10-08T12:28:09 | 2017-10-08T12:28:09 | 45,077,585 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 684 | h | //
//========================================================================
//
#ifndef __RTIOCTL__H__
#define __RTIOCTL__H__
//
//========================================================================
//
#define FILE_DEVICE_RTKCPF 0x00006942
#define IOCTL_RTKCPF_COPYFILE ( ULONG )CTL_CODE( FILE_DEVI... | [
"qianzhongjie@gmail.com"
] | qianzhongjie@gmail.com |
b00c457d371d6ddfcd1e74b2270596024ddd70f4 | 746170e49ef71b625883afb9a3b6ef2825498840 | /stack.h | bb992486b18b8985ddda87e25aa45a92213d0b26 | [] | no_license | Anirudhks64/Reverse_Polish-Calculator | aa952419594ab9729170656e51f231b42ada97db | 987b0f2851560617be7e754ffc439c21aea6cdc8 | refs/heads/main | 2023-07-19T13:46:47.157715 | 2021-09-06T16:45:44 | 2021-09-06T16:45:44 | 403,692,181 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 234 | h | //
// Created by Anirudh on 30/03/21.
//
#ifndef PS5_STACK_H
#define PS5_STACK_H
typedef struct node node;
void push(node* node);
node* pop();
node* peek();
void clearStack();
int counting();
void print_stack();
#endif //PS5_STACK_H
| [
"noreply@github.com"
] | Anirudhks64.noreply@github.com |
acbe427c3ada1e2d166e228cae554de9178ee53b | 3c883e1084f0a61e558c2d210bb1b4ae8a5e6a06 | /third_party/nvxs-1.0.2/CLAPACK/SRC/cpotri.c | e38e257df52c882982a91e0bac47daa5953e927d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"Python-2.0",
"BSD-3-Clause"
] | permissive | nya3jp/python-animeface | 7e48aa333c9f365a80acdf43e5d516edc8d0b189 | 15caf8b1ca29847f0dceb54e4b91c77726c4111c | refs/heads/main | 2022-04-29T20:17:01.198810 | 2022-04-04T10:17:59 | 2022-04-04T10:17:59 | 10,998,381 | 150 | 14 | Apache-2.0 | 2022-04-03T07:18:40 | 2013-06-27T14:06:08 | C | UTF-8 | C | false | false | 3,007 | c | #include "f2c.h"
#include "blaswrap.h"
/* Subroutine */ int cpotri_(char *uplo, integer *n, complex *a, integer *lda,
integer *info)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
/* Local variables */
extern logical lsame_(char *, char *);
extern /* Subroutine */ int xerbla_(c... | [
"takahashi.shuhei@gmail.com"
] | takahashi.shuhei@gmail.com |
6cad2f96270477d69285f517793ade8b981cb2e8 | 2f7db903e3af6054d0baf4d4efadb131b7657c44 | /source/my_exec/my_check_exe.c | 0ccee839d136f2a2855073092dac385b91b592f1 | [] | no_license | Kevin-Costa/42sh | bb78007eff0c9992b9f50709bc351524f17cb382 | 4f9759d23aefb93f2b25a35a02ff9a7b1ac3ea47 | refs/heads/master | 2021-01-10T16:49:07.357571 | 2016-02-29T09:00:28 | 2016-02-29T09:00:28 | 52,777,695 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 825 | c | /*
** my_check_exe.c for my_check_exe in /home/plasko_a/programation/epitech/PSU_2013_42sh/source/my_exec
**
** Made by Antoine Plaskowski
** Login <plasko_a@epitech.eu>
**
** Started on Sat May 24 13:32:56 2014 Antoine Plaskowski
** Last update Sat May 24 13:43:57 2014 Antoine Plaskowski
*/
#include <unistd.h>
#... | [
"costa_b@epitech.eu"
] | costa_b@epitech.eu |
4ade0be1e55f7cc00806d073865480423032eed9 | 4a1b388fc7254e7f8fa2b72df9d61999bf7df341 | /ThirdParty/ros/include/visualization_msgs/msg/detail/image_marker__rosidl_typesupport_fastrtps_c.h | 2485bb2314f1a35118068b193f530d463a7c707b | [
"Apache-2.0"
] | permissive | rapyuta-robotics/rclUE | a2055cf772d7ca4d7c36e991ee9c8920e0475fd2 | 7613773cd4c1226957603d705d68a2d2b4a69166 | refs/heads/devel | 2023-08-19T04:06:31.306109 | 2023-07-24T15:23:29 | 2023-07-24T15:23:29 | 334,819,367 | 75 | 17 | Apache-2.0 | 2023-09-06T02:34:56 | 2021-02-01T03:29:17 | C++ | UTF-8 | C | false | false | 1,339 | h | // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em
// with input from visualization_msgs:msg/ImageMarker.idl
// generated code does not contain a copyright notice
#ifndef VISUALIZATION_MSGS__MSG__DETAIL__IMAGE_MARKER__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_
#define VISUALIZATION_M... | [
"noreply@github.com"
] | rapyuta-robotics.noreply@github.com |
a7a1a69d3b3c4b8fa5bce56408c8fb1489fa4a5f | c50e74bb8b3b4a609c76b5b1aff3b3abdd8341fd | /SDK/BP_MapGimmickObjectBase_classes.h | 02d7ca57f67d774f0860597cf48e3362aa4c6f2d | [] | no_license | Roadou/Scarlet-Nexus-SDK | 8eb3669c66094a41152cc2acccec77d4457aea68 | 734c98180d88c391a8210c9315c73c28d95fd888 | refs/heads/main | 2023-08-03T07:36:41.801852 | 2021-07-07T06:25:44 | 2021-07-07T06:25:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 41,628 | h | // BlueprintGeneratedClass BP_MapGimmickObjectBase.BP_MapGimmickObjectBase_C
// Size: 0x928 (Inherited: 0x620)
struct ABP_MapGimmickObjectBase_C : AMapGimmickObject {
struct FPointerToUberGraphFrame UberGraphFrame; // 0x620(0x08)
struct UBP_UniqueEffectComponent_C* BP_UniqueEffectComponent; // 0x628(0x08)
float Fade... | [
"43587824+BelovedTomboyishGirl@users.noreply.github.com"
] | 43587824+BelovedTomboyishGirl@users.noreply.github.com |
ca93a10e406adfac2d1dc11baf3638eed289d4c8 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/70ead188-88d1-4486-8d0c-ed5e3668229e.c | 1d6222fe3591f080a241214f4b43cd0d4d309c28 | [] | 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 | 241 | c | #include <stdio.h>
int main() {
int i=0;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = j/j;
l = i%j;
l = i%j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,i);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
46067d2a3e8aba0ec16e410cc6bb68578187c0d4 | 753bac79de6f26d3fb02d8cad9d7dcf5bf592324 | /odd_numbers_913.c | 8deda91aab571a72aefb95c2d2352f773f10b147 | [] | no_license | uriqishtepi/uvaonlinejudge | 91d93c40e4ee17ce34487b066ea17ab124614437 | 7489e039ebb52ed93e14fceaf166d45d367be7eb | refs/heads/master | 2022-10-25T16:39:23.355957 | 2022-08-27T05:07:23 | 2022-10-03T17:00:04 | 40,859,572 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 735 | c | /* sums of odd numbers
* 1
* 3 5 7
* 9 11 13 15 17
* 19 21 23 25 27 29 31
* 33 35 37 39 41 43 45 47 49
*
* 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31...
* n=2*lvl - 1
* lvl = (n+1) / 2
*
* how many (n+1)/2 * (n+1)/2
* order (n+1)^2 / 4
* ANSW = (2 * order - 3) * 3
*
*
* 5 -> 6*6 / 4 = 36/4 = 9 -> 9+4 =>... | [
"adizaimi@yahoo.com"
] | adizaimi@yahoo.com |
ad7a2a071c4f8837c924e8efd39f0cc72ec6306d | 5292b03998384c0d2bb5858058892d7e45c5365b | /AppSecVillage/2020/MonROPoly/MonROPoly.c | 1779c9fe5fe389393bc002967cec9fd1b74618cc | [
"MIT"
] | permissive | TheusZer0/ctf-archives | 430ef80d367b44fd81449bcb108e367842cb8e39 | 033ccf8dab0abdbdbbaa4f0092ab589288ddb4bd | refs/heads/main | 2023-09-04T17:56:24.416820 | 2021-11-21T06:51:27 | 2021-11-21T06:51:27 | 430,603,430 | 1 | 0 | MIT | 2021-11-22T07:24:08 | 2021-11-22T07:24:07 | null | UTF-8 | C | false | false | 7,679 | c | //This was for csc-250 final project, not very well commented right now will update later for better gameplay and flow
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
#include <ncurses.h>
#include "MonROPoly.h"
#include <time.h... | [
"sajjadium@google.com"
] | sajjadium@google.com |
9fcac03d55c44e9237cd3c3dc32c31c909b7d370 | b76e2f6716bee9e1c2bebf2695b18a6d13ea32d1 | /學弟精選/10949 - Find Maximum in a binary tree/function.h | e2c40e56b76d863add31d0fb854abd807afa96a2 | [] | no_license | alice90270/NTHU_CPE | cac56ea8770b5f87f0fcc696556de86a921e87a5 | 0f94e64fcf481734fc14116ab3fbc6900f87de7c | refs/heads/master | 2020-05-24T16:39:53.465335 | 2017-08-05T14:11:35 | 2017-08-05T14:11:35 | 84,860,075 | 6 | 1 | null | null | null | null | UTF-8 | C | false | false | 352 | h | #include <stdlib.h>
typedef struct treeNode
{
int data;
struct treeNode *left;
struct treeNode *right;
} Node;
int idxSearch(int arr[], int strt, int end, int value);
Node* newNode(int val);
Node* constructTree(int inorder[], int preorder[], int inorder_start, int inorder_end);
void destroyTree(Node *ro... | [
"alice90270@gmail.com"
] | alice90270@gmail.com |
f3d1a32123ec744a3bc96efc9678f181c6129edf | ac5a8790a8d1da2858571c647f0346283caefc62 | /app/src/main/openssl_110g_succ/engines/ccgost/gost_grasshopper_core.c | 83bcbc6043fdafffc5ff56deba6fe1b690fa766b | [
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL"
] | permissive | Rhtyme/openssl-android-terminal | c12bab30813cbfec79aed69fa3451dc7d98fe01c | 50848b1f8858696a98a492e2414b7bd6c80a7f03 | refs/heads/master | 2021-05-14T05:40:26.560295 | 2018-01-29T15:41:51 | 2018-01-29T15:41:51 | 116,226,755 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,293 | c | /*
* Maxim Tishkov 2016
* This file is distributed under the same license as OpenSSL
*/
#if defined(__cplusplus)
extern "C" {
#endif
#include "gost_grasshopper_core.h"
#include "gost_grasshopper_math.h"
#include "gost_grasshopper_precompiled.h"
#include "gost_grasshopper_defines.h"
static GRASSHOPPER_INLINE void ... | [
"rhtyme@gmail.com"
] | rhtyme@gmail.com |
f09adf60b3ae4b27b4975fcfe71d488f6cbaf168 | 0ad9d015f110406421a5e50cec5c58ce8f8aa6c1 | /WORKSPACE_RESCAPT/stm32-nucleo-f103rb_base/Drivers/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q15.c | 5453c568d7cca23595aa1b449e4e3f19cce6bb29 | [
"MIT"
] | permissive | OlivierLemoine/bus_can | 286326d7c68322079bc117315df86023e54ffd2b | d3c9c6e5f304492225922c25843523fc04a3e22c | refs/heads/master | 2020-03-30T22:59:24.655222 | 2018-11-23T16:10:16 | 2018-11-23T16:10:16 | 151,686,501 | 4 | 0 | MIT | 2018-11-23T16:10:17 | 2018-10-05T07:37:49 | C | UTF-8 | C | false | false | 5,457 | c | /* ----------------------------------------------------------------------
* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
*
* $Date: 12. March 2014
* $Revision: V1.4.4
*
* Project: CMSIS DSP Library
* Title: arm_abs_q15.c
*
* Description: Q15 vector absolut... | [
"lemoineolivier35@gmail.com"
] | lemoineolivier35@gmail.com |
1cbf3c1b9eb287921f11daec71c5c3f5a0c41582 | 749fc61ed8ac007127ad6d49e4c8e6045e7c9988 | /src/images/archway/Arch_5_Full_RH.h | c6efc8d4eb434f40249e694160bef756aac8d746 | [
"BSD-3-Clause"
] | permissive | filmote/Karateka_Pokitto | 46e6b688c6a25d60fe40c9a9bc9308f4b83c8ec3 | 0448237eb5df93591955a1ca51ee066323cf90f3 | refs/heads/master | 2022-11-21T09:47:30.410273 | 2020-07-26T03:51:47 | 2020-07-26T03:51:47 | 273,423,834 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,586 | h | // Automatically generated file, do not edit.
#pragma once
const uint8_t Arch_5_Full_RH[] = {
22, 80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x40,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x40,
0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x40,
0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x0... | [
"simon@bloggingadeadhorse.com"
] | simon@bloggingadeadhorse.com |
e402e8b59f11ddf8693074bb3b9910590c541665 | a7bd3f140a8e30e3e66f7480ff0b9e406fda744a | /Generated_Source/PSoC5/Source_Dac.c | 83bd2de107c50b798886fff4115477c6e17e63a3 | [
"MIT"
] | permissive | glenn-edgar/psoc_5lp_moisture_sensor | 05131b7aa12111546756683040e34788cfdbc3bc | 48040f4a8813cfd472f774a879be4936fa989f65 | refs/heads/master | 2021-01-11T00:05:05.895266 | 2016-10-15T17:50:28 | 2016-10-15T17:50:28 | 70,758,398 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,939 | c | /*******************************************************************************
* File Name: Source_Dac.c
* Version 1.90
*
* Description:
* This file provides the source code to the API for the 8-bit Voltage DAC
* (VDAC8) User Module.
*
* Note:
* Any unusual or non-standard behavior should be noted here. Other-
... | [
"Glenn Edgar"
] | Glenn Edgar |
a10373233f25a89510fb2756dd22f86d7645a541 | cf667ca4c0a106979c61a8e47204815208775a28 | /src/main/hello_world.c | fb0823cbd0875748f691ff2bf03f6694ec422bc8 | [] | no_license | Lightnet/project-cpp-js | 9d23c7bf6e32004dd9dc5262b430c08b8804a0b3 | 5e6dfac80b4626d88bdf6a715a66326b18657343 | refs/heads/master | 2021-04-03T06:27:27.749737 | 2018-03-09T21:37:08 | 2018-03-09T21:37:08 | 124,595,749 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 76 | c | #include <stdio.h>
int _main() {
printf("hello, world!\n");
return 0;
} | [
"darkneter@gmail.com"
] | darkneter@gmail.com |
67f7d61c6d8ba449a33e9cbe75f8991b8d947e00 | ca2479b1f25cfd0b5a35c31ba6858c926a34cbe1 | /Praktikum 9 - Stack & Queue dengan Rep List/Review Praktikum 9/Soal No 2/Archive/mqueue.c | 031be1e5dbb72e9267f098d8433d1df0f0a98223 | [] | no_license | eightfold28/alstrukdat | ce4f0811ba6a6e111267341fe6c185fda7b3d470 | 3bfcc190c2fc7c8297fc03e53a518313734d0e62 | refs/heads/master | 2021-01-10T12:33:10.714886 | 2017-02-12T09:40:51 | 2017-02-12T09:40:51 | 47,308,689 | 4 | 7 | null | null | null | null | UTF-8 | C | false | false | 448 | c | #include "queue.h"
int main() {
Queue Q, Q1, Q2, Q3;
Infotype X;
int M, T, A, N, i;
CreateEmpty(&Q);
scanf("%d", &N);
for (i= 1; i<= N; i++) {
scanf("%d %d %d", &M, &T, &A);
X.nilaiMath= M;
X.lamaPelayanan= T;
X.waktuKedatangan= A;
X.mulaiPelayanan= 0;
X.id= i; //urutan kedatangan dmn input slalu te... | [
"13514028@std.stei.itb.ac.id"
] | 13514028@std.stei.itb.ac.id |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.