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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1a7f0710bcb41c29f9cf8f7186a8f6c50db7e7be | 8b80d68f9f187c17dadf41d1ec1647e55c093e56 | /C-Algorithm/TEST1.c | b31769c7566e3d46b2a8e4301788b1d8f4854acf | [] | no_license | EstherChenn/C-Algorithm | 906949aa442175bf86e4146a4db7a9cd1da171b0 | 59e3af37b8e6f6cb7489493bcf2952e500db446e | refs/heads/master | 2022-12-07T02:23:42.995452 | 2020-08-31T23:11:51 | 2020-08-31T23:11:51 | 281,802,991 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 360 | c | #include <stdio.h>
/**
第7章 图
*/
//写出从图的邻接表表示转换成邻接矩阵表示的算法
//设有向图用邻接表表示,图有n个顶点,表示为1~n,试写一个算法求顶点k的入度
//写出以邻接表为存储结构的图的深度优先搜索DFS算法的非递归算法
/**
第8章 图
*/
int main() {
printf("hh!\n");
} | [
"46521202+EstherChenn@users.noreply.github.com"
] | 46521202+EstherChenn@users.noreply.github.com |
e1c2bf548bfbfceed3040384da6b6eebe8cc7469 | 9f2a10f2845d3ecbd308947cb8bd96ff5506e656 | /Manchester encoder-decoder.cydsn/Generated_Source/PSoC5/Pin_5_aliases.h | 98a4418fb9e87456482b8bc51b5e7911af049def | [] | no_license | evgalivan/seismic_analysis | 61fe9718325e5e1b1ebbc7e539c44007333685f4 | 00639819323bcc3d94baabad9ebae80c79568bae | refs/heads/master | 2022-05-01T03:15:22.055642 | 2020-02-18T07:12:55 | 2020-02-18T07:12:55 | 215,049,835 | 2 | 1 | null | 2020-07-23T10:48:55 | 2019-10-14T13:21:57 | C | UTF-8 | C | false | false | 1,270 | h | /*******************************************************************************
* File Name: Pin_5.h
* Version 2.20
*
* Description:
* This file contains the Alias definitions for Per-Pin APIs in cypins.h.
* Information on using these APIs can be found in the System Reference Guide.
*
* Note:
*
********... | [
"noreply@github.com"
] | evgalivan.noreply@github.com |
46a915d54d771d7799c4a86d95af2f3bb62d9f5d | 871e951056a675db4018badc01a7a2b6a00cb65f | /Delete_All.c | 497072e41c91c456a5b6602e7b2632cd437ec4e2 | [] | no_license | Razeri90/HW_8_1 | f9791ebac5b4cfe8bf0362ea3251271e0f4c9263 | 89cc53682462dc6f712785cbb496742ca90757ff | refs/heads/master | 2023-04-09T18:25:04.356321 | 2021-04-13T15:14:17 | 2021-04-13T15:14:17 | 357,596,165 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,206 | c | Delete_All()
{
/* delete all */
tName = "09.Itinerary_all_ticket";
lr_start_transaction(tName);
status=web_reg_save_param_ex(
"ParamName=FlightID",
"LB/IC=name=\"flightID\" value=\"",
"RB/IC=\" ",
"Ordinal=all",
LAST);
status=web_url("Itinerary Button",
"URL={host}... | [
"33349208+Razeri90@users.noreply.github.com"
] | 33349208+Razeri90@users.noreply.github.com |
61369b56902463e25dd43c8d95915b6f873ddaeb | b16a377442b112b84570983e8e7d622f16dcc396 | /MOOC/MOOC 5.3.2-1.c | aea245691b37811ee2ed76beca492c0ee26e57cb | [] | no_license | j867178942/answer-for-C-PrimerPlus | 872fa16a49766f6277ad0ab33906c6f9daa8c9a2 | e5c855055dff1d889e91f9d746caa4f44dacd146 | refs/heads/master | 2023-04-01T12:21:31.577359 | 2017-10-27T04:23:40 | 2017-10-27T04:23:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 304 | c | #include <stdio.h>
int main()
{
int x;
x=700;
int t=0;
int digit=0;
while(x>0){
digit=x%10;
t=t*10+digit;
x=x/10;
}
printf("t=%d\n", t);
//scanf("%d", &x);
x=t;
while(x>0){
digit=x%10;
printf("%d",digit);
if(x>9){
printf(" ");
}
x=x/10;
}
return 0;
}
| [
"noreply@github.com"
] | j867178942.noreply@github.com |
fa919212eff080ad3139d25206b67196cc7d9d4e | 7f68f334b5f2cfba3bd4d04722d7292e979bef6a | /PropDC.X/emptyMap.h | 2291b52a7faf307747fefe61a020bb0aa59a5499 | [] | no_license | Bulbot/mainRobot | 063c71d68f2bad0e1a5d4797c26dd9966169b11f | 79f38708c7133659d2c0debb97a11941b9f2a26d | refs/heads/master | 2021-05-02T12:17:53.999377 | 2018-02-22T19:55:42 | 2018-02-22T19:55:42 | 47,341,563 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 3,727 | h | const signed char initialMap[MAP_SIZE] =
{ UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR,
UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR, UNPR,
UNPR, UNPR, UNPR, UNPR, UNPR, UNP... | [
"mosee@ulb.ac.be"
] | mosee@ulb.ac.be |
79dec4faeaa62f2d7c0490d86cedad185a5d24a0 | cfe69fc556729bdecf2118fa5bc329343c42ed80 | /10.0.10240.16384/ntoskrnl/Functions/MmGetMinWsPagePriority.c | 8a9ef1369777103ac98421d4e4c2328e1ef07d6c | [] | no_license | Myprivateclonelibrary/W10M_unedited-decomp | 8e5ec89a20e634ffc53457a40b0fd6d8a9e1757a | 67b05851a3e262ff8a5d11ee50db34f28c350f16 | refs/heads/main | 2023-08-31T06:00:37.303105 | 2021-05-15T23:53:23 | 2021-05-15T23:53:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 74 | c | // MmGetMinWsPagePriority
int MmGetMinWsPagePriority()
{
return 1;
}
| [
"64583248+Empyreal96@users.noreply.github.com"
] | 64583248+Empyreal96@users.noreply.github.com |
e346de01667172e6cb2f21aaa095fbd4dfa8c3a2 | 541fced83cba3dad1f03f7430da54e7efe328a0b | /rush_01/ex00/sudoku.c | 2212515a840eebb8adcd5d1aa253928e436787c0 | [] | no_license | iJUK3i/eop | 11cb3748f5ef9bf246c7f8575c5f920f908e71c1 | ef310c070bbcb9c3bf4b01cb82a219f9d6d8aacd | refs/heads/master | 2021-09-06T03:50:38.595905 | 2018-02-02T07:03:16 | 2018-02-02T07:03:16 | 119,939,840 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,207 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* rush01.c :+: :+: :+: ... | [
"issmith@e1z1r5p29.42.us.org"
] | issmith@e1z1r5p29.42.us.org |
c3f4543fbe1ffb7c690be07d6b1984fe8f05d173 | 979b595a2f8cb2df6846c1d9d666d2a93e6f0823 | /dataset/source/NVD/CVE_2013_0850_PATCHED_decode_slice_header.c | 5d89d9303e1864968be794cb0a2e5330a39712ad | [
"Apache-2.0"
] | permissive | ZouzhiqiangNxf/AutoVAS | c4647ddedaf4b694b0c4f6772983d3e723b39183 | 99a92411c21241f7030b3c3b697c4161aaaf852b | refs/heads/master | 2023-07-11T01:44:36.757798 | 2021-09-02T01:01:57 | 2021-09-02T01:01:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 34,365 | c | static int CVE_2013_0850_PATCHED_decode_slice_header(H264Context *h, H264Context *h0)
{
MpegEncContext *const s = &h->s;
MpegEncContext *const s0 = &h0->s;
unsigned int first_mb_in_slice;
unsigned int pps_id;
int num_ref_idx_active_override_flag;
unsigned int slice_type, tmp, i, j;
int defa... | [
"kppw99@gmail.com"
] | kppw99@gmail.com |
8d2486ef6030ccbc5af2af5f7cb3abe61d7cb1f2 | 374c0814f16a53f63a49dc44f10609eb3523181e | /inc/ushinc.h | 3df74375187cb8bb4593ff97d5283d311b20726d | [] | no_license | Overwolf-live/Ucode-ush | 0d38f6d33ef5064d596df1a1daedee388b13ba1a | eccad66f7dd474ce204ffd1dbcc808eacba9c380 | refs/heads/main | 2023-02-02T13:43:48.531297 | 2020-12-21T14:15:32 | 2020-12-21T14:15:32 | 313,264,017 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 507 | h | #pragma once
#include <curses.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <limits.h>
#include <malloc/malloc.h>
#include <pwd.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/acl.h>
#in... | [
"dzelenskyi@c1r4p8.khpi.ucode-connect.study"
] | dzelenskyi@c1r4p8.khpi.ucode-connect.study |
c05bca128bca7bc845a9b5da4f8537ad26b79422 | c42a0098c898fa7103624946fb911f2828ab6035 | /amsip/amsip/src/am_ms2_udpftp.c | 6dd41f28e404317a9b2da9f0d1213cc16613fc49 | [] | no_license | EthanGit/SecureLine_1.0_iOS | 2284945e68cbf9ca2ca41c5c7781e040f3ff145a | 8ec1773bbffe30829abeeacda71570777daa575e | refs/heads/master | 2021-05-27T20:32:09.107515 | 2012-07-26T09:40:59 | 2012-07-26T09:40:59 | 5,253,737 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 25,714 | c | /*
amsip is a SIP library for softphone (SIP -rfc3261-)
Copyright (C) 2003-2012 Aymeric MOIZARD - <amoizard@gmail.com>
*/
#include "am_calls.h"
#include <ortp/ortp.h>
#ifndef DISABLE_SRTP
#include <ortp/srtp.h>
#endif
#include "mediastreamer2/msrtp.h"
#include <osip2/osip_time.h>
#include <osip2/osip_mt.h>
... | [
"Light@snatalk.com"
] | Light@snatalk.com |
6c93f52813df9251037b26493ded4bec6e6150f3 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/kernel/time/extr_tick-broadcast-hrtimer.c_bc_shutdown.c | 1e72b5284ba75aa1d2755dae8cb8cfc16f56634d | [] | 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 | 980 | 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 |
57b4b68350122fbd18360879c712949f84510a06 | 90a30f0618ea9dcc991cc9b8f8e6e212b8c3f9b0 | /5readn_writen/echocli.c | 7fce9eb7b11364f501d0eb7d42ccb77258d55613 | [] | no_license | gatement/c-socket | 0d686529baf6fe2094f413e3b6e95884f3f61424 | 40b7dfb6349d5b5e7d36f0b3c50459ce40568086 | refs/heads/master | 2021-01-25T03:18:38.032003 | 2020-04-15T06:39:43 | 2020-04-15T06:39:43 | 12,431,496 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,748 | c | #include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <string.h>
#include "helper.h"
#define ERR_EXIT(m) \
do { \
perror(m); \
exit(EXIT_FAILURE); \
} wh... | [
"gatement@gmail.com"
] | gatement@gmail.com |
b13a95ab8b85a4844d3f12c48aaf752759b1bd09 | 748f250dd173b83fa8bf17f57c22543a5ad4f996 | /PWGMM/Lumi/vdM/vdmUtilities.h | 76de8d4b7adbb288e21147504c894718253c050d | [] | permissive | mawulff/AliPhysics | 4520620e27167ca9bfc4da27a0b26f8749f8e878 | 1470f2fa015104578048c7c87643abe50e4f2f65 | refs/heads/master | 2020-06-14T01:04:30.834912 | 2019-07-12T11:27:50 | 2019-07-12T11:27:50 | 190,547,812 | 0 | 0 | BSD-3-Clause | 2019-06-06T08:48:46 | 2019-06-06T08:48:45 | null | UTF-8 | C | false | false | 12,992 | h | //-------------------------------------------------------
// this header gathers functions that are used somewhere
// else in the code
//-------------------------------------------------------
//-------------------------------------------------------
// Computation of cross sections
//---------------------------------... | [
"jesus.guillermo.contreras.nuno@cern.ch"
] | jesus.guillermo.contreras.nuno@cern.ch |
4c1bf11c18d34665df4247d08bca5037b38691fd | 2c10c1da7f34b654ece86f937be98ea0795daaef | /openwsn-fw/openstack/02a-MAClow/IEEE802154E.c | a6817fe782ff729196c99f97c07bd54f8657e86d | [] | no_license | NCUTIIoT/OpenSim | b85d360560622d44e087e002dea9b009ccede98e | c735552f72ca36877fb3c5f338c82a9e37bab3fb | refs/heads/master | 2020-07-04T04:19:02.664308 | 2017-03-02T14:24:31 | 2017-03-02T14:24:31 | 74,108,238 | 0 | 1 | null | 2017-03-02T14:24:32 | 2016-11-18T07:59:59 | C | UTF-8 | C | false | false | 80,325 | c | #include "opendefs.h"
#include "IEEE802154E.h"
#include "radio.h"
#include "radiotimer.h"
#include "IEEE802154.h"
#include "ieee802154_security_driver.h"
#include "openqueue.h"
#include "idmanager.h"
#include "openserial.h"
#include "schedule.h"
#include "packetfunctions.h"
#include "scheduler.h"
#include "leds.h"
#inc... | [
"2011macgyver147@gmail.com"
] | 2011macgyver147@gmail.com |
1a9a4281e7239b2bcb6943ba567df27d0f969864 | 6a5a3d823d18924c67fb12112a08bfa7c90be5b4 | /Operating Systems Lab/lab4/prog5.c | 311821c828c3486fa8cc8358da1803f5486fad22 | [] | no_license | dakshaladia/Sem5 | f90be0ad8fd824c20228c9cc9ad987c977f1d65f | 56b76b90bc95ab1795e99d90abf28049ad2cbb2d | refs/heads/master | 2020-03-24T20:10:29.531973 | 2018-08-24T15:55:55 | 2018-08-24T15:55:55 | 142,963,320 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 254 | c | #include<sys/types.h>
#include<stdio.h>
#include<unistd.h>
#include<fcntl.h>
#include<string.h>
void main(){
int fp = creat("newfile1.txt",444);
char arr[256];
printf("Enter content for file:\n");
gets(arr);
write(fp,arr,strlen(arr));
close(fp);
}
| [
"noreply@github.com"
] | dakshaladia.noreply@github.com |
f687e1f08b77ee7993bd18d653f78d390397e13c | fc581ca6f1bcc5e1b9d86b25793759ef0237d5f0 | /frdmk32l3a6/driver_examples/lptmr/cm0plus/lptmr.c | 0f34cf868bfd454fc4919e1ee32234c76c1090e1 | [] | no_license | andresovela/mcux-sdk-examples | e5105bc3edd66ad28557f7e4c4360ecf8c8a4c7c | 3625feefb00abebe2612f0ef9cc876ddd1b5c034 | refs/heads/main | 2023-08-28T13:42:14.996806 | 2021-09-13T06:31:27 | 2021-09-29T09:06:10 | 414,511,974 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,347 | c | /*
* Copyright (c) 2015, Freescale Semiconductor, Inc.
* Copyright 2016-2017 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "fsl_debug_console.h"
#include "pin_mux.h"
#include "clock_config.h"
#include "board.h"
#include "fsl_lptmr.h"
#include "fsl_gpio.h"
/*******************... | [
"susan.su@nxp.com"
] | susan.su@nxp.com |
0c691eae327261e7f5bf031d8a84bf693227fac6 | dc2a2a6921a8cda0d33fdff2f4e68395b77aaa0e | /utils.h | 0404c4650559513896a23664de69e2a7c6c8c92f | [] | no_license | DamienCtrn/SLE-RepSIMD | e73b44bf7ac45531143b8c75b7aa5ea6b2a628b5 | a4fee6dda0418c05124bc5fa775487c45c8eb34c | refs/heads/master | 2021-05-11T19:07:07.503646 | 2018-01-17T15:22:47 | 2018-01-17T15:22:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,418 | h | /*
* File : utils.h, file for JPEG-JFIF Multi-thread decoder
*
* Copyright (C) 2007 TIMA Laboratory
* Author(s) : Pascal GOMEZ
* Bug Fixer(s) :
*
* 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 Fre... | [
"damien.cathrine@ensimag.grenoble-inp.fr"
] | damien.cathrine@ensimag.grenoble-inp.fr |
7cdd78f77801e91ef2bd30d99598f57fbfc55813 | b0783f390a67e6ea96af8622fbfc7bb91fb90c14 | /ASB2/SFMT-src-1.5.1/SFMT.h | 157edca0f916acc6aa09347fea8e561ba81c1e76 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | dc1394/ASB2 | ff6a3f8ff6680561808b123093d924d0a80f3c13 | fa0f3c89d6d4f31cfd97f1b01be2a5027842669e | refs/heads/master | 2022-02-11T01:06:55.004721 | 2022-02-02T03:01:57 | 2022-02-02T03:01:57 | 23,834,846 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,876 | h | #pragma once
/**
* @file SFMT.h
*
* @brief SIMD oriented Fast Mersenne Twister(SFMT) pseudorandom
* number generator using C structure.
*
* @author Mutsuo Saito (Hiroshima University)
* @author Makoto Matsumoto (The University of Tokyo)
*
* Copyright (C) 2006, 2007 Mutsuo Saito, Makoto Matsumoto and Hiroshima
... | [
"hriver2014-bitbucket@memoad.jp"
] | hriver2014-bitbucket@memoad.jp |
d9eaa5e087045a419de9d13c16861662a534ef6e | 399add0e67c0d5d09932a3c3d05e82c3c3ebf2b5 | /wasm/tests/setjmp_test.c | f263dcfa3e7d4ddf60f979169c1730b6980c6433 | [
"GPL-1.0-or-later",
"HPND-Markus-Kuhn",
"Artistic-1.0-Perl",
"GPL-3.0-or-later",
"ISC",
"Zlib",
"CC0-1.0",
"FSFUL",
"Ruby",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-autoconf-simple-exception",
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive",
"Artis... | permissive | aleksandrilyin/ruby | 66b2f3dcc48bd4dddefc8c9198b99e3ea1e70a00 | c85d1cda86d75ee2c3f7b42f22c543409cb5a186 | refs/heads/master | 2023-01-12T02:10:53.329168 | 2022-03-12T05:43:47 | 2022-06-06T18:12:55 | 294,523,052 | 0 | 0 | MIT | 2020-09-10T21:09:32 | 2020-09-10T21:09:31 | null | UTF-8 | C | false | false | 3,404 | c | #include "wasm/setjmp.h"
#include "wasm/asyncify.h"
#include "wasm/machine.h"
#include <stdio.h>
#include <assert.h>
void check_direct(void) {
rb_wasm_jmp_buf buf;
int val;
printf("[%s] start\n", __func__);
printf("[%s] call rb_wasm_setjmp\n", __func__);
if ((val = rb_wasm_setjmp(buf)) == 0) {
printf("[%... | [
"kateinoigakukun@gmail.com"
] | kateinoigakukun@gmail.com |
f3c0f09c0c3672a46f01979efe4b9eb4cf38de6a | 5a17a3d150c4773318d397a46878d2fd74c0671f | /nitan/cmds/imm/cpu.c | b8ad00346711ff71cc8a8ab150e424533f47d427 | [
"MIT"
] | permissive | cantona/NT6 | e9adc7308619b614990fa64456c294fad5f07d61 | 073f4d491b3cfe6bfbe02fbad12db8983c1b9201 | refs/heads/master | 2020-04-15T21:16:28.817947 | 2019-03-01T05:16:46 | 2019-03-01T05:16:46 | 163,173,406 | 0 | 0 | MIT | 2018-12-26T11:38:10 | 2018-12-26T11:38:10 | null | UTF-8 | C | false | false | 532 | c | inherit F_CLEAN_UP;
int main(object me)
{
mapping info;
float x, fraction,fraction2;
string str;
if (! SECURITY_D->valid_grant(me, "(immortal)"))
return 0;
info = rusage();
x = info["utime"] + info["stime"];
x = info["stime"]/10;
fracti... | [
"xmlsdk@gmail.com"
] | xmlsdk@gmail.com |
cab407a6857719f2b1b88947cea78315f91d76dc | 3269deba7d39cddb3e0cffdde02f6f3e3741d999 | /MPP/CC3100/simplelink/source/flowcont.h | 8c41256b6e13035c29118f84e4f61e773a9786a8 | [] | no_license | Helliaca/MPP_course | c8294fe4f0658b4a992a397a61d7e546f781961f | 3d2c5a2c4ffcf7bf7d7e752b42272e7be0b5bde5 | refs/heads/master | 2020-08-30T05:38:18.407440 | 2020-02-13T16:23:34 | 2020-02-13T16:23:34 | 218,279,160 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,236 | h | /*
* flowcont.h - CC31xx/CC32xx Host Driver Implementation
*
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistri... | [
"benjaminkahl@fu-berlin.de"
] | benjaminkahl@fu-berlin.de |
ee9bed70f22f7b32b007e8b1ebf68c42db9a52b4 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/mtd/nand/raw/brcmnand/extr_brcmnand.c_brcmnand_wp.c | 3159a692e094e64fa52b3a61feec4019b1becc1c | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,469 | 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 |
71041046bf0a5a13b48a1d4d60e4f87a6e427a9d | 826d89e0b51db30c9674946bf9409f2cc6f11acd | /unit-tests/file_system/test_path.c | 254f10f5a36b37b4b0c7d60356889bab7b2e5073 | [] | no_license | zBaitu/zLibC | e1b40865c9fd28acf3ff78727f4ebc94eef049f2 | d3e15e3a0dd83ca922845282e85a19aaf085c877 | refs/heads/master | 2021-01-23T07:15:19.528866 | 2014-02-18T18:29:33 | 2014-02-18T18:29:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,795 | c | #include "zlibc/file_system/path.h"
#include <zcut.h>
#include <unistd.h>
/**
* test_get_dir_name_suite
*/
TEST_CASE(test_get_cur_bin_path)
{
char bin_path[PATH_MAX];
get_cur_bin_path(bin_path);
char cwd[PATH_MAX];
getcwd(cwd, PATH_MAX);
char expected_bin_path[PATH_MAX];
snprintf(expected_bi... | [
"zbaitu@gmail.com"
] | zbaitu@gmail.com |
79f2858bb44169724deb192fc452afd5be2fd4fc | b1f0dedfba0e6fba35eb8c8c99324997fcfcf1f5 | /Bootloader/Project/third_party/exactle/sw/apps/keyboard/keyboard_main.c | 1b9c4c2cbeab613650da4b9e910bff6d9f764b2e | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | xsh381503442/xsh | 8923692059fc3a0a18b115ec45611b4128a2563c | cdf193b40076ecc992d591f837328f403fab898d | refs/heads/master | 2023-06-21T19:56:13.637607 | 2023-06-20T02:54:22 | 2023-06-20T02:54:22 | 71,120,946 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 29,885 | c | /*************************************************************************************************/
/*!
* \file keyboard_main.c
*
* \brief HID Keyboard sample application.
*
* $Date: 2016-08-23 09:39:56 -0700 (Tue, 23 Aug 2016) $
* $Revision: 8508 $
*
* Copyright (c) 2015 Wicentric, Inc.... | [
"381503442@qq.com"
] | 381503442@qq.com |
8d066147343fc3c059f072289f608409eeb035d3 | 0c43870383620a978fae89bb8cdaf4b61face336 | /src/libctests/glibc/nptl/tst-cancelx14.c | 9fd6c70a317e10989dff409123fb157ed991e067 | [] | no_license | bitwiseworks/libc | baa26f9bffd2cb1840fe34ebd3058a5f60a33037 | 3293cc587f6d23b0236c86083f2b51289cf384fc | refs/heads/master | 2023-07-06T01:45:52.006516 | 2023-07-04T20:21:59 | 2023-07-04T20:21:59 | 136,217,836 | 8 | 3 | null | 2022-02-09T19:13:39 | 2018-06-05T18:22:25 | C | UTF-8 | C | false | false | 27 | c | #include "tst-cancel14.c"
| [
"coding@dmik.org"
] | coding@dmik.org |
8358cea635b151fc693ae8c056e3b3fd88828c8f | 6d162c19c9f1dc1d03f330cad63d0dcde1df082d | /renderdoc/3rdparty/zstd/huf_compress.c | 9cdaa5d796f2e55e9cc8ed6d0556d0c8cab9adfd | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | baldurk/renderdoc | 24efbb84446a9d443bb9350013f3bfab9e9c5923 | a214ffcaf38bf5319b2b23d3d014cf3772cda3c6 | refs/heads/v1.x | 2023-08-16T21:20:43.886587 | 2023-07-28T22:34:10 | 2023-08-15T09:09:40 | 17,253,131 | 7,729 | 1,358 | MIT | 2023-09-13T09:36:53 | 2014-02-27T15:16:30 | C++ | UTF-8 | C | false | false | 32,593 | c | /* ******************************************************************
Huffman encoder, part of New Generation Entropy library
Copyright (C) 2013-2016, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms, with or without
... | [
"baldurk@baldurk.org"
] | baldurk@baldurk.org |
ba3b98dbb28a752fee833000e262676271a24ff5 | 9c65f96bfd2bc069e12a7d077ef64438ce469637 | /src/primops.h | 4b1571bfbacf25a698477f57a42e8f60107f25c5 | [] | no_license | gitter-badger/Carp | 587b4b65343f5a1f763e1ab5bbe696eb7d0a19b0 | bfb4f1e8eadd49f4c22438266ad205397897f6bf | refs/heads/master | 2021-01-21T18:57:39.649963 | 2016-01-18T16:16:09 | 2016-01-18T16:16:09 | 49,891,281 | 0 | 0 | null | 2016-01-18T17:03:11 | 2016-01-18T17:03:11 | null | UTF-8 | C | false | false | 2,591 | h | #pragma once
#include "obj.h"
#define define(name, value) env_extend(global_env, obj_new_symbol(name), value);
#define register_primop(name, primop) env_extend(global_env, obj_new_symbol(name), obj_new_primop(primop));
Obj *p_open_file(Obj** args, int arg_count);
Obj *p_save_file(Obj** args, int arg_count);
Obj *p_a... | [
"erik.svedang@gmail.com"
] | erik.svedang@gmail.com |
f90f32f1fc8656175c5cc487be9ef28362c19b20 | c4bf738c9c2dd930c7e87583e1add736e18f963f | /alphabet.c | 78bb35f8f34114855bc510bfecb624e2c05debde | [] | no_license | PREETHI33preethi/set1 | e85df540c5775a6524b465e80606b95101492a91 | 441b6e0dd080b2925d12e53bfaa77bff5096fe9a | refs/heads/master | 2020-04-28T04:27:28.320286 | 2019-08-11T08:03:36 | 2019-08-11T08:03:36 | 174,979,597 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 232 | c | #include <stdio.h>
int main()
{
char ch;
printf("Enter any character: ");
scanf("%c",&ch);
if( (ch>='a' && ch<='z') || (ch>='A' && ch<='Z'))
printf("Alphabet");
else
printf("no");
return 0;
}
| [
"noreply@github.com"
] | PREETHI33preethi.noreply@github.com |
7ae722a0e01f42250005cc68fcf0d4f42e538723 | f6a628c077f81a2e361c2047beb3cedeb2548283 | /week6/code/staticlib/test.c | 639c44ad9581b7cad175cc6b8d4fd2eeb46f6526 | [] | no_license | jane931061470/linux | 12824406fb876d747cf044978c8dae3c64753edf | 2cae7e39cb49e1822176a5746b0721b79cef2c0c | refs/heads/master | 2020-10-02T06:33:06.675299 | 2019-12-23T08:29:27 | 2019-12-23T08:29:27 | 227,722,682 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 187 | c | #include "mylib.h"
#define UNUMBER 100
int main()
{
int a[UNUMBER];
init(a,UNUMBER);
show(a,UNUMBER);
printf("sum=%d\n,max=%d\n",sum(a,UNUMBER),max(a,UNUMBER));
return 0;
}
| [
"931061470@qq.com"
] | 931061470@qq.com |
f014241860028aee0f094c9090a9393ee46ce6f4 | 9e0674cbdde95b4c844bf19bf60872be2bd89fd5 | /src/hwconf.h | e58ac196392b3c7c5d85f645d37a0567bf653a2a | [
"MIT"
] | permissive | MechaMonk/espspotifydisplay | e7714c8cddbb4fe70ed62afba7a99ceb5a77cd4a | 750ec99cc1f43f9571212263ae1528699246ac23 | refs/heads/master | 2022-01-09T14:26:34.309715 | 2019-04-28T09:50:42 | 2019-04-28T19:34:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 547 | h | #ifndef HWCONF_H_
#define HWCONF_H_
//#define WEMOS_NODEMCU_OLED_BOARD
#ifdef WEMOS_NODEMCU_OLED_BOARD
#define DISP_TYPE 1106
#define BUTTON_ON_GPIO0
#else // custom hardware
#define DISP_TYPE 1322
//#define DISP_TYPE 1306
//#define DISP_TYPE 0
#define BUTTONS_ON_ADC
//#define BUTTON_ON_GPIO0... | [
"andrei.mehilainen@gmail.com"
] | andrei.mehilainen@gmail.com |
3f6345e81ffc81e859b78de2d7bd30a873d1a201 | e30dee91f14797cc196999bf158bb8906552499c | /Practice/Unity/XcodeProject/TestNativeDataBridge_20190320_3/Classes/Native/mscorlib_System_Collections_Generic_Dictionary_2_V2511952909MethodDeclarations.h | 41bc6456efa59e3aac0088a48727c5b78d221cf0 | [] | no_license | a99677137/FXCXProject | dc9cd79970447fa2f58a4745e8147177787488db | 89b0faf6809a08bae14785bf6b6497962b429b13 | refs/heads/master | 2021-06-27T05:50:36.196406 | 2019-07-02T07:30:14 | 2019-07-02T07:30:14 | 114,623,989 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,129 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Collections_Generic_Dictionary_2_Va746493984MethodDeclarations.h"
// System.Vo... | [
"99677137@qq.com"
] | 99677137@qq.com |
4b8cf1df75741bbff493c70fea84f5a839e0f94c | ed005d9cca6a3717d6ed47660b4ad3f754524ce4 | /zigbee_test/Core/znp-app/znp_cb.h | ed37707f686cba5ae634b0770a053a58db2f7b99 | [] | no_license | eastgeneral2007/znp-host-stm32 | 3094e306ae20b2ebc89c4705bd2fb388e9faee5e | dd2b5806b1f2cf7b387769023dfacc485d74c670 | refs/heads/main | 2023-09-04T06:06:57.121945 | 2021-11-11T09:37:16 | 2021-11-11T09:37:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 85 | h | #ifndef __ZNP_CB_H__
#define __ZNP_CB_H__
extern void znp_cb_register(void);
#endif | [
"sander@tri-lectronics.com"
] | sander@tri-lectronics.com |
d3aacb64ba600ad2046429aa885c4d712e0ab0e3 | 6726df6239ec1be874e9f1972c0fdd0e41808a7e | /helloworld.c | 8d6537611e11bab10b3307c0a80531f18177d54b | [] | no_license | datskunchala/dattu | 076f02d34651a876154318919e8a9f6000bf68a8 | 0dc91c6013c3ccf58f6fd56dc8263c27ceb40708 | refs/heads/master | 2022-02-27T03:13:10.450868 | 2019-11-13T15:57:47 | 2019-11-13T15:57:47 | 112,909,305 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 77 | c | #include<stdio.h>
main()
{
printf("helloworld\n:hello dattu kunchala\n");
}
| [
"noreply@github.com"
] | datskunchala.noreply@github.com |
3200b904afc44dd9866a7212d8115a09813d0fba | 3fa221b4c387b045b85a3e9a0b5fb2878386d327 | /src/obj/mips_ap/mips.mips/usr/home/freebsd/omega/src/rescue/rescue/rtquery_stub.c | 4edf2fe1caf3b5c5a3f9cb21f529d6ab39380c59 | [] | no_license | GSchiaffonati/OmegaFreeBSD | a1670ad8954d34b5393741c0300857e2bf556004 | 9502e66ab39458bf8c851ad7f9aaae245a156959 | refs/heads/master | 2021-01-15T14:37:12.816674 | 2015-12-18T17:13:58 | 2015-12-18T17:13:58 | 47,850,567 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 93 | c | int _crunched_rtquery_stub(int argc, char **argv, char **envp){return main(argc,argv,envp);}
| [
"g.schiaffonati@gmail.com"
] | g.schiaffonati@gmail.com |
e7b4f2a2bda9d5973226de34ce02444a3317872e | 90349feaf4b5d8d50b023b0c5829a8e32f873992 | /Plugins/Socketer/Intermediate/Build/Win64/UE4Editor/Development/Socketer/Definitions.Socketer.h | 054c9396cdb5632b7264d13a2ba743a9db9ae0cb | [
"MIT"
] | permissive | MontiVR/MediocreMapper | 3078aaa7d890af50ce5ef1d3547950fb5b19f3e2 | a38a7242ff58263e1ac9764ce7682f1a93d849ce | refs/heads/master | 2020-11-24T08:54:27.901869 | 2020-04-18T01:48:59 | 2020-04-18T01:48:59 | 228,062,918 | 2 | 0 | null | 2019-12-14T17:37:35 | 2019-12-14T17:37:35 | null | UTF-8 | C | false | false | 5,029 | h | #undef SOCKETER_API
#undef UE_IS_ENGINE_MODULE
#undef DEPRECATED_FORGAME
#define DEPRECATED_FORGAME DEPRECATED
#define IS_PROGRAM 0
#define UE_EDITOR 1
#define ENABLE_PGO_PROFILE 0
#define WITH_DEV_AUTOMATION_TESTS 1
#define WITH_PERF_AUTOMATION_TESTS 1
#define UNICODE 1
#define _UNICODE 1
#define __UNREAL__ 1
#define ... | [
"ttran0280@gmail.com"
] | ttran0280@gmail.com |
cf0fcb256131205ae26589b464ac00cea075735a | 5ccaeb278ef69bf41d803f9bf339101c39bf2136 | /apps/examples/peripheral/spi/spi_loopback/firmware/src/system_config/pic32mz_ef_sk_freertos/system_init.c | 745f24b2819c627c2931f721b715eb9038651c74 | [] | no_license | Mytrex/Harmony | 6de69d5ebbb8cb7769a9ee7bd0330264c1d6ed3a | 32dceb018139e59a12c26044b9f0252d1c0d67c9 | refs/heads/master | 2021-03-16T09:42:26.915713 | 2016-11-02T08:25:20 | 2016-11-02T08:25:20 | 71,403,438 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,936 | c | /*******************************************************************************
System Initialization File
File Name:
system_init.c
Summary:
This file contains source code necessary to initialize the system.
Description:
This file contains source code necessary to initialize the system. It
... | [
"jared@mytrexinc.com"
] | jared@mytrexinc.com |
27de0dba5ee51c42a362478bce98be97f722dbc3 | 672ce7abc0af15f326de39a546b8abcf9349203d | /Ejercicios Presenciales/Actividad 10P/10Pej2.c | 9336456ae9f33a55abad9511f26c81a05c93bb79 | [] | no_license | AlejandroDCastro/P1 | 57e1531b78c6e8f730495fa7c2925eee9117f175 | 22c4ab186183cce2510ae24f44f0b307a5168fa7 | refs/heads/master | 2020-04-18T19:26:59.656349 | 2019-01-26T16:39:00 | 2019-01-26T16:39:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,056 | c | // Ejercicio 2
#include <iostream>
#include <cstring>
using namespace std;
const int kPEL=50, kOPI=15;
int countpel=0;
typedef char TCadena[30];
typedef int TOpiniones[kOPI];
typedef struct {
int codigo, views;
TCadena nombre, genero;
TOpiniones opiniones;
} TPelicula;
typedef TPelicula TPeliculas[kPEL];
vo... | [
"33158086+Sawn39@users.noreply.github.com"
] | 33158086+Sawn39@users.noreply.github.com |
5ac1356fb7f9aa6b11a88f643b87d2176c43970c | 54235cb57386e3a2c5727348eff9f94928121685 | /w6/dnachan.c | 543748cbbbd358a82048b1be758944ff649e50b4 | [] | no_license | jtmieg/AceView | 2faf4d9750032f3744c7aea50cf27872a251c391 | 02fb5e52e22a077308eae9c317c2dcf9e2c0a283 | refs/heads/master | 2023-09-01T09:14:12.354216 | 2023-08-27T01:10:47 | 2023-08-27T01:10:47 | 121,984,807 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,670 | c | #include <ac.h>
#include "channel.h"
#include "wego.h"
typedef enum { FASTA=0, FASTC, FASTQ, CSFASTA, CSFASTC, CCFA, CCFAR, RAW, CRAW} DNAFORMAT ;
typedef struct ppStruct {
BOOL gzi ;
BOOL gzo ;
BOOL silent ;
const char *inFileName ;
const char *outFileName ;
const char *suffix ;
CHAN *ventChans[64] ;
... | [
"mieg@ncbi.nlm.nih.gov"
] | mieg@ncbi.nlm.nih.gov |
1fb25047beb7f4a86f7a471b57de22fc34b59d5e | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/b3d94e38-2723-42f6-a6f7-3dc0cb6bcdb1.c | dd03c4765805fb5c8a18e4f095d77afb2c7b9962 | [] | 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 | 252 | c | #include <stdio.h>
int main() {
int i=0;
int j=14;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = l/j;
l = i%j;
l = -j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",i,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
60d3951dc30bf44c8045a446f8598471943a736f | d5bf64320e1e1e024a0df5fb4fe42736e6f34e74 | /chararray.c | 93e4d746fd8fb9d25e265942d0754468a434226e | [] | no_license | ankitamit/cprograms | 86b60e256ee08d2e8d34c8d600652f2f406243fd | d419c76ab58207cb00f420880d253e71220998d8 | refs/heads/master | 2020-04-20T04:27:56.517084 | 2019-02-01T02:13:01 | 2019-02-01T02:13:01 | 168,628,469 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 281 | c | #include<stdio.h>
void print(char* C);
int main() {
char C[20] = "Hello";
char *c2 = C;
printf("\n size of c is %lu\n", sizeof(C));
print(C);
return 0;
}
void print(char *C) {
int i = 0;
while(*(C) != '\0') {
printf("%c\n", *C);
C++;
}
printf("\n");
}
| [
"ankitbhatia.nith@3575714.no-reply.drupal.org"
] | ankitbhatia.nith@3575714.no-reply.drupal.org |
de7097bfcbe399a7eed4b3cd61f0200da784c779 | 85d4aafb33900d3f5dc76e71e0fa7c5b0fe121b5 | /main.c | 29d325e284f890214ac3b48f9a50a1a8cc12981b | [] | no_license | pccq2002/portmap | da5fdaa7b81721c9f543ac0ea4832dd536774af1 | 5650b5fc9eb5119aa89b73b56b5580c969e347c8 | refs/heads/master | 2021-01-10T19:40:23.587040 | 2011-01-20T11:43:26 | 2011-01-20T11:43:26 | 34,032,063 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,697 | c | /**
* portmap main func
*
* author liyangguang (liyangguang@software.ict.ac.cn)
*
* date: 2011-01-17 16:21:00
*
* changes
*/
#include "net.h"
#include "event.h"
#include "log.h"
#include "worker.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <signal.h>
#define DEFAULT_LISTEN_PORT 5900
... | [
"yangguangli19871124@gmail.com@31cc205d-efa2-1e6f-e73f-b555a058a503"
] | yangguangli19871124@gmail.com@31cc205d-efa2-1e6f-e73f-b555a058a503 |
9b7b622ba22e3ebab17ce61dc3e8ec84fe254ddc | afe7d831bafcbbb291f7f1640cebbd48078d6ff4 | /main.c | 0105e03c413eeb6d9b7fe2e062bfa5604a2d68a9 | [] | no_license | orestonce/udphole | 9783ee855f3d3741805f8abccdf25f125d4c7720 | 10bde7d7f7e2d10540717299e82616b5bdd18cb4 | refs/heads/master | 2021-01-23T00:07:10.463272 | 2015-07-01T10:04:51 | 2015-07-01T10:05:56 | 38,363,766 | 2 | 6 | null | null | null | null | UTF-8 | C | false | false | 4,692 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <string.h>
#include <assert.h>
#include <sys/select.h>
#define SERVER_ADDR "127.0.0.1"
#define SERVER_PORT 1783
void server();
void clientA();
void clientB();
... | [
"orestonce@163.com"
] | orestonce@163.com |
80de115a6c628d58785becdb7a5e5e37653e9aea | 562a3cc68bf87d1748f4d57bf61134bfac362ec3 | /myshell.c | 153937624b2ea8576aaef59617cfd2795bec4025 | [] | no_license | kimhyeyun/2019-UNIX-Final-project | 99f5bc3cbad845765fa4c32c95bdb0ba4c977e50 | 2f2acad859e8a2b76ad3f7cec406b2b8b288557e | refs/heads/master | 2021-04-05T14:00:45.847449 | 2020-03-19T17:27:59 | 2020-03-19T17:27:59 | 248,564,155 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,221 | c | #include<string.h>
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>
#include<errno.h>
#include<sys/wait.h>
#include<sys/types.h>
#include<fcntl.h>
#include<signal.h>
#include<ctype.h>
#include<dirent.h>
#define MAX_CMD_ARG 10
#define MAX_CMD_ZIP 10
#define BUFSIZE 256
const char *prompt="YuniShell> ";
char* c... | [
"cqqwer@gmail.com"
] | cqqwer@gmail.com |
8648ef313cca58ff2cf5a28e391c873cda9c0247 | 4a531543ac96a94a1abb479dd950f1710c6d1723 | /lxd/include/process_utils.h | bfdff0738a411ca4945143183ecc8dd8a211cf60 | [
"Apache-2.0"
] | permissive | pranjas/lxd | 8d9dee3374a0d7e10b17ac2ec803f1fd05161fde | 605bd7a37bfa6611724a6ffe888ed632bea2ca35 | refs/heads/master | 2021-10-13T02:17:37.431796 | 2021-10-01T18:24:46 | 2021-10-01T18:24:46 | 241,305,113 | 0 | 0 | Apache-2.0 | 2020-02-18T08:06:20 | 2020-02-18T08:06:19 | null | UTF-8 | C | false | false | 958 | h | #ifndef __LXD_PROCESS_UTILS_H
#define __LXD_PROCESS_UTILS_H
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#include <linux/sched.h>
#include <sched.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/syscall.h>
#include <sys/wait.h>
#include <unistd.h>
#include "compiler... | [
"christian.brauner@ubuntu.com"
] | christian.brauner@ubuntu.com |
7ed0f9f28ac002a8eed7cfdf28112605f933005b | da750f732dc2746ad9046e8260a97fc46f7716b1 | /prod-con2.c | c1b06c40a85d2e007270ff27fbfd93e5b4ba0f3b | [] | no_license | nisargshah95/Fuzz-testing-pthreads | f17f34d902c2b1fc769168acf8594b0f47d7ba94 | 78b79eb09b609ff4e8144cee6cfb2d37f9920ea0 | refs/heads/master | 2022-03-15T00:20:07.404094 | 2019-12-05T05:28:23 | 2019-12-05T05:28:23 | 215,161,185 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,547 | c | /*pthread example.
Copyright (c) 2006-2007 Richard Palethorpe
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
... | [
"noreply@github.com"
] | nisargshah95.noreply@github.com |
91713125b28d3b4df61114a96c9be02b89fbd77b | f0d22137ab4aba3a70c25b42b628e3f09743d936 | /modules/access/timecode.c | 67c307fe1183f74bfd73f66c7bc730c72f61b2b1 | [] | no_license | duxq/vlc_2.1.0-vs_2010 | 6da94eac73bb70604162558e46a266f9acfc0e56 | 218172f619c9e248b709e479e5c10e197127a88e | refs/heads/master | 2021-06-18T12:02:28.079902 | 2017-06-28T02:33:56 | 2017-06-28T02:33:56 | 118,862,081 | 1 | 0 | null | 2018-01-25T04:27:09 | 2018-01-25T04:27:08 | null | UTF-8 | C | false | false | 5,632 | c | /**
* @file timecode.c
* @brief Time code sub-picture generator for VLC media player
*/
/*****************************************************************************
* Copyright © 2013 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Le... | [
"jiayayao@126.com"
] | jiayayao@126.com |
5c172276b085d619bc5aeb6a6aae533152648e64 | cb5cab5026bb1bc5c048024b768d664ab15406fb | /0x06-pointers_arrays_strings/8-rot13.c | 5c9a462d1eb65e3d9914ec72a5182b83c9470575 | [] | no_license | santiagoPinzonD/holbertonschool-low_level_programming | 515da285575f22c2f8a6157f3e93f0a7b2151245 | fd7796c4ee4a3bbb87572e260f95eb059e9f2559 | refs/heads/master | 2023-02-10T21:02:36.571309 | 2021-01-13T17:42:51 | 2021-01-13T17:42:51 | 271,368,463 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 460 | c | #include "holberton.h"
/**
* *rot13 - check the code for Holberton School students.
* @a: its a pointer
* Return: Always 0.
*/
char *rot13(char *a)
{
int x;
int s;
char z[52] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
char b[52] = "NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm";
for (x... | [
"santiagopinzon456@gmail.com"
] | santiagopinzon456@gmail.com |
6b6fc61a5cde3174a373ab4a74867fc16390320e | d2172b19a101c51e7791a9e82d56cfeebf047eef | /math/problem1346/main.c | e8db9b9ef71392bc38aac4bda6c45074e886d489 | [] | no_license | beller0ph0nt/utility | 62fc1ff513bcf76a3e029f51760f2fe62db9c866 | e09c27168c8c7d83f661767da5a936cae80ddfbd | refs/heads/master | 2021-07-14T16:09:18.318776 | 2020-06-04T12:21:50 | 2020-06-04T12:21:50 | 65,307,961 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,393 | c | #include <stdio.h>
#define DIGIT_LEN 4
#define OPERATION_LEN 4
float
calc_equiation(float first_digit, char operation, float second_digit)
{
float answer = 0;
switch (operation)
{
case '+':
answer = first_digit + second_digit;
break;
case '-':
answer = first_digit ... | [
"kras_den@rambler.ru"
] | kras_den@rambler.ru |
fd0b72cccd3a65cd89b29e67dbea6be0e322b51d | d347aee3e6f1d7610280f06b0fd30613d3cc58e9 | /tlab/regexp/new/main.c | c28af68449def765f23faea88766950ca9e108cc | [] | no_license | march1896/snev | 559cee895dfbfdd416bcac80c9e930fa6b017a4c | d44cac0beca9e4e3f0834f60de792056f4c1d6ac | refs/heads/master | 2021-01-10T07:54:51.197161 | 2014-07-10T01:05:38 | 2014-07-10T01:05:38 | 50,899,734 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,504 | c | #include "fa.h"
#include "heap2.h"
#include "nfastack.h"
#include "prog.h"
#include "fatable.h"
#include "stdlib.h"
#include "stdio.h"
#define MEMORY_SIZE 1<<20
int main() {
char* memory;
memory = (char*)malloc( sizeof(char) * MEMORY_SIZE );
InitHeap( memory, MEMORY_SIZE, 32 );
int c;
for (c = 0; c < 32; c ++ ... | [
"March1896@3189ae6c-2c87-11de-a35f-41c58be005ae"
] | March1896@3189ae6c-2c87-11de-a35f-41c58be005ae |
1168617c5ced1bca348a7d09cfc7798da466bff1 | ad41bbc354e490e8d2fb096df3b09012c042eacc | /Extra-practicing-programs/input1.c | 0c0f45cf63236c24572d4476e3b6ae7b9d6dd546 | [] | no_license | thiagork/C | eb47521733ee9907c0b534c47c84a5581355f321 | 5669eadc5e12bf7a4976a4103dc4c3140814491a | refs/heads/master | 2020-04-20T15:45:11.271527 | 2019-02-03T16:05:35 | 2019-02-03T16:05:35 | 168,939,935 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 230 | c | #include <stdio.h>
int main(void)
{
int a, b, c;
printf("Enter the first value:\n");
scanf("%d", &a);
printf("Enter the second value:\n");
scanf("%d", &b);
printf("The sum of %d and %d is:\n%d\n", a, b, a+b);
return 0;
}
| [
"noreply@github.com"
] | thiagork.noreply@github.com |
b8d35dd7be6537202dcc6edc48b45b4be4f04ea9 | cbd6c6a7c4e555e26c76dea6c827a3f36f8f449a | /kbss/add_clnt.c | 6591cd1cbdb22a75037df98c704fddbd21ce460c | [
"MIT"
] | permissive | her0m31/Studys | 8a71d4ae2552cf285d7a5e16b8a6c0f81e259106 | f765310cd826356af04008a055905cade21fda4a | refs/heads/master | 2020-12-24T08:46:39.155718 | 2016-08-17T16:48:51 | 2016-08-17T16:48:51 | 23,060,547 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,441 | c | /*
* Please do not edit this file.
* It was generated using rpcgen.
*/
#include <memory.h> /* for memset */
#include "add.h"
/* Default timeout can be changed using clnt_control() */
static struct timeval TIMEOUT = { 25, 0 };
int *
add_1(intpair *argp, CLIENT *clnt)
{
static int clnt_res;
memset((char *)&clnt_... | [
"her0m@her0ms-Air.local"
] | her0m@her0ms-Air.local |
4944c002699c8696e23c42d6c2e6f14fe17b972b | ab974af5955ba2ee638740e54ba454c04df90add | /app/save.c | 146a74678deb8db710f947d95ea964eed754ce0c | [] | no_license | kulichen/lab2 | 984159a1cec58f117e9ffe69ce51350f8fd8eae1 | 368309cbb06e8d9f39b01732e23e784a277798de | refs/heads/master | 2022-11-11T14:49:53.524134 | 2020-06-29T17:12:22 | 2020-06-29T17:12:22 | 275,662,242 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,377 | c | /**
* load.c -- функция загрузки текста из файла
*
* Copyright (c) 2017, Alexander Borodin <aborod@petrsu.ru>
*
* This code is licensed under a MIT-style license.
*/
#include <stdio.h>
#include "text.h"
#include "_text.h"
#include <assert.h>
/**
* Загружает содержимое указанного файла
*/
static void save_l... | [
"kulichen@cs.petrsu.ru"
] | kulichen@cs.petrsu.ru |
4621e7a325e9dd584d3631cd03cba4825bbcca95 | 94db0bd95a58fabfd47517ed7d7d819a542693cd | /client/ClientRes/IOSAPI/Classes/Native/mscorlib_System_Predicate_1_gen3418694091MethodDeclarations.h | 384e600699810295cbcd0816bab52310f2ff96eb | [] | no_license | Avatarchik/card | 9fc6efa058085bd25f2b8831267816aa12b24350 | d18dbc9c7da5cf32c963458ac13731ecfbf252fa | refs/heads/master | 2020-06-07T07:01:00.444233 | 2017-12-11T10:52:17 | 2017-12-11T10:52:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,836 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Predicate_1_gen1132419410MethodDeclarations.h"
// System.Void System.Predicate... | [
"1"
] | 1 |
3bd46ccc174a8b81ae028e7d364c351af612ba62 | c649ea1a04ecf9e9b1e0ac8646e39b890dc22c51 | /05-switching/main.c | a0052da1c9d1637231852e023e025d58bd2856d6 | [] | no_license | szhizhi/ComputerNetworkLab-1 | fa65f17fcfae121d7f05b09ec6874af8e816ec32 | e0397c788fa0f1a157327f1d79d2af61c1febb0d | refs/heads/master | 2020-06-11T10:02:48.702363 | 2019-01-09T14:51:36 | 2019-01-09T14:51:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,539 | c | #include "base.h"
#include "ether.h"
#include "mac.h"
#include "packet.h"
#include "log.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <poll.h>
#include <net/if.h>
#include <ifaddrs.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <linux/if_packet.h>
ustack_t... | [
"470323747@qq.com"
] | 470323747@qq.com |
c7232f10aa1085028294e3309dad7c601d79dcea | 42ddcedb48530b3f3128927bbf2d132de1b669b3 | /petsc-3.15.2/src/mat/tutorials/ex11.c | 6dc56143533c1d45db98d2e003c02d51b1a1fbf4 | [
"BSD-2-Clause"
] | permissive | shaunakshende/FBSI_3152 | 53d1a1660c01b998059d63d3760f4a00cd39ea82 | 8bc3f2f035c7f38b663fa906acfb8f1747763014 | refs/heads/main | 2023-06-24T17:51:38.545399 | 2021-07-22T22:28:25 | 2021-07-22T22:28:25 | 388,612,853 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,162 | c |
static char help[] = "Tests MatMeshToDual()\n\n";
/*T
Concepts: Mat^mesh partitioning
Processors: n
T*/
/*
Include "petscmat.h" so that we can use matrices.
automatically includes:
petscsys.h - base PETSc routines petscvec.h - vectors
petscmat.h - matrices
petscis.h - index... | [
"shaunak_shende@brown.edu"
] | shaunak_shende@brown.edu |
713862f11062f9518052f714e62fe4c3f6c0b1a0 | 9d992079a5cfa00c2e2fb89aa6dbfb117dfc7341 | /zaero/z_boss.c | 8d1ae0dae8f3d2afc6e2aaa6adf115950d4e1513 | [] | no_license | nowantny/q2dos-the-pot | 65e3df400b80ed01e8997e94d96ae128c943dba1 | 65356fbafd231fcf8c61a47ecc26372e2e050596 | refs/heads/main | 2022-07-27T08:21:20.126858 | 2022-05-30T17:44:23 | 2022-05-30T17:44:23 | 393,496,972 | 7 | 2 | null | null | null | null | UTF-8 | C | false | false | 42,556 | c | #include "g_local.h"
#include "z_anim.h"
#include "z_boss.h"
static int sound_pain1;
static int sound_pain2;
static int sound_pain3;
static int sound_die1;
static int sound_die2;
static int sound_hookimpact;
static int sound_sight;
static int sound_hooklaunch;
static int sound_hookfly;
static int sound_... | [
"noreply@github.com"
] | nowantny.noreply@github.com |
f35a66e172c1d500500b096c5524f57a8062365b | fa24dcead4e5c3bacde49b1a3f052d10e60e194a | /wasm/musl/arch/bits/shm.h | 45d1d157832388d8ef93ba4f9ae3a8bd5ec91d76 | [
"MIT"
] | permissive | xphung/plan9_webasm | 5e22d11d983fe131fcdae63e586b140839603dfc | d30bb1f3a2a52927d4bcb94b3e3d8279eab1af35 | refs/heads/master | 2023-02-15T10:24:43.073367 | 2018-12-20T05:10:38 | 2018-12-20T05:10:38 | 161,900,372 | 18 | 1 | MIT | 2023-01-30T00:58:26 | 2018-12-15T11:57:46 | C | UTF-8 | C | false | false | 521 | h | #define SHMLBA 4096
struct shmid_ds {
struct ipc_perm shm_perm;
size_t shm_segsz;
time_t shm_atime;
int __unused1;
time_t shm_dtime;
int __unused2;
time_t shm_ctime;
int __unused3;
pid_t shm_cpid;
pid_t shm_lpid;
unsigned long shm_nattch;
unsigned long __pad1;
unsigned long __pad2;
};
struct shminfo {
u... | [
"xan.phung@gmail.com"
] | xan.phung@gmail.com |
2c4295ce46e729a3fbfa724743d532dd79da9afe | 45a7b53a51f9a412745f5e6653a6e652cdb875b3 | /client/client_utils.h | 024fad93682a8815b689d84e7172d38f6b6d5515 | [] | no_license | jkim10/COMS-4181-Final-Project | 6344fa7f36cb0977d01ec18929eaf024904756af | aab609b115291932e96fab8f6b940215b4249d14 | refs/heads/main | 2023-02-04T19:46:22.719226 | 2020-12-23T15:13:49 | 2020-12-23T15:13:49 | 320,626,166 | 0 | 0 | null | 2020-12-21T18:39:34 | 2020-12-11T16:27:04 | C++ | UTF-8 | C | false | false | 650 | h | #include <arpa/inet.h>
#include <fcntl.h>
#include <netdb.h>
#include <stdio.h>
#include <strings.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <openssl/bio.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
#define SSL... | [
"ss5311@barnard.edu"
] | ss5311@barnard.edu |
c473e9a75679a65fba21a16b8e17a2bf7ea98a25 | 69189da2b6acb4afe158e2d33dbb5f7e3350a266 | /libft/ft_putchar.c | c51058022b8c73d7a3668ed821f869ac6b3f898a | [] | no_license | OddinDeMatos/Hive_School_project | 45ab1709f1653f586631e9de74eb1948f8d98b0a | c1f6c829992356d2710558014a85ad288c8fb2cf | refs/heads/master | 2023-01-18T23:17:09.794147 | 2020-11-30T12:03:39 | 2020-11-30T12:03:39 | 306,267,470 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 959 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: ... | [
"odde-mat@c1r1p2.hive.fi"
] | odde-mat@c1r1p2.hive.fi |
624918809a89db69d47b6764dfc21565f7feb875 | 6a73d3e6f016d9dd689c6207b533aee060a062c9 | /chap9/execute.c | b9e742033fe341c5e43cd126b091756280e35977 | [] | no_license | EchoChe/linux_practice | 6b4fe2953e85d9dd107c31e61bac67bbe9c77931 | 46fc45cca5145a8bc44962274c79c37d78e92b9e | refs/heads/master | 2016-09-16T04:35:49.795506 | 2015-05-29T08:06:43 | 2015-05-29T08:06:43 | 36,200,708 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 574 | c | #include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <sys/wait.h>
int execute( char * argv[])
{
int pid;
int child_info = -1;
if( argv[0] == NULL )
return 0;
if(( pid = fork()) == -1 )
perror("fork");
else if( pid == 0)
{
signal(SIGIN... | [
"1522815630@qq.com"
] | 1522815630@qq.com |
617372abc29a200e59b5867f98eef859fea8a6b3 | d09227253557fe0d21be4e3dd53f15c892ad9239 | /0x02-functions_nested_loops/11-print_to_98.c | 39b2499853f4a6c0cb4933d039e61cd1aa8d2953 | [] | no_license | amateurdullahan/holbertonschool-low_level_programming | 153825310813abd77045f11cc921da52d263c138 | e70b2d527a31dc23361a2a55f8a9e1e860e83c44 | refs/heads/master | 2020-12-29T07:57:28.414177 | 2020-08-28T14:07:23 | 2020-08-28T14:07:23 | 238,524,310 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 340 | c | #include "holberton.h"
#include <stdio.h>
/**
* main - void
*
* Return: 0
*/
void print_to_98(int n)
{
int g = 98;
if (n > g)
{
while (n >= g)
{
printf("%d", n);
if (n != g)
{
printf(", ");
}
n--;
}
}
else if (n < g)
{
while (n <= g)
{
printf("%d", n);
if (n != g)
{
printf(", ");
}
n++;
}
}
else
{
printf("%d", n)... | [
"zabrak12@gmail.com"
] | zabrak12@gmail.com |
b972ef6586969fbb46994b1411e0a8661b84e7a3 | 1c34d488a6b713d97d52eac9309be38ffc380b66 | /kernel/syscall.c | 4e996abcf3b8b028fcfe8c1ac8578cb99945299f | [
"MIT"
] | permissive | TotallyNotTito/scaling-octo-barnacle | a19c802b852b09cdd92b9fc1fdfada2df0ec35d4 | f41d206ad479b90f70c1b7c0ec2c20da2c4b48b1 | refs/heads/titos-riscv | 2023-06-24T13:39:14.988896 | 2021-07-30T18:40:31 | 2021-07-30T18:40:31 | 391,160,852 | 0 | 0 | NOASSERTION | 2021-07-30T19:07:52 | 2021-07-30T18:40:29 | C | UTF-8 | C | false | false | 3,210 | c | #include "types.h"
#include "param.h"
#include "memlayout.h"
#include "riscv.h"
#include "spinlock.h"
#include "proc.h"
#include "syscall.h"
#include "defs.h"
// Fetch the uint64 at addr from the current process.
int
fetchaddr(uint64 addr, uint64 *ip)
{
struct proc *p = myproc();
if(addr >= p->sz || addr+sizeof(ui... | [
"59128315+TotallyNotTito@users.noreply.github.com"
] | 59128315+TotallyNotTito@users.noreply.github.com |
6212cc96b0f8f43596d4d2cb23989c35cff343f3 | 7790b378e83ce91d659a18216c0ab51f3c1d0bd9 | /ex04/ft_ultimate_div_mod.c | 3e8c8ac4c65def3c04cdc89b8d91cd8e26cb8601 | [] | no_license | nmoosaJHB/day03 | 94ca5d24c932f919c957dc728d41d63fd1861193 | 2c1673914a9327d67c43c47b11c9e93445c3aa43 | refs/heads/master | 2022-11-09T07:38:08.464934 | 2020-06-24T14:52:25 | 2020-06-24T14:52:25 | 273,865,827 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,052 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mod.c :+: :+: :+: ... | [
"nmoosa@c4r7s8.wethinkcode.co.za"
] | nmoosa@c4r7s8.wethinkcode.co.za |
7e7d7bd66b1eec5a00b6318f41599cd74ec3a472 | 18a4bd659af02c651ec6114a2209ffb1a7c9bc62 | /Stack/SeqStack.c | 4177816fb4efd0f43620fb18f8bb1ee58719346e | [] | no_license | ratatouille0822/Stack | 6bb3bd3d287ffbac6ba5169a0543c5903e3d8608 | 439c2da5270c98cc94d8a08ab55440c26a3cd0b2 | refs/heads/master | 2020-05-05T10:03:47.227986 | 2019-04-07T10:39:38 | 2019-04-07T10:39:38 | 179,928,721 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,705 | c | #include "SeqStack.h"
// 初始化栈
SeqStack Init_seqstack()
{
SEQSTACK* temp = (SEQSTACK*)malloc(sizeof(void*));
//*temp->array = (void*)malloc(sizeof(void*));
temp->size= 0;
return (void*)temp;
}
//入栈
int Push_SeqStack(SeqStack stack,void* data)
{
if (NULL == stack || NULL == data)
{
perror("Empty ---------100\... | [
"307338947@qq.com"
] | 307338947@qq.com |
e554b034785069466fbc82339cb391163e94f88e | 2fa764b33e15edd3b53175456f7df61a594f0bb5 | /appseed/music_midi_core_audio/music_midi_core_audio.h | 8e810a46c2c343836d4ef9bd84ee03b14855954f | [] | no_license | PeterAlfonsLoch/app | 5f6ac8f92d7f468bc99e0811537380fcbd828f65 | 268d0c7083d9be366529e4049adedc71d90e516e | refs/heads/master | 2021-01-01T17:44:15.914503 | 2017-07-23T16:58:08 | 2017-07-23T16:58:08 | 98,142,329 | 1 | 0 | null | 2017-07-24T02:44:10 | 2017-07-24T02:44:10 | null | UTF-8 | C | false | false | 1,255 | h | #pragma once
#include "app-veriwell/appseed/multimedia/multimedia/multimedia.h"
//#include <CoreFoundation/CoreFoundation.h>
//#include <CoreFoundation/CFByteOrder.h>
#ifdef MACOS
#include <CoreServices/CoreServices.h>
#else
//#include <UIServices/UIServices.h>
#endif
#include <AudioToolbox/AudioToolbox.h>
#include ... | [
"camilo@ca2.email"
] | camilo@ca2.email |
c164b04f35e639e49b42a18594dc0c22b7c0d8bf | d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e | /old_hydra/hydra/tags/apr07a/hyp/macros/project_exp.C | 28f469ea1f0ae678fef2314f64717ed4c86697d5 | [] | no_license | wesmail/hydra | 6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a | ab934d4c7eff335cc2d25f212034121f050aadf1 | refs/heads/master | 2021-07-05T17:04:53.402387 | 2020-08-12T08:54:11 | 2020-08-12T08:54:11 | 149,625,232 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,482 | c | #define project_exp_cxx
#include "project_exp.h"
#include <TH2.h>
#include <TStyle.h>
#include <TCanvas.h>
void project_exp::Loop()
{
// In a ROOT session, you can do:
// Root > .L project_exp.C
// Root > project_exp t
// Root > t.GetEntry(12); // Fill t data members with entry number 12
// Root ... | [
"waleed.physics@gmail.com"
] | waleed.physics@gmail.com |
5bf33bba1565976a5a801ed1f77432e8a7ddc9ac | 58d7677aa557ec3e88d6810a57fbe90d6a400f38 | /HelloWorld/frameworks/runtime-src/Classes/reader/Macros.h | 48402141385ea1b28967f6c41fce80a743bd40a5 | [] | no_license | Kuovane/creator_to_cocos2dx | 29c6bda84ccd578eddd63afc57d5328a0c227ee4 | e145748eeeb3cafb6efa92c97d671ce26527ad6f | refs/heads/master | 2021-06-10T23:22:48.004975 | 2021-03-31T09:22:14 | 2021-03-31T09:22:14 | 132,981,074 | 19 | 8 | null | 2018-05-11T02:53:22 | 2018-05-11T02:53:22 | null | UTF-8 | C | false | false | 2,225 | h | /****************************************************************************
Copyright (c) 2017 Chukong Technologies Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the S... | [
"811408414@qq.com"
] | 811408414@qq.com |
f3fab9a31515c50c88aed304bc3e6a58f3617bec | daef81f4caf174637f87a9056cd4de1c1a2e10b9 | /calendar.c | 87c6a431caea6c72b0d81274bb4ef548f71de3a1 | [] | no_license | Karmad01/calendar | 8180ea9e22e63be6231ed29d037f3956d783f0a1 | 932f6a67331636076b250a62b4870191be61ca2b | refs/heads/main | 2023-06-01T11:37:40.191794 | 2021-06-16T18:37:49 | 2021-06-16T18:37:49 | 377,588,366 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,038 | c | #include <stdio.h>
#include <stdlib.h>
#include "include/conio.h"
#include "include/calendar.h"
static int calendar[6][7]; //Stores the dates in the order to be displayed
static const char *days[7] = {"Sun", "Mon", "Tue", //Short name of the days
"Wed", "Thu", "Fri", "Sat"};
voi... | [
"noreply@github.com"
] | Karmad01.noreply@github.com |
ba877908cf971ba7b41dcae9e242765e063b5d47 | 6edcaa111907f2b02e2224465a5a1e72eae15444 | /srcache-nginx-module-0.25/src/ngx_http_srcache_var.h | 74c4b2352c542a1f642e4c0d337b921c9ad5918d | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | caidongyun/nginx-openresty-windows | 31b89c47746f5c04fb9d0119e826079b969747fd | c60fbbda4ab86f9176255eed03b4ac06cb3c7b16 | refs/heads/master | 2016-09-10T01:08:36.088933 | 2015-03-27T03:36:48 | 2015-03-27T03:36:48 | 32,963,611 | 6 | 4 | null | null | null | null | UTF-8 | C | false | false | 352 | h |
/*
* Copyright (C) Yichun Zhang (agentzh)
*/
#ifndef _NGX_HTTP_SRCACHE_VAR_H_INCLUDED_
#define _NGX_HTTP_SRCACHE_VAR_H_INCLUDED_
#include "ngx_http_srcache_filter_module.h"
ngx_int_t ngx_http_srcache_add_variables(ngx_conf_t *cf);
#endif /* _NGX_HTTP_SRCACHE_VAR_H_INCLUDED_ */
/* vi:set ft... | [
"caidongyun@360.cn"
] | caidongyun@360.cn |
a86244aadb29b52d2820a14145ca46d62710c877 | abcb2af1fa10c01c90a4b7688f04b5b5d10146e6 | /S1E39.2.c | e4c97b74c06fd278de46c7b0460d1137d3fb45f4 | [] | no_license | lgt494371725/C-algorithm | b317bb422f45bfb2d56d5906fea775c16f3ac5bb | 514b6d202a18a0a04c5f2f39e07ce51a9a6c957a | refs/heads/main | 2023-04-03T09:27:14.071949 | 2021-04-11T03:57:34 | 2021-04-11T03:57:34 | 355,202,379 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,301 | c | #include <stdio.h>
#include <stdlib.h>
#define INCREMENT 10
#define INIT_SIZE INCREMENT
int main(void)
{
char ch;
char *num; // 存储整个数据的首地址
char *last; // 最近一次迭代的起始地址
int limit = 0; // 每次迭代的限制值
long times = 1; // 记录重新申请多少次内存
num = (char *)malloc(INIT_SIZE);
... | [
"liuguanting494371725@gmail.com"
] | liuguanting494371725@gmail.com |
76846fd7e7ea2b629219616311d0aa9b23e3fea7 | bba14466652cb66811f5e419bb44221efba11983 | /test/include/wifiAssocStaTable.h | 6019e2d59cd3c6dd32217d74036159f5fb1ec9e3 | [
"MIT-CMU",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | dellzhui/net-snmp | cbc9dabf51dfc1f07311a6ce81676c580be5ce7d | 8715cd71f04eacf735247b5b4709416463aee073 | refs/heads/master | 2021-01-21T04:19:13.932923 | 2017-11-03T06:10:22 | 2017-11-03T06:10:22 | 47,458,785 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,083 | h | /*
* Note: this file originally auto-generated by mib2c using
* version $ of $
*
* $Id:$
*/
#ifndef WIFIASSOCSTATABLE_H
#define WIFIASSOCSTATABLE_H
#ifdef __cplusplus
extern "C" {
#endif
/** @addtogroup misc misc: Miscellaneous routines
*
* @{
*/
#include <net-snmp/library/asn1.h>
#if 0
/* other requir... | [
"dellzhui@gmail.com"
] | dellzhui@gmail.com |
00aef559575eece4109a4b9942b4e0991c5485df | a280aa9ac69d3834dc00219e9a4ba07996dfb4dd | /regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/mips/include/asm/netlogic/mips-extns.h | d49ae2c5e75b6aef987b56b73bd51b2d3c39b7be | [] | no_license | weilaidb/PythonExample | b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466 | 798bf1bdfdf7594f528788c4df02f79f0f7827ce | refs/heads/master | 2021-01-12T13:56:19.346041 | 2017-07-22T16:30:33 | 2017-07-22T16:30:33 | 68,925,741 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 300 | h | #define _ASM_NLM_MIPS_EXTS_H
#define read_c0_eirr() __read_64bit_c0_register($9, 6)
#define read_c0_eimr() __read_64bit_c0_register($9, 7)
#define write_c0_eirr(val) __write_64bit_c0_register($9, 6, val)
#define write_c0_eimr(val) \
do while (0)
static inline int hard_smp_processor_id(void)
| [
"weilaidb@localhost.localdomain"
] | weilaidb@localhost.localdomain |
81b20fbb3d41e04275c898a5ea47e915fafec376 | c20fea08cdafa19e991c8d544f39d79e1c26c4f2 | /stm32-exemplos/FSMC/NOR/stm32f10x_it.c | fef3d4ebc55becb4952c72ea3d8ca6a8624fb410 | [] | no_license | rafaelntg/pds-templates | 334035557b9b8c6b644b6aea418c1796bd48bc2d | b05d2b77210eaf03bda01bfcb26ccdd948d97aca | refs/heads/master | 2020-04-29T10:09:19.844753 | 2012-11-29T14:10:44 | 2012-11-29T14:10:44 | 32,826,554 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,361 | c | /**
******************************************************************************
* @file FSMC/NOR/stm32f10x_it.c
* @author MCD Application Team
* @version V3.0.0
* @date 04/06/2009
* @brief Main Interrupt Service Routines.
* This file provides template for all exceptions handler and ... | [
"pdsolucoes.rafael@gmail.com@98fa99bb-a900-e7b4-7e35-4c585b810398"
] | pdsolucoes.rafael@gmail.com@98fa99bb-a900-e7b4-7e35-4c585b810398 |
26e24c7dbab1ae3ac266684e9ae2533ee614b753 | c4003ed7429026e62c217cf039a9921976d1f492 | /data_struct/idsl/_idsl_list.h | 2ba9ba6eaef9288b07b33ab8e64f91d800f9c603 | [] | no_license | emacsvi/misc | 7ae786e2c4e90f12c4aea184a44cec2100fb95bc | c9a18bee9b14c4bb2baa6282a1a5800b2a78dfd8 | refs/heads/master | 2020-11-24T19:35:36.925755 | 2019-12-14T09:29:03 | 2019-12-14T09:29:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,339 | h | #ifndef __IDSL_LIST_H
#define __IDSL_LIST_H
#include <stdio.h>
#include "_idsl_node.h"
#include "idsl_types.h"
typedef _idsl_node_t _idsl_list_t;
_idsl_list_t
_idsl_list_alloc (const idsl_element_t E);
void
_idsl_list_free (_idsl_list_t L, const idsl_free_func_t FREE_F);
bool
_idsl_list_is_empty (const _idsl_list... | [
"4179e1@906dfecc-7149-11de-8b73-c1edde54a3c7"
] | 4179e1@906dfecc-7149-11de-8b73-c1edde54a3c7 |
9dc636b52425a4bc2d3cde0ef1214d83f1127310 | 6d5b9b85d7ebee5899166a776a49597a520133cb | /STM32Cube_FW_F7_V1.8.0/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c | bd764df5ea5769a8e6d0285af6c0afe86c2226c4 | [] | no_license | koson/STM32-Tests-Project | 291531c504b256fc70b484467fc285ef2349fed9 | 25fb44d23362e89df3ae489285dae1a4be3d0414 | refs/heads/master | 2022-04-12T17:33:56.763263 | 2020-04-04T23:02:45 | 2020-04-04T23:02:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 167,826 | c | /**
******************************************************************************
* @file stm32f7xx_hal_i2c.c
* @author MCD Application Team
* @brief I2C HAL module driver.
* This file provides firmware functions to manage the following
* functionalities of the Inter Integrated Circ... | [
"i.orfanidi@mail.ru"
] | i.orfanidi@mail.ru |
f76fabadbeb7ddf4c9e2df61c84aa512c96f5073 | ba2601dfef24f2820de765d558702a7eda2cd15b | /ATMEGA32/General Files/2.micro.h | a3e793797b78079e7aa4cdbf7ae566f86847a1bc | [] | no_license | Esraa772/Embedded-Practice-Projects- | 277b8375920abaf90f3309c992d825c6d162a9f7 | 83260183e00d8db993938cd3ab04e74658be1d27 | refs/heads/master | 2020-04-19T13:58:25.636510 | 2019-01-29T22:52:38 | 2019-01-29T22:52:38 | 168,230,022 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 849 | h | /*
* micro.h
*
* Created: 9/30/2018 11:13:21 PM
* Author: Esraa Abdelnaby
*/
#ifndef MICRO_H_
#define MICRO_H_
#include "config.h"
#define pin0 0
#define pin1 1
#define pin2 2
#define pin3 3
#define pin4 4
#define pin5 5
#define pin6 6
#define pin7 7
//---------------------------------------... | [
"noreply@github.com"
] | Esraa772.noreply@github.com |
b649c1127b4bd58408e079457661a5922f693945 | bed2685242884903e1c79ef4a42fff4432681b3f | /tests/tests_runs.c | 62322972bf8a7c59fe47d8f916d9d0f830b66add | [] | no_license | Epitech-Tek2/CPPrush1 | c5ed250778f07de449a8a19b6dd59b01a6ea5b2a | 7855ff93799aeac4b76b1ccf17bd2af3c8fe343c | refs/heads/master | 2023-09-05T01:30:59.824213 | 2021-10-17T12:13:00 | 2021-10-17T12:13:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,695 | c | /*
** EPITECH PROJECT, 2021
** B-CPP-300-STG-3-1-CPPrush1-clement.muth
** File description:
** tests_runs
*/
#include <criterion/criterion.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <signal.h>
#include "new.h"
#include "point.h"
#include "vertex.h"
#include "int.h"
#inc... | [
"clementmuth@gmail.com"
] | clementmuth@gmail.com |
88c19a58ab4c74beb4a8723330d1ed6fc3197325 | ebf1f67bea98c6dd224a8a556aea7f6a8ac64fbb | /main.c | e675a1146895aef413ada5c9b043a64c0deeec12 | [] | no_license | meirozenfeld/Ex1 | b6c8b1ca4349b5c0d853bb115d18b6338a2cac06 | 3e4917e73cae77110b7655fa1516d76e078f319e | refs/heads/master | 2020-09-12T02:16:35.417660 | 2019-11-18T16:07:16 | 2019-11-18T16:07:16 | 222,267,690 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 891 | c | #include "myMath.h"
#include <stdio.h>
double f1(double x){
double a = Exp(x);
double b = Pow (x,3);
double c = add(a,b);
double ans = sub (c, 2);
return ans;
}
double f2(double x){
double a = mul(x,3);
double b = Pow(x,2);
double c = mul(2,b);
double ans = add(a,c);
return ans;
}
double f3( ... | [
"meirozenfeld@gmail.com"
] | meirozenfeld@gmail.com |
a54b0c9c5ec9b5528929ea785ccce97a8f2478a8 | e54bb6df193068f0406fec0a45a142ad0e36735e | /二叉树.c | 7b697bd9fab9fc97227ba172466647071c96f13b | [] | no_license | Stephen-hub466/algorithm | b0425e9a7cce3ade2d73b983ceddbaab01d7db38 | 9068719a4a73b653a6232532c2b5085b2cfb167c | refs/heads/master | 2020-11-24T13:05:48.292535 | 2017-07-01T15:06:27 | 2017-07-01T15:06:27 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 5,341 | c | /*
二叉树的创建 基本运算 先中后序遍历 层序遍历
容错机制不好不全
*/
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
//二叉树
typedef struct Node
{
char data;
struct Node* LChild;
struct Node* RChild;
}*BiTree, BiTNode;
//=====队列======= 层序遍历时需要用到
typedef struct Node2{
BiTree root;
struct Node2 *next;
}linkQueueNode... | [
"3062665196@qq.com"
] | 3062665196@qq.com |
5afcb81b1998b8b92c9242e2c2ad0ad2155991b5 | 664b5e8e92b44eecc14e60390152bdaee864b70a | /labs/gui/dwGraphic/stable.h | 1dfa7cb4eba3b7175e2897fc989ec08a926377d5 | [] | no_license | JerryZhou/Raccoon | a44f178ec47e3eb8181d05e6ca870d02c75477e8 | f8da3ddf82f0e5d2918d890eafbff77a61025d1e | refs/heads/master | 2016-09-05T20:24:23.866920 | 2013-10-25T08:14:53 | 2013-10-25T08:14:53 | 8,606,064 | 8 | 3 | null | null | null | null | UTF-8 | C | false | false | 198 | h | #pragma once
#include <stdio.h>
#include <tchar.h>
#include <assert.h>
#include <Windows.h>
#include "dwstable.h"
#include "dwcore/dwcore.h"
#include "gdi/dwtype.h"
#pragma warning(disable : 4996) | [
"jerryzhou@outlook.com"
] | jerryzhou@outlook.com |
c0c1d897fad35bb5d1b6d9da7f2d22e589cf6078 | 563f578b6c5f6e9b2681881e2b719422d349298b | /src/channels/prefetch.c | cd1b7568b59468b08703dc01c95e2d137c04fafd | [
"Apache-2.0"
] | permissive | ricecake/zerovm | 78558295346f6a05601d0f82235c2ff1a9f8e1ea | a2413dba095e9e222f88fa9db0324227f547c533 | refs/heads/master | 2021-01-22T08:29:32.944685 | 2013-10-28T11:07:23 | 2013-10-28T11:07:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,390 | c | /*
* Copyright (c) 2012, LiteStack, 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 a... | [
"bortoq@gmail.com"
] | bortoq@gmail.com |
eb04c7102c17584b9d5e91c4b9a72e1d094b173b | d17c68f02da7374a5fa0cbd2e95804fe95b5326c | /usb/usbd_msc_storage.h | 8983d607a494bb6a2ca0f98a636f99490f7d2bfb | [] | no_license | caoyuan96421/mbed-gui | d6546b385402086ceb1de71a766a7a30a0ef8b60 | 8550cda459f6808cf406a572c11107c9b13903b0 | refs/heads/master | 2021-03-24T13:17:35.816675 | 2018-09-15T01:35:16 | 2018-09-15T01:35:16 | 120,718,181 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,166 | h | /**
******************************************************************************
* @file usbd_msc_storage.h
* @author MCD Application Team
* @version V2.4.2
* @date 11-December-2015
* @brief Header file for the usbd_msc_storage.c file
************************************************************... | [
"caoyuan96421@gmail.com"
] | caoyuan96421@gmail.com |
8be72b0063c6d5169fc23e628fd5d0f095adc1d3 | 948a3d4f554a7c34f713055fc65744527509e492 | /sip-4.19.21/sipgen/lexer.c | 913967a9f35cb094634e1f9ff50dec3f4c96a6b6 | [
"MIT",
"GPL-2.0-only",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only"
] | permissive | Clynie/StockSpider-1 | 0e982991cb03f776b329916f43cdf74e2717502e | 4d3bec01f581c4c8dd45af668ce8aab4c98685ba | refs/heads/master | 2021-01-04T20:15:39.641321 | 2020-02-19T05:36:18 | 2020-02-19T05:36:18 | 240,745,038 | 0 | 0 | MIT | 2020-02-15T16:09:53 | 2020-02-15T16:09:52 | null | UTF-8 | C | false | false | 138,894 | c | #line 2 "sip-4.19.21/sipgen/lexer.c"
#line 4 "sip-4.19.21/sipgen/lexer.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX... | [
"lyniedairce@163.com"
] | lyniedairce@163.com |
b0192c3a6265c3447d92c220e83b7ab80b38406b | 8be7a7efbaa6a4034e435bc8221cc5fb54f8067c | /QIron-0.1/include/qirabstractdockstyle.h | 9afd38fc335f24dab7fff69c694ae6cba85948ee | [] | no_license | RinatB2017/Qt_github | 9faaa54e3c8e7a5f84f742d49f4559dcdd5622dd | 5177baa735c0140d39d8b0e84fc6af3dcb581abd | refs/heads/master | 2023-08-08T08:36:17.664868 | 2023-07-28T07:39:35 | 2023-07-28T07:39:35 | 163,097,727 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 48 | h | #include "../src/QIrDock/qirabstractdockstyle.h" | [
"tux4096@gmail.com"
] | tux4096@gmail.com |
ab4a6c490c17a09d495de604a4ff5c2fc69ad247 | aef3bd84565d35f2cfc48464e160e2584cfb8712 | /tests/test.c | 485e3caab048ec126f9237bf5352e19e7e945023 | [] | no_license | rajasharan/hashtable | 0c2485d1971e91d7b71dde86ef6847dcb5ea25e7 | 3b8fe513ff7e2ec3c30ae8f58fd5f58b16653b89 | refs/heads/master | 2021-01-10T20:50:28.803968 | 2011-08-29T08:36:48 | 2011-08-29T08:36:48 | 2,273,540 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,371 | c | #include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include "hash.h"
#define LEN 8000
int main(int argc, char *argv[]) {
if(argc < 2 ) {
printf("Usage: ./hash-test <list-of-input-files>\n");
return -1;
}
int debug;
FILE * f[260];
int count = 1;
while(count < argc && count < 259) {
f[co... | [
"rajasharan@gmail.com"
] | rajasharan@gmail.com |
b9854f68b84fec2bcecb392e6b5b0ebc482d73be | 5d417f03f724f4e23000f28cd629c92bc9297a23 | /xmega/drivers/adc/example7/adc_oversampling.c | 3d2ec8aed2a55295622539aad22d3753bc3f019b | [] | no_license | siliconunited/atmel-asf | 5ac78a123cb0f5026ffb9a0ba66b75abcccb788f | 19e02800a6cc33d203f5d12f7dfca0c39195d879 | refs/heads/master | 2021-01-22T21:34:10.563981 | 2017-03-19T04:45:30 | 2017-03-19T04:45:30 | 85,439,630 | 6 | 3 | null | 2020-03-08T01:34:35 | 2017-03-18T23:56:24 | C | UTF-8 | C | false | false | 8,152 | c | /**
* \file
*
* \brief AVR XMEGA Analog to Digital Converter Driver Example 7
* Example demonstration of hardware over-sampling feature of XMEGA E ADC.
*
* Copyright (C) 2014-2015 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary... | [
"robksawyer@gmail.com"
] | robksawyer@gmail.com |
6a1f4828375b444dd09d5e5c01bf78fe9f8e46ae | 4981bcbca1b9aa85b59f8bf1f6839078fc37fa99 | /Algo_C/td4.1.c | e3e99bda910899f8267a6fb0dd2530c214693d5f | [] | no_license | sly92/Other-works | 0026f0d8b7f7c0d230339e6c7cb6c4b4af37e352 | e43ba18eb238c3254b63c2b33b086de630d19d04 | refs/heads/master | 2020-07-25T02:37:21.864473 | 2019-11-03T22:30:39 | 2019-11-03T22:30:39 | 200,667,179 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,213 | c | #include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include <string.h>
#include <math.h>
void decomp_2(int nb, int *dec, int digits){
int i;
for(i=digits-1;i>=0;i--){
dec[i]=nb&1; //operation bit a bit &1 = %2==0
nb>>=1; // decalle d'1 bit vers la droite
}
}
void afft(int t[], int n)
{ while(n--) print... | [
"codingsly@gmail.com"
] | codingsly@gmail.com |
aefebc0e0aed4c5a15ec2cc16a60430d0816be33 | c5950a21fd7b3ec500cc5a1b72235a87a3e68a48 | /SimpleTuringMachine.h | 0ffde31e366a771c0bb0365bcfc6c2bb9950c827 | [] | no_license | ngarbezza/turing-machine | 7bc83610243b12b9612125cb320a8599232f87a4 | 7cf88dfc6681e25cf7d05756716af4c87e413ecc | refs/heads/master | 2021-01-19T06:05:52.382504 | 2011-12-28T19:04:30 | 2011-12-28T19:04:30 | 3,064,458 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,746 | h | #include "Prelude.h"
#define State int
#define Dir int
#define L 0
#define R 1
#define Symbol int
#define X 2
#define A 3
#define B 4
#define C 5
struct tNode{ /** Lista doblemente enlazada */
struct tNode* prev;
ELEM_TYPE value;
struct tNode* next;
};
struct tHeader{ ... | [
"n.garbezza@gmail.com"
] | n.garbezza@gmail.com |
5e4ec035de0dff73ff1335ea85bd0ece13687560 | 64f0bac5c5cf42312efd5b46708d8a3b14a4bbf2 | /innerproc/urlregex.h | 19953c82d42a2f285bd8935ab77671827e5b2a9e | [] | no_license | lwgboy/SmartVision | 1bd3ab879a96a8eb397415c04d1e810f50919d23 | 17e36746fea87ca23df80d9e7d2a3ef58075aee7 | refs/heads/master | 2022-01-30T17:03:52.919327 | 2019-05-29T10:02:48 | 2019-05-29T10:02:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,813 | h | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <regex.h>
/* The following is the size of a buffer to contain any error messages
encountered when the regular expression is compiled. */
#define MAX_ERROR_MSG 0x1000
/* Compile the regular expression described by "regex_text" into
"r". */
sta... | [
"24509826@qq.com"
] | 24509826@qq.com |
327c080345969570a05d1dfe9a1102b32286b94f | dc448f60a60b9da3333de7382992a35c2df06e80 | /0-bubble_sort.c | c9336c9daafa8c212df27951ec9fe523f457bc15 | [] | no_license | sonnentag/sorting_algorithms | 070e2fd8f1b3952ad5b699cda9a3b916c9b72945 | 62c01bdb7d367f6f2a95895be1c041d0cd53f1a3 | refs/heads/master | 2022-11-06T06:56:53.668992 | 2020-06-18T16:06:29 | 2020-06-18T16:06:29 | 271,656,246 | 0 | 0 | null | 2020-06-18T16:06:31 | 2020-06-11T22:11:59 | C | UTF-8 | C | false | false | 735 | c | #include "sort.h"
/**
* bubble_sort - function
* @array : array to sort
* @size: size of array
*
* Description: function to sort an array using bubble sort method
* Return: Nothing
*/
void bubble_sort(int *array, size_t size)
{
int temp;
size_t index, start;
if (array == NULL || size < 2)/*if array is empty or size... | [
"1672@holbertonschool.com"
] | 1672@holbertonschool.com |
da7072dfc2378770f7aa35b476ddb314bc252c0e | cef450a271d2ab9584f48bcd3cb13b065441b94e | /search.c | d679074f3431e17231e442ca415c195b8df0cca1 | [] | no_license | SaralaDeviCS/zo_en | 31d8a96e60807e2771bc7a4299d7b0c46db8d914 | 7ac11731925092f06aed025890023a0dabcd65f8 | refs/heads/master | 2021-05-16T16:15:20.387523 | 2018-04-07T15:30:59 | 2018-04-07T15:30:59 | 119,929,344 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 386 | c |
#include <stdio.h>
int main()
{
int n;
int a[10000];
printf("enter the number to be searched ");
scanf("%d",&n);
int num,i=0,pos=-1;
char end;
while(scanf("%d%c",&a[i],&end))
{
if(a[i]==n)
{
pos=i;
}
i++;
if(end=='\n')
{
break;
}
}
if(pos==-1)
{
printf("the number is not found \n");
... | [
"noreply@github.com"
] | SaralaDeviCS.noreply@github.com |
868aa7006d1b5eb6e6283c686d14ee21b98a669d | 6cd4bc3e8ad2ff25b77fdd8ba80bec623c14885b | /src/ctype/ft_isalnum.c | cbbfab9e580f673a78f664f80dd865d683029bc8 | [] | no_license | nalysann/libft | 13ede3fe2714017290240b6e016f94f76d450726 | b6430abd2426115f7a5a8af1bcba8a28537c20ec | refs/heads/master | 2022-12-27T14:42:07.751708 | 2022-05-11T12:51:29 | 2022-05-11T12:51:29 | 238,909,181 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 983 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum.c :+: :+: :+: ... | [
"urbilya@gmail.com"
] | urbilya@gmail.com |
a7d1b15d132aed7379c09774d05ea99c2c1e9c1d | 5af863c232b34558d28c860024013197cefd2641 | /compute/tensor/src/gpu/mali/fp16/depthwise_convolution_mali_fp16.h | ad7c3f9cd92dde0f2bceff7572fa5288b3e9e646 | [
"MIT"
] | permissive | ishine/bolt | fc4ced7463f3820ab3afaa38e6caa648a92943c1 | 900eda7b1f7c4dbe052ab3be33bcd2fb231d4c29 | refs/heads/master | 2022-10-29T11:34:10.544642 | 2022-10-12T13:53:32 | 2022-10-12T13:53:32 | 225,786,215 | 0 | 0 | MIT | 2021-04-23T07:07:35 | 2019-12-04T05:25:45 | C++ | UTF-8 | C | false | false | 2,954 | h | // Copyright (C) 2019. Huawei Technologies Co., Ltd. All rights reserved.
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation the rights to use,... | [
"jianfeifeng@outlook.com"
] | jianfeifeng@outlook.com |
3428cb25c15550cfbd23120d88dea64c3bebe11c | 35a0a383b079978992647555645ac30e52ebec3f | /test/Sema/format-type-confusion.c | f02bd56676c8fe44754518dfd0f79f28661974e6 | [
"Apache-2.0",
"LLVM-exception",
"NCSA"
] | permissive | Codeon-GmbH/mulle-clang | f050d6d8fb64689a1e4b039c4a6513823de9b430 | 214e526a2b6afeb9508cac5f88c5a4c28e98982f | refs/heads/mulle_objclang_100 | 2021-07-18T07:45:29.083064 | 2021-02-16T17:21:51 | 2021-02-16T17:21:51 | 72,544,381 | 29 | 5 | Apache-2.0 | 2020-04-30T11:36:08 | 2016-11-01T14:32:02 | C++ | UTF-8 | C | false | false | 1,095 | c | // RUN: %clang_cc1 -triple x86_64-apple-darwin9.0 -fsyntax-only -verify -Wno-format -Wformat-type-confusion %s
__attribute__((format(__printf__, 1, 2)))
int printf(const char *msg, ...);
#define FMT "%hd %hu %d %u %hhd %hhu %c"
int main() {
_Bool b = 0;
printf(FMT,
b, // expected-warning {{format specif... | [
"erik.pilkington@gmail.com"
] | erik.pilkington@gmail.com |
6d6766388d40bbacaadfe01538bf9fb514338532 | 10650d6d01a2a7f06119b0b0c8e66bfa481d2beb | /student.c | 8e6591b1a6641724eeed930224dca489fc5aa4c4 | [] | no_license | 99002674/StudentManagementSystem | 59fbb5cd7ab5a5bb5b0b9febd784d36e1d9f20a1 | 9f7901d081e5c99b4263369b5f601a70b1498f08 | refs/heads/main | 2022-12-29T20:55:06.517122 | 2020-10-10T06:03:47 | 2020-10-10T06:03:47 | 302,826,422 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,669 | c | #include<stdio.h>
struct student
{
int rollno;
char name[30];
char Address[100];
char Email[50];
char Phone[10];
}stud;
// FUNCTION TO INSERT RECORDS TO THE FILE
void insert()
{
FILE *fp;
fp = fopen("Record", "a");
printf("Enter the Roll no :");
scanf("%d", &stud.rollno);
printf("Enter th... | [
"noreply@github.com"
] | 99002674.noreply@github.com |
f360e85694235e6e86f1f5304dd2c18337f21f59 | 010279e2ba272d09e9d2c4e903722e5faba2cf7a | /contrib/python/scipy/py2/scipy/sparse/linalg/dsolve/SuperLU/SRC/csp_blas3.c | 1f3023d0401440499185dc366f4f7dd506893d7a | [
"BSD-3-Clause",
"Python-2.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Qhull",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | catboost/catboost | 854c1a1f439a96f1ae6b48e16644be20aa04dba2 | f5042e35b945aded77b23470ead62d7eacefde92 | refs/heads/master | 2023-09-01T12:14:14.174108 | 2023-09-01T10:01:01 | 2023-09-01T10:22:12 | 97,556,265 | 8,012 | 1,425 | Apache-2.0 | 2023-09-11T03:32:32 | 2017-07-18T05:29:04 | Python | UTF-8 | C | false | false | 4,827 | c | /*! \file
Copyright (c) 2003, The Regents of the University of California, through
Lawrence Berkeley National Laboratory (subject to receipt of any required
approvals from U.S. Dept. of Energy)
All rights reserved.
The source code is distributed under BSD license, see the file License.txt
at the top-level director... | [
"arcadia-devtools@yandex-team.ru"
] | arcadia-devtools@yandex-team.ru |
5668004e08b02c54072f14931b24fe11d0091c77 | f3b3fdad6e9667a100081939c7f05202854c8a83 | /api/PL/dmapl/xaxidma_hw.c | 9f48eec7e422418f0ed6c0463a596394cd0ffbed | [] | no_license | vconnectech/project-vconnectech | 4713ad1ed826e5aded5e88775a133b8b56a04b00 | 29a49c68682b1aa5a82603e11b4fcc2709536f2b | refs/heads/master | 2022-11-24T05:26:31.345373 | 2020-07-19T10:19:52 | 2020-07-19T10:19:52 | 277,525,483 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,353 | c | /******************************************************************************
*
* Copyright (C) 2010 - 2019 Xilinx, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Softw... | [
"sn@vconnectech.com"
] | sn@vconnectech.com |
905fc4e39cad101fde342ec33b2da1865e6079fc | 7f2af5cbdc642d194ee0afc6ca3029089e5a4f46 | /eclipse/STM32Cube_FW_F1_V1.6.0/Projects/STM3210E_EVAL/Examples/BSP/Src/stm32f1xx_it.c | cd11890c5f3ea1fe7969e3c5791f65fac41c3a62 | [
"BSD-2-Clause"
] | permissive | StefanNa/nucleo_projects | 5bdf585c7137c8609c4c72137bc59a293522a9f6 | 67b902d96a67463d8817b33b7357cc8cf9ff1f1a | refs/heads/TestRTOS | 2021-06-03T09:59:03.138723 | 2017-08-25T14:10:38 | 2017-08-25T14:10:38 | 96,892,646 | 0 | 2 | null | 2020-03-08T01:18:56 | 2017-07-11T12:51:48 | C | UTF-8 | C | false | false | 6,231 | c | /**
******************************************************************************
* @file BSP/BSP/Src/stm32f1xx_it.c
* @author MCD Application Team
* @version V1.5.0
* @date 14-April-2017
* @brief Main Interrupt Service Routines.
* This file provides template for all exceptions handler ... | [
"steven_steven@hotmail.de"
] | steven_steven@hotmail.de |
b3093a7a0a2a13b8f41a2a13008615c0a70df0ee | d4fc06066251badcdaca22166cad7b40a2743e8e | /ZiWeiPan.c | f1c727f72e2455a84e910f46d01ef1f95fc8b730 | [] | no_license | ying123/suan_ming | 6dc3f69a59592408799b29f8bb0b91b463e09725 | 43510553cd132f9502875c4df7b69243fae0edd8 | refs/heads/master | 2020-12-09T04:13:43.949166 | 2017-06-23T14:07:44 | 2017-06-23T14:07:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 67,496 | c | ////
//// ZiWeiPan.c
//// BaZi
////
//// Created by ms on 2017/6/21.
//// Copyright © 2017年 ms. All rights reserved.
////
//
//#include "ZiWeiPan.h"
//
//static int year = 2017;
//static int mon = 5;
//static int day = 26;
//static int hour = 6;
//static int min = 0;
//static int sec = 0;
//static int tg = 3;
//sta... | [
"854415002@qq.com"
] | 854415002@qq.com |
3f1e0aaf77bdd14fbffd20c8b1bb0b1f328044fc | 3abca517661ec1e302c0ead8d98558917d2b291b | /Documents/mipod/mipod2/sensors/bmx055.c | 482998018822bb7198437174235e39cdfb6c63a3 | [] | no_license | techauto/mipod-firmware | 064a855ee181b99b7b766c280ea901decf4e65b0 | 276c028d4efa8609dc0bd522157cfbbcc88de197 | refs/heads/master | 2021-01-16T23:21:34.142841 | 2017-05-02T13:09:56 | 2017-05-02T13:09:56 | 82,910,226 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,984 | c | /****************************************************************************************************************************************************
*** INCLUDES ***********************************************************************************************************************************
*******************... | [
"tuan.nguyen@fau.de"
] | tuan.nguyen@fau.de |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.