seq_id string | text string | repo_name string | sub_path string | file_name string | file_ext string | file_size_in_byte int64 | program_lang string | lang string | doc_type string | stars int64 | dataset string | pt string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
70262497323 | // yue-lingshan.c
inherit NPC;
void create()
{
object ob;
set_name("岳灵珊", ({ "yue lingshan", "yue", "lingshan" }) );
set("nickname", "小师妹");
set("gender", "女性" );
set("age", 17);
set("per", 29);
set("str", 16);
set("con", 24);
set("dex", 30);
se... | mudchina/xkx100 | d/huashan/npc/yue-lingshan.c | yue-lingshan.c | c | 1,743 | c | en | code | 22 | github-code | 19 |
15464659721 | /* $OpenBSD: isa_machdep.c,v 1.31 2020/09/29 03:06:34 guenther Exp $ */
/* $NetBSD: isa_machdep.c,v 1.22 1997/06/12 23:57:32 thorpej Exp $ */
#define ISA_DMA_STATS
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Fou... | openbsd/src | sys/arch/amd64/isa/isa_machdep.c | isa_machdep.c | c | 19,418 | c | en | code | 2,915 | github-code | 19 |
41412867699 | #include "ipclib.h"
#ifndef O_RDONLY
# include <fcntl.h>
#endif
#ifndef O_TRUNC
# define O_TRUNC 0
#endif
#ifndef O_CREAT
# define O_CREAT 0
#endif
#ifndef O_APPEND
# define O_APPEND 0
#endif
#ifdef __GNUG__
#define zapeof(x) ((x)&0377)
#endif
static String // includes trailing slash
dirname_plus(const String& a... | seyko2/cfront-3 | libSC/ipc/ipcbuf.c | ipcbuf.c | c | 7,102 | c | en | code | 68 | github-code | 19 |
29369417670 | #ifndef _KDP_H
#define _KDP_H
#ifndef __ASSEMBLY__
#ifndef LINKER_SCRIPT
#include <linux/rkp.h>
#ifdef CONFIG_KDP_NS
#include <linux/mount.h>
#endif
/* uH_RKP Command ID */
/*
Add KDP call IDs
*/
/***************** KDP_CRED *****************/
#define CRED_JAR_RO "cred_jar_ro"
#define TSEC_JAR "tsec_jar"
#define V... | pascua28/android_kernel_samsung_s20fe | include/linux/kdp.h | kdp.h | h | 3,632 | c | en | code | 11 | github-code | 19 |
27006502928 | #pragma once
#ifndef PT_D3D9_RENDERING_VIEW_VARIABLES_H
#define PT_D3D9_RENDERING_VIEW_VARIABLES_H
#include "simple_variable_owner.h"
#include "matrix4x4f_setters.h"
#include "vector3f_setters.h"
#include "time_setter.h"
#include "animatable_setter.h"
#include "pt/d3d9/constant.h"
#include "pt/math/plane.h"
namespace... | Codarki/Pyrotech_2016 | democodebase/pt/d3d9/rendering/view_variables.h | view_variables.h | h | 3,920 | c | en | code | 0 | github-code | 19 |
24102728634 | /******************************************************************************
*
* Cisco Systems, Inc.
*
* Copyright (c) 2008 by Cisco Systems, Inc.
* All rights reserved.
*
******************************************************************************
*
* File:
*
* Description: Kernel module basic types.
... | wmanley/cisco-vqe-client | include/utils/kmod/vam_types.kmod.h | vam_types.kmod.h | h | 6,749 | c | en | code | 9 | github-code | 19 |
70943645485 | #include "menu.h"
int salvarCliente(cliente **client){
cliente *lst;
FILE *ptArq;
lst = *client;
ptArq = fopen("DadosClientes.csv", "w");
if(ptArq == NULL){
printf("Erro ao salvar Clientes");
pausa();
return 0;
}
while(lst != NULL){
... | augustov7/Trabalho-alg2 | ioArquivos.c | ioArquivos.c | c | 4,246 | c | pt | code | 0 | github-code | 19 |
1009420092 | #include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "tagdb.h"
/* TOKENS */
#define NULLTOKEN 0
#define END 1
#define ID 2
#define SEPARATOR 3
#define NL 4
#define EQ 5
static char *infile; /* file being parsed */
static char word[128];
static int lineno;
/* ---------------- private routines -... | starsareintherose/staden-lg | src/staden/tagdbparse.c | tagdbparse.c | c | 6,832 | c | en | code | 0 | github-code | 19 |
32123689928 | #include<stdio.h>
// First Fibonacci function
int fib1(int n){
if (n < 2)
return n;
else
return fib1(n-1)+fib1(n-2);
}
main(){
int x;
x = fib1(8);
printf("%d\n",x);
}
| anoya97/Algorithms | Practicas/practica1/function_fib/fib1.c | fib1.c | c | 180 | c | uk | code | 0 | github-code | 19 |
22861707795 | #include "lists.h"
/**
* insert_dnodeint_at_index - insert node at index
* @h: linked list
* @idx: posisiton to insert
* @n: data
* Return: address of new node or null if failed
*/
dlistint_t *insert_dnodeint_at_index(dlistint_t **h, unsigned int idx, int n)
{
dlistint_t *new_node;
dlistint_t *tmp;
unsigned i... | sidcarrollworks/holbertonschool-low_level_programming | 0x16-doubly_linked_lists/7-insert_dnodeint.c | 7-insert_dnodeint.c | c | 859 | c | en | code | 0 | github-code | 19 |
30484858368 | #include<stdio.h>
#include<math.h>
#include<time.h>
int main(){
int n, massiv[10] ;
printf("son=",n);
scanf("%d",&n);
for(int i=n; i<10; i+=2){
printf("%d\n",n);
}
if(n<=10&&n>=10)
printf("%d",n);
return 0;
} | muhammadyusuf05/neyron-tizimi | funksiya-19.c | funksiya-19.c | c | 230 | c | uk | code | 0 | github-code | 19 |
19629067469 |
#ifndef MERGESORT_H
#define MERGESORT_H
#include <stack>
using namespace std;
template<typename T>
class MergeSort
{
private: //private member
stack<T*> pointers;
public: //public methods
void sort(T arr[], int size);
~MergeSort();
private: //private methods
T* merge(T* left, T* right, int sizeLeft, int ... | lchavez287/eecs_268 | Lab08/MergeSort.h | MergeSort.h | h | 400 | c | en | code | 0 | github-code | 19 |
75070506284 | /*
* libInstPatch
* Copyright (C) 1999-2014 Element Green <element@elementsofsound.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1
* of the License only.
*
* T... | deepin-community/libinstpatch | libinstpatch/IpatchSF2File_priv.h | IpatchSF2File_priv.h | h | 4,538 | c | en | code | 0 | github-code | 19 |
30794735611 | /**
* @file mousewheel.h
*
*/
#ifndef MOUSEWHEEL_H
#define MOUSEWHEEL_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#ifndef LV_DRV_NO_CONF
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_drv_conf.h"
#else
#include "../../lv_drv_conf.h"
#endif
#endif
#if USE_M... | peng-zhihui/HoloCubic | 3.Software/LvglSimulator/vs2019_proj/lv_drivers/indev/mousewheel.h | mousewheel.h | h | 1,451 | c | en | code | 5,621 | github-code | 19 |
39265860420 | #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
/* ULOHA 6.1
int main() {
char riadok[258];
int length = 1;
while (length != 0) {
gets(riadok);
length = strlen(riadok);
for (int i = 0; i < length; i++) {
if (riadok[i] == '*') {... | Arman148/C-Exercises | CV_6/CV_6/Source.c | Source.c | c | 1,708 | c | en | code | 0 | github-code | 19 |
18339723649 | #include "Red.h"
///// ´ÙµÈµí
CRed::CRed(void)
{
}
CRed::~CRed(void)
{
}
bool CRed::MissionTest(_us (*img)[256]){
return false;
}
TSEND CRed::Missioning(_us (*img)[256], int now){
switch(now){
case 0:
m_send = Step1(img);
break;
case 1:
m_send = Step2(img);
break;
}
return m_send;
}
TSEND CRed::Ste... | JunHyeongJeon/SoCRobotWar | Soc_Cam/Red.c | Red.c | c | 1,233 | c | en | code | 0 | github-code | 19 |
38815527612 | #include<stdio.h>
main()
{
int intV=0;
char charV='a';
float floatV=3.14;
int *pInt=&intV;
char *pChar=&charV;
float *pFloat=&floatV;
*pInt=13;
printf("%d", intV);
printf("\n%d", pInt);
*pChar='b';
printf("\n%c", charV);
printf("\n%d", pChar);
*pFloat=2.23;
printf("\n%.2f", flo... | Reikonz/CLearning | CECS121/InClass6.c | InClass6.c | c | 359 | c | uk | code | 0 | github-code | 19 |
2258908955 | //
// AiyaGPUImageTrackFilter.h
// AiyaCameraSDK
//
// Created by 汪洋 on 2016/10/27.
// Copyright © 2016年 深圳哎吖科技. All rights reserved.
//
#import "AYGPUImageFilter.h"
#import "AiyaCameraEffect.h"
@interface AiyaGPUImageTrackFilter : NSObject <AYGPUImageInput>
- (id)initWithAiyaCameraEffect:(AiyaCameraEffect *)cam... | qingcai518/MySceneKit | libs/Aiya/AiyaCameraSDK.framework/Headers/AiyaGPUImageTrackFilter.h | AiyaGPUImageTrackFilter.h | h | 356 | c | en | code | 1 | github-code | 19 |
72217948202 | //
// Bridge.h
// MoneySplit
//
// Created by Yang Hu on 11/19/15.
// Copyright © 2015 Aiqi Liu. All rights reserved.
//
#ifndef Bridge_h
#define Bridge_h
#import <EstimoteSDK/EstimoteSDK.h>
#endif /* Bridge_h */
| yhx189/moneySplit | MoneySplit/Bridge.h | Bridge.h | h | 220 | c | en | code | 0 | github-code | 19 |
4283704307 | bool isToeplitzMatrix(int** matrix, int matrixRowSize, int *matrixColSizes)
{
int temp[matrixColSizes[0]];
int i,j;
for (i = 1;i < matrixRowSize;i++)
{
for (j = 1;j < matrixColSizes[0];j++)
{
if (matrix[i][j] != matrix[i-1][j-1])
return false;
}
}
... | Merlecmx/leet | lc766.c | lc766.c | c | 339 | c | en | code | 0 | github-code | 19 |
39731071803 | #pragma once
#include "../B/BSExtraData.h"
#include "../B/BSPointerHandle.h"
#include "../B/BSTArray.h"
#include "../E/ExtraDataTypes.h"
namespace ConsoleRE
{
class ExtraFollower : public BSExtraData
{
public:
static constexpr int TypeID = ExtraDataType<ExtraDataTypes::kFollower>;
struct FollowerInfo
{
A... | Backporter/OrbisLibBGS-prod | CSEL/source/E/ExtraFollower.h | ExtraFollower.h | h | 625 | c | en | code | 1 | github-code | 19 |
16815601850 | // Write a program to pass the elements of an array to a function and check how many numbers are prime.
#include <stdio.h>
int prime(int a)
{
for (int i = 2; i <= a / 2; i++)
{
if (a % i == 0)
return 0;
}
return 1;
}
void main()
{
int a, count = 0;
printf("How many array ele... | ShreyasAwankar/Orlando-C-assignments | 28-Sept-2022/que2.c | que2.c | c | 606 | c | en | code | 0 | github-code | 19 |
11094092898 | #include "arch.h"
#ifdef MMX_COEF_SHA512
#ifdef _OPENMP
#include <omp.h>
#if defined __XOP__
#define OMP_SCALE 768 /* AMD */
#else
#define OMP_SCALE 2048 /* Intel */
#endif
#endif
#include <string.h>
#include "stdint.h"
#include "common.h"
#include "formats.h"
#include "sse-intrinsics.... | miguelps/JohnTheRipper | src/rawSHA512_ng_i_fmt.c | rawSHA512_ng_i_fmt.c | c | 14,010 | c | en | code | null | github-code | 19 |
14926463437 | /*
* Syslink-IPC for TI OMAP Processors
*
* Copyright (c) 2008-2010, 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 sou... | tpruvot/android_hardware_ti_omap4 | syslink/syslink/api/include/Atomic_Ops.h | Atomic_Ops.h | h | 6,384 | c | en | code | 7 | github-code | 19 |
32771683860 | //
// BridgingHeader.h
// HipChatStringParser
//
// Created by Sai Tat Lam on 30/04/2016.
// Copyright © 2016 Sai Tat Lam. All rights reserved.
//
#ifndef BridgingHeader_h
#define BridgingHeader_h
#import "HCConstants.h"
#import "HCObject.h"
#import "HCMessage.h"
#import "HCLink.h"
#import "HCParserFactory.h"
#im... | lamsaitat/hip-chat-string-parser-ios | HipChatStringParser/headers/BridgingHeader.h | BridgingHeader.h | h | 886 | c | en | code | 1 | github-code | 19 |
44310718789 | #include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <pthread.h>
#include <signal.h>
#include <semaphore.h>
#include <unistd.h>
#include <mqueue.h>
#include <fcntl.h>
#include <time.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <limits.h>
#include <features.h>
#define DURAT... | bobocop/fer | szrusv/lab5/generator.c | generator.c | c | 3,139 | c | en | code | 0 | github-code | 19 |
70294577963 | /*****************************************************/
/* Author : mosad */
/* Version : v01 */
/* date : 5/9/2020 */
/*****************************************************/
#ifndef OS_PRIVATE_H
#define OS_PRIVATE_H... | xMosad/STM32-SDK | 04 - SERVICE/01 - OS/OS_private.h | OS_private.h | h | 637 | c | zh | code | 9 | github-code | 19 |
22376800329 | #include <utility>
//
// Created by Thierry Backes on 20/10/18.
//
#ifndef PATHTRACER_HITABLE_LIST_H
#define PATHTRACER_HITABLE_LIST_H
#include <cstdio>
#include <iostream>
#include <vector>
#include "hitable.h"
class hitable_list: public hitable{
public:
hitable_list() = default;
explicit hitable_list(std:... | lyinch/pathtracer | hitable_list.h | hitable_list.h | h | 1,837 | c | en | code | 0 | github-code | 19 |
72746853804 | /**************************************************************/
/* Low Level Register Access Example */
/* */
/* This example uses low level register functions to read the */
/* offset register of a VXI device at logical address 0.... | zsimpson/sdkpub | VXIPNP/WinNT/NIvisa/Examples/C/Vxi-vme/LowReg.c | LowReg.c | c | 6,419 | c | en | code | 13 | github-code | 19 |
70151525805 | //=============================================================================
// "Arduino" example program for Crystalfontz ePaper.
//
// This project is for the CFAP128296C0-0290 :
//
// https://www.crystalfontz.com/product/cfap128296d00290
//=======================================================================... | FrankBuss/wifi-epaper | stm32L433-test/cube/test/Src/ePaper_CFAP128296D00290.c | ePaper_CFAP128296D00290.c | c | 8,498 | c | en | code | 13 | github-code | 19 |
70263833963 | // Room: /d/wuxi/road7.c
// Winder 2000/02/22
inherit ROOM;
void create()
{
set("short", "林荫道");
set("long", @LONG
一条不宽的林荫道,两排香樟树在路两边搭起了一个天然的凉蓬,
中间夹杂着一些杨柳树,在风中摇摇荡荡,令人心旷神怡。北面是清
名桥,向南一直通向太湖。西边有一条小道,通向梅村的泰伯庙。
LONG );
set("outdoors", "wuxi");
set("no_clean_up", 0);
set("exits", ([
"west" : __DIR__"road8",
"so... | mudchina/xkx100 | d/wuxi/road7.c | road7.c | c | 575 | c | zh | code | 22 | github-code | 19 |
28377178890 | //
// DetailViewController.h
// Fruitmunch
//
// Created by jrk on 7/12/10.
// Copyright 2010 flux forge. All rights reserved.
//
#pragma oncde
#import <UIKit/UIKit.h>
#import <StoreKit/StoreKit.h>
#import "CocosDenshion.h"
#import "CDAudioManager.h"
@interface MinyxStoreDetailViewController : UIViewController
{
... | kybernetyk/FrameworkV3 | Classes/ComponentV3/Runtime/Platforms/iOS/Minyx Store/DetailViewController/MinyxStoreDetailViewController.h | MinyxStoreDetailViewController.h | h | 1,502 | c | en | code | 1 | github-code | 19 |
72131459563 | void bfs(){
int i;
//queue variables
int queue[500];
int rear = -1;
int front = 0;
int queueItemCount = 0;
//graph variables
//array of vertices
struct Vertex* lstVertices[MAX];
//adjace
//mark frist node as visited
lstVertices[0]->visited = true;
//d... | adrian-santos/data-structures | homework6/hw7/bfs.c | bfs.c | c | 422 | c | en | code | 0 | github-code | 19 |
29928862273 | /* File : aropen.c
Author : Richard A. O'Keefe
Updated: 12/10/98
Purpose: Reading members of UNIX archive files.
SeeAlso: aropen.pl, man 5 ar, man 1 ar
Copyright (C) 1987, Quintus Computer Systems, Inc. All rights reserved.
This file defines
QARopen(+Archive, +Member, -Stream) -> Errno
... | mclumd/Alfred | quintus_prolog/quintus3.5/generic/qplib3.5/library/aropen.c | aropen.c | c | 6,148 | c | en | code | 2 | github-code | 19 |
10754760158 | #include "primpl.h"
#include <sys/timeb.h>
struct _MDLock _pr_ioq_lock;
HINSTANCE _pr_hInstance = NULL;
char * _pr_top_of_task_stack;
_PRInterruptTable _pr_interruptTable[] = { { 0 } };
/*
*-----------------------------------------------------------------------
*
* PR... | thalium/icebox | third_party/virtualbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/w16null.c | w16null.c | c | 1,468 | c | en | code | 550 | github-code | 19 |
15331493961 | #include "defs.h"
#include "complaints.h"
#include "gdb_assert.h"
#include "command.h"
#include "gdbcmd.h"
extern void _initialize_complaints (void);
/* Should each complaint message be self explanatory, or should we assume that
a series of complaints is being produced? */
/* case 1: First message of a series th... | openbsd/src | gnu/usr.bin/binutils/gdb/complaints.c | complaints.c | c | 8,781 | c | en | code | 2,915 | github-code | 19 |
34397885781 | #include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
//función para la comunicación con el socket creado
int comunicacion(int puerto, char* ip, char *arch);
void menu();
void busqueda(int opc);
char** archivos;
int main(in... | Anne0w0/P2P1 | cliente/client.c | client.c | c | 6,409 | c | es | code | 0 | github-code | 19 |
20676558928 | //output for static keyword
#include<stdio.h>
void f1()
{
static int b=0;
printf("b = %d\n", b);
b++;
}
int main()
{
f1();
f1();
f1();
f1();
}
/*
$ ./static_stack
b = 0
b = 1
b = 2
b = 3
*/ | sonusonali/C-Programs | static_stack.c | static_stack.c | c | 213 | c | en | code | 0 | github-code | 19 |
7631368961 |
#include <stdio.h>
#if 1
#include "lua.h"
#include "iglobal.h"
#include "itable.h"
#include "idrv.h"
#endif
#include <iup.h>
//printf("gggg\n"); PrintListItems(IupGetHandle("list_analyze"));
static void PrintListItems(Ihandle *e)
{
char *index = NULL;
Itable *it = env(e);
while ((index=iupTableNext(it, index)... | ewmailing/IupNext | iup2/test/iuplist/value1.c | value1.c | c | 1,998 | c | en | code | 9 | github-code | 19 |
39571710822 | #ifndef IXIS_IMCS01_DRIVER_H
#define IXIS_IMCS01_DRIVER_H
#include <ros/ros.h>
#include <sensor_msgs/JointState.h>
#include <vector>
#include <string>
#include <mutex>
#include <termios.h>
#include "urbtc.h"
#include "urobotc.h"
#define JOINT_INDEX_REAR_RIGHT 0
#define JOINT_INDEX_REAR_LEFT 1
#define JOINT_INDEX_FR... | CIR-KIT-Unit03/cirkit_unit03_robot | cirkit_unit03_base/include/ixis_imcs01_driver/ixis_imcs01_driver.h | ixis_imcs01_driver.h | h | 1,722 | c | en | code | 0 | github-code | 19 |
43323825036 | /* ============================================================ *
* bao.h *
* Martin Kilbinger 2008 *
* ============================================================ */
#ifndef __BAO_H
#define __BAO_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "pmctools/errorlist.h"
#include "pm... | CosmoStat/CosmoPMC | wrappers/include/bao.h | bao.h | h | 1,410 | c | en | code | 1 | github-code | 19 |
31541345189 | /*
* This file is part of QtPollyNom.
*
* QtPollyNom 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.
*
* QtPollyNom is distribu... | tristhaus/QtPollyNom | BackendTest/testexpressionbuilder.h | testexpressionbuilder.h | h | 2,580 | c | en | code | 0 | github-code | 19 |
18556448805 | #include "pnal.h"
#include "pnet_options.h"
#include "options.h"
#include "osal_log.h"
#include <net/ethernet.h>
#include <net/if.h>
#include <netpacket/packet.h>
#include <sys/ioctl.h>
#include <stdlib.h>
#include <string.h>
struct pnal_eth_handle
{
pnal_eth_callback_t * callback;
void * arg;
int socket;
... | rtlabs-com/p-net | src/ports/linux/pnal_eth.c | pnal_eth.c | c | 4,191 | c | en | code | 383 | github-code | 19 |
50510396593 | #include "graph.h"
#include <math.h>
// This function initializes an adjacency list for
// a graph.
//
// Note that adj list is an array of """adj_node_t*""" which is passed
// in by reference.
// That is, you are passing in a pointer (i.e, *) to an array (i.e., *)
// of adj_node_t*, which is why list is of type adj... | olivialpannell/school_work | ProgrammingConcepts/CS330/hw04/graph.c | graph.c | c | 6,209 | c | en | code | 0 | github-code | 19 |
19309272199 | #include <string.h>
unsigned char xkey[17] = { 0x6E, 0xC2, 0xE1, 0x2D, 0x05, 0xF8, 0x68, 0x71, 0xAF, 0x76, 0x68, 0xFD, 0xF8, 0x76, 0xA3, 0x82, 0x00 };
int seed = 0x1337;
int rand()
{
seed = 214013 * seed + 0x269EC3;
return (seed >> 16) & 0x7FFF;
}
unsigned int rol(unsigned char a1, char a2)
{
return (a... | L4ys/LazyKLEE | example/TMCTF-2017-REV400/solve.c | solve.c | c | 917 | c | en | code | 66 | github-code | 19 |
27071496017 | #ifndef __SpinnerAdapter_H__
#define __SpinnerAdapter_H__
namespace NSDEVICE
{
class BaseAdapter;
class SpinnerAdapter : public Adapter
{
friend BaseAdapter;
public:
virtual ~SpinnerAdapter()
{
}
virtual View* getDropDownView(int position, View* convertView, ViewGroup* parent) = 0;
protected:
... | wengerclub/aXplorience | app/src/main/cpp/include/nclozer/nkross/device/widget/SpinnerAdapter.h | SpinnerAdapter.h | h | 483 | c | en | code | 0 | github-code | 19 |
72018524204 | //
// AppDelegate.h
// ArchiPeda
//
// Created by Jeffrey Delawder Jr on 10/13/12.
// Copyright (c) 2012 Jeffrey Delawder Jr. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
| Glchriste/Architecture_Pedagogical_App | ArchiPeda/AppDelegate.h | AppDelegate.h | h | 296 | c | en | code | 0 | github-code | 19 |
36167437639 | #include "Node.h"
template <typename T>
class ListaOrdenada
{
private:
Node<T> *Head;
int N;
public:
bool insert(T X)
{
Node<T> *P = Node<T> ::MontaNode(X);
if (!P)
return false;
Node<T> **K = &Head;
int M = X.Mat;
while ((*K) && ((*K)->D).Mat <=... | Raikyr4/Estrutura_de_Dados | Lista/ListaOrdenada.h | ListaOrdenada.h | h | 1,400 | c | en | code | 1 | github-code | 19 |
2760575202 | #pragma once
#include <optional>
#include <QString>
#include <QVariant>
#include <mpv/client.h>
// ========================================================
// MPV type conversion
// ========================================================
namespace mpv_type {
// mpv/C type mapping
template<typename T>
struct format... | Orochimarufan/Midoku | src/mpv/mpv_type.h | mpv_type.h | h | 2,815 | c | en | code | 0 | github-code | 19 |
29063631843 | /*
* Copyright 2014-present Alibaba Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | Hansonwong47/havenask | aios/plugins/indexlib_plugin/plugins/aitheta/util/parallel_merge/parallel_merge_util.h | parallel_merge_util.h | h | 2,048 | c | en | code | null | github-code | 19 |
73228929642 | /*
* Copyright (c) 2009,
* Computational Image and Simulation Technologies in Biomedicine (CISTIB),
* Universitat Pompeu Fabra (UPF), Barcelona, Spain. All rights reserved.
* See license.txt file for details.
*/
#ifndef _wxMitkMultiSliceFactory_H
#define _wxMitkMultiSliceFactory_H
#include "wxMitkWidgetsWin32Header.h... | jakubsadura/Swiezy | src/Modules/wxMitk/libmodules/wxMitkWidgets/include/wxMitkMultiSliceFactory.h | wxMitkMultiSliceFactory.h | h | 1,029 | c | en | code | 3 | github-code | 19 |
23949072973 | /*
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _HARDWARE_STRUCTS_SCB_H
#define _HARDWARE_STRUCTS_SCB_H
#include "hardware/address_mapped.h"
#include "hardware/regs/m0plus.h"
// SCB == System Control Block
typedef struct {
io_ro_32 cpuid;
io_rw_32 i... | Klipper3d/klipper | lib/rp2040/hardware/structs/scb.h | scb.h | h | 489 | c | en | code | 7,817 | github-code | 19 |
70257410923 | //sgzl
#include <ansi.h>
inherit NPC;
#include "huoyannpc2.h"
void create()
{
set_name("魔礼红", ({ "moli hong", "guangmu tianwang", "hong", "tianwang" }) );
set("gender", "男性" );
set("long",
"魔家四将之一,使一杆方天画戟,秘授一把伞。名曰:「混元伞。」\n"
"伞皆明珠穿成,有祖母绿,祖母碧,夜明珠,辟尘珠,辟火珠,辟水\n"
"珠,消凉珠... | mudchina/xyj2006 | world/d/dntg/sky/npc/tianwang2.c | tianwang2.c | c | 2,463 | c | en | code | 17 | github-code | 19 |
24337030322 | //
// RPGiftPointV.h
// Market
//
// Created by 陆楠 on 15/3/25.
// Copyright (c) 2015年 lunan. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AddressBookUI/AddressBookUI.h>
#import <AddressBook/AddressBook.h>
@protocol RPGiftPointVDelegate <NSObject>
-(void)RPGiftPointVButtonPressed:(id)info;
@end
@int... | XIAOXIAO8023/https---git.oschina.net-zify-woxin | MyMobileServiceYN/MyMobileServiceYN/Market/MaretUI/MKAboutPoint/RegiftPoint/RPGiftPointV.h | RPGiftPointV.h | h | 1,143 | c | en | code | 0 | github-code | 19 |
42094134490 | /*
// Copyright (c) 2010-2017 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | opnfv/samplevnf | VNFs/DPPD-PROX/stats_port.h | stats_port.h | h | 1,918 | c | en | code | 21 | github-code | 19 |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 148