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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
012b1ecbeeda5e83389aa114b182b16c76dfd0ad | afc3bd22ea6bfe0e60396a84a837c82a0d836ea2 | /Operating Systems/Lab3/ReactOS/mydriver.c | 1c194c1cffc7ac1c81422d6a515e7cfc04240aa4 | [] | no_license | BuDashka/BMSTU | c128c2b13065a25ec027c68bcc3bac119163a53f | 069551c25bd11ea81e823b2195851f8563271b01 | refs/heads/master | 2021-04-15T15:22:12.324529 | 2017-10-19T00:59:25 | 2017-10-19T00:59:25 | 126,348,611 | 1 | 1 | null | 2018-03-22T14:35:04 | 2018-03-22T14:35:04 | null | UTF-8 | C | false | false | 1,733 | c | #include <ntddk.h>
#include <ntddbeep.h>
#ifndef NDEBUG
#define NDEBUG
#endif
#include <debug.h>
NTSTATUS NTAPI DriverEntry(IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRING RegistryPath);
VOID NTAPI BeepUnload(IN PDRIVER_OBJECT DriverObject);
NTSTATUS NTAPI DriverEntry(IN PDRIVER_OBJECT DriverObject, IN PUNICODE_ST... | [
"gosha8352@gmail.com"
] | gosha8352@gmail.com |
889530db99abb004db129a5ed8e2355737a45ebc | 791799a8902f084f9fb2310836792987a5b87a6a | /openacc/down_v2_kernel_post_acckernel.c | 8108ba3fd5308324ca58e24f5084412ce3aa0f8f | [] | no_license | warwick-hpsc/MG-CFD-app-OP2 | 9b4160ddcc49a6748673090665965b3a8227c191 | 304e12205e9dab21d2b3adc2f3c15ac0a696b5cd | refs/heads/master | 2023-09-02T02:45:43.980715 | 2022-08-13T21:07:19 | 2022-08-13T21:07:19 | 187,643,117 | 6 | 5 | null | 2022-08-13T21:07:20 | 2019-05-20T13:12:24 | C++ | UTF-8 | C | false | false | 1,981 | c | //
// auto-generated by op2.py
//
//user function
#include <math.h>
#include "const.h"
//user function
//#pragma acc routine
inline void down_v2_kernel_post_openacc(
const double* residuals1_prolonged,
const double* residuals1_prolonged_wsum,
const double* residuals2,
double* variables2) {
for ... | [
"aowenson@protonmail.ch"
] | aowenson@protonmail.ch |
a111be8af4af58cddc0e5b19ba4b83f42f0990fd | 4cc285b0c585241ff4404087e6fbb901195639be | /NeuralNetworkNumbers/venv/Lib/site-packages/tensorflow/include/tensorflow/compiler/xla/service/gpu/outfeed_manager.h | 9fcd31d25c24b7dbf6d45fb2913fc787169232e5 | [] | no_license | strazhg/NeuralNetworksPython | 815542f4ddbb86e918e657f783158f8c078de514 | 15038e44a5a6c342336c119cdd2abdeffd84b5b1 | refs/heads/main | 2023-04-16T18:51:29.602644 | 2021-04-27T14:46:55 | 2021-04-27T14:46:55 | 361,944,482 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 129 | h | version https://git-lfs.github.com/spec/v1
oid sha256:9e3d926e43a59167c94d6d68203760b36e3ca85b0aff5401edadf5d08ade34ad
size 2477
| [
"golubstrazh@gmail.com"
] | golubstrazh@gmail.com |
10b557fe6117d770ba05e7a51b35521db3f69768 | 9165e3ad8b3311b8408da7051661f4814bbdaece | /conio.c | d1e74963cac174a38a9e222d211798e54ffeff3c | [] | no_license | Eldhose-K-A/Simple_Notepad | 67529b4bb61d3e07a942115168e622e60136e7b5 | b10a94b4247d23c0e209caf1c50acd6849e9ab60 | refs/heads/master | 2020-03-27T21:51:57.771189 | 2018-09-03T09:27:13 | 2018-09-03T09:27:13 | 147,181,850 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 402 | c | #include<stdio.h>
#include<stdlib.h>
void clrscr()
{
printf("\e[0m");
printf("\e[1J");
printf("\e[H");
printf("\e[0J");
}
void gotoxy(int x,int y)
{
printf("\e[H");
if(y>0)
{
printf("\e[%dC",y);
}
if(x>0)
{
printf("\e[%dB",x);
}
}
char getch()
{
char temp;
system("stty -echo");
system("stty cbreak");... | [
"noreply@github.com"
] | Eldhose-K-A.noreply@github.com |
12363b1c1256f7fd9681176c4b10bc1f1f06dc1d | cf16911bc92458e31c8accb95f2062dcdea75ff2 | /SoC-Validation/firmware/gpu_validation/gpu/gp/m400_gp_F208_plbu_set_rsw_vdb_address_00_mem_0.c | 73f6b9af791992461a9ea71d91ffb6fbc4dd5f88 | [] | no_license | alexvatti/embedded-documents | b4f7a789f66dad592a655677788da4003df29082 | 5bcf34328a4f19c514c1bca12ad52dcc06e60f09 | refs/heads/master | 2023-08-14T20:23:00.180050 | 2019-11-29T10:48:05 | 2019-11-29T10:48:05 | 224,813,397 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,106,943 | c | /*----------------------------------------------------------------------------
*
* The confidential and proprietary information contained in this file may
* only be used by a person authorised under and to the extent permitted
* by a subsisting licensing agreement from ARM Limited.
*
* (C) COPYRIGHT 2008-2009 AR... | [
"alexvatti@gmail.com"
] | alexvatti@gmail.com |
14452d81bf146812af5663933d42f91d3926ffef | 1104e13dbc07da46fb699103b3e69327bf2a5414 | /Lidar/app/ultra_simple/sdkcommon.h | 3a2330868df42a2e2b794daafaa7c23936e7ed02 | [] | no_license | X-Robot-2015/Coupe_2017_avril | 7136102122ad6c8abcc7caff8e1f24661614498b | 69a26b8e036089184003f02300ebb7a40d722957 | refs/heads/master | 2021-01-20T00:24:33.537418 | 2017-12-13T15:04:58 | 2017-12-13T15:04:58 | 89,128,109 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,743 | h | /*
* RPLIDAR SDK
*
* Copyright (c) 2009 - 2014 RoboPeak Team
* http://www.robopeak.com
* Copyright (c) 2014 - 2016 Shanghai Slamtec Co., Ltd.
* http://www.slamtec.com
*
*/
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following con... | [
"raphael.dang-nhu@polytechnique.edu"
] | raphael.dang-nhu@polytechnique.edu |
98eb69b8a3d34efec204e9bf844fae8f9013d01c | d84844bae553f526e253003844a196efd5d791ab | /cmd/echo.c | 939654c6cf7baba9e91d0ef27ea3ef5622d17682 | [] | no_license | BobMorlock/AT-T-System-III | 62d25187b8b8d707368ac3e59ae395a05ca5eeaa | efaba1936fdb8cd690b98ce696e7c47dea65858c | refs/heads/main | 2023-08-17T22:59:57.004551 | 2021-09-19T05:41:11 | 2021-09-19T05:41:11 | 408,042,235 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 839 | c | main(argc, argv)
char **argv;
{
register char *cp;
register int i, wd;
int j;
if(--argc == 0) {
putchar('\n');
exit(0);
}
for(i = 1; i <= argc; i++) {
for(cp = argv[i]; *cp; cp++) {
if(*cp == '\\')
switch(*++cp) {
case 'b':
putchar('\b');
continue;
case 'c':
exit(0);
case... | [
"bobm@remlazar.localdomain"
] | bobm@remlazar.localdomain |
d5cb45d9250e7c86919adbaf8104c9b68b77fa35 | 012f0800c635f23d069f0c400768bc58cc1a0574 | /hhvm/hhvm-3.17/hphp/util/etch-helpers.h | 2341593ee21e60585c7f0051aa2b249bc6f927cf | [
"Zend-2.0",
"BSD-3-Clause",
"PHP-3.01"
] | permissive | chrispcx/es-hhvm | c127840387ee17789840ea788e308b711d3986a1 | 220fd9627b1b168271112d33747a233a91e8a268 | refs/heads/master | 2021-01-11T18:13:42.713724 | 2017-02-07T02:02:10 | 2017-02-07T02:02:10 | 79,519,670 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,669 | h | #ifndef incl_ETCH_HELPERS_H
#define incl_ETCH_HELPERS_H
#if defined(__CYGWIN__) || defined(__MINGW__) || defined(_MSC_VER)
#define CFI(x) .cfi_##x
#define CFI2(x, y) .cfi_##x y
#define CFI3C(x, y, z) .cfi_##x y##, z
#define ETCH_ALIGN16 .align 16
#define ETCH_ALIGN8 .align 8
#define ETC... | [
"peiqiang@huawei.com"
] | peiqiang@huawei.com |
2238c3a14e91f3fa0bda47a86fd5252cbb51932e | 1bd3bda3b45a6ee1be305d28e9db3e108ee8aa13 | /frdmke15z/driver_examples/flexio/i2c/interrupt_lpi2c_transfer/pin_mux.c | 5f73b9285b893aa69694b5b999460e70ebd03a1f | [] | no_license | JohnHau/mcux-sdk-examples | 22721dedeb2963ee863498ecd97d5b6296ea1b0d | 62f5041d6d7da742ffd7ea0f8f017a670af450e8 | refs/heads/main | 2023-05-14T21:49:58.810657 | 2021-06-08T05:28:39 | 2021-06-08T11:57:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,987 | c | /*
* Copyright (c) 2016, Freescale Semiconductor, Inc.
* Copyright 2016-2017 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/* clang-format off */
/*
* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
!!GlobalInfo
product: Pins v3.0
processor: ... | [
"susan.su@nxp.com"
] | susan.su@nxp.com |
4310a139f7fc47558bc0eb3923660299a8a8bc62 | 0d4fa243bcc80104d0921784a7c11be88bbd5541 | /bonus/src/cmd_input/string/pushChar.c | af6cb41c5debdc000a05cbe43b64bd7e828a1044 | [] | no_license | ethanke/42sh | ecf5f3d6fed2b16ba5e368b8b5bcc78009b9ffce | 2bb4687dae5e4358cb64efdf6fa972b917cd6bcf | refs/heads/master | 2020-12-01T11:50:20.108879 | 2016-10-07T09:29:58 | 2016-10-07T09:29:58 | 57,085,311 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,150 | c | /*
** pushChar.c for in /home/sousa_v/perso/my_string/src/
**
** Made by Victor Sousa
** Login <sousa_v@epitech.eu>
**
** Started on Thu Jun 2 18:32:21 2016 Victor Sousa
** Last update Sat Jun 4 06:01:33 2016 Victor Sousa
*/
#include "my_string.h"
t_char *pushChar(t_char *string, char c)
{
t_char *new_char;
... | [
"victor.sousa@epitech.eu"
] | victor.sousa@epitech.eu |
eccc9b0843996af9daef3cf424828d520c638dd6 | 10f589914c5b82854a1e149a7693608edb649f4f | /src/misc.c | cf5a4146b16fd07d7749df4afc6d7408045b302a | [
"Unlicense"
] | permissive | jtsymon/spacescape | 617630b775cbe3602410798ae7d25d2b55742a27 | 3bc93b8b67d2a04f29b8dfaa17f60c343e6219e7 | refs/heads/master | 2021-03-12T23:14:32.782852 | 2014-03-03T10:36:51 | 2014-03-03T10:36:51 | 17,335,214 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 845 | c |
#include "misc.h"
void end(int status) {
#ifdef wait_for_fucking_retarded_netbeans_terminal
usleep(100000);
#endif
exit(status);
}
void vprint_err(const char* format, va_list args) {
fprintf(stderr, "\033[0;31m");
vfprintf(stderr, format, args);
fprintf(stderr, "\033[0m\n");
}
void print_err(con... | [
"jtsymon@gmail.com"
] | jtsymon@gmail.com |
bcc73d3b9eef3e020c4d83b2deb4fce7f7ab36cd | 5c41f23e0a284a01f91a07cf20092d54e4b89159 | /MBoot_Madison_TVOS/sboot/src/einstein/include/hwreg_einstein.h | bb7a93b6c967a9b11ae516dc974a6735b73d7cf1 | [] | no_license | schreibikus/Madsion | a3a46c7c38f920f24004dc2cee5837f341bff579 | 548861a3fc1c4c6b5bd05ce35024be7dca0cfc03 | refs/heads/master | 2021-01-25T13:19:07.923633 | 2015-04-02T03:34:09 | 2015-04-02T03:34:09 | 123,558,610 | 0 | 1 | null | null | null | null | WINDOWS-1250 | C | false | false | 67,605 | h | //<MStar Software>
//******************************************************************************
// MStar Software
// Copyright (c) 2010 - 2012 MStar Semiconductor, Inc. All rights reserved.
// All software, firmware and related documentation herein ("MStar Software") are
// intellectual property of MStar Semiconduc... | [
"bertwu@126.com"
] | bertwu@126.com |
da02d498f0d675d27d6614703ee0ce8ecb6eb4e3 | de67adc8a16a67b53527835ca328261063b5c49d | /ec/chip/npcx/watchdog.c | 84210beb5a84821bd3496db31a11570016968812 | [
"BSD-3-Clause"
] | permissive | woainimamababanainai/ec | b149d90c1bd38e29ff2d1cc6cef6a090bddaa29d | 6b858985829ba845c1a39af391efc5c7061c0d5e | refs/heads/master | 2023-07-17T17:31:15.803092 | 2021-09-01T07:27:18 | 2021-09-01T07:27:32 | 401,966,651 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,276 | c | /* Copyright 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Watchdog driver */
#include "clock.h"
#include "common.h"
#include "console.h"
#include "registers.h"
#include "hwtimer_chip.h"
#include "gpio.... | [
"2954861905@qq.com"
] | 2954861905@qq.com |
0caaa6d8f85e6ff5c5e0225231c87fc7aaa4ad24 | 2d253b99c2f1a6940e10c578b285a6365653db17 | /progp09/S1/dubbelhax.c | 30c78cfd34178c89cf6cd85b98155826647b3761 | [] | no_license | Hkau/kth | 3e5bf4ca8302bfdc477bb12e09a123023ea60529 | 68e10faad71ea4026e3fb9a4588d85fe545bee17 | refs/heads/master | 2021-10-27T09:53:47.274504 | 2021-10-15T07:40:57 | 2021-10-15T07:40:57 | 19,637,092 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 416 | c | #include <stdlib.h>
#include <stdio.h>
void
my_fav_func(char* some_name) {
if (some_name != NULL) {
printf("Hello %s! How are you?\n", some_name);
}
}
int
main(int argc, char *argv[]) {
if (argc != 2) {
fprintf(stderr, "Warning, no name give!\n\n_usage: %s <name>\n", argv[0]);
exit(EXIT_FAILURE);
... | [
"lemming@phobos.(none)"
] | lemming@phobos.(none) |
976bf353ce14e9cfb9188b05c18344260fb8bcfd | f83ef53177180ebfeb5a3e230aa29794f52ce1fc | /fftw/fftw-3.3.8/dft/simd/common/t3fv_32.c | 166649d038568d9342c1714f3a4e2939de12ac37 | [
"GPL-2.0-or-later",
"FSFAP",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | msrLi/portingSources | fe7528b3fd08eed4a1b41383c88ee5c09c2294ef | 57d561730ab27804a3172b33807f2bffbc9e52ae | refs/heads/master | 2021-07-08T01:22:29.604203 | 2019-07-10T13:07:06 | 2019-07-10T13:07:06 | 196,183,165 | 2 | 1 | Apache-2.0 | 2020-10-13T14:30:53 | 2019-07-10T10:16:46 | null | UTF-8 | C | false | false | 31,045 | c | /*
* Copyright (c) 2003, 2007-14 Matteo Frigo
* Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the ... | [
"lihuibin705@163.com"
] | lihuibin705@163.com |
8f8b9af36c24207d58642b745e484fdd6f1c085e | 06f72327ef69d3afab12be10d80d58548cd3b270 | /code/rct_helico_grt_rtw/rtGetInf.h | da6dd649cf17db1d2c95d067655066bcb7f5a9b7 | [] | no_license | unl-nimbus-lab/CE_Mutation | 69df4c5e6f4b0a4eea41b3e04805b1613a02b9b4 | 76d69ca6005469cfe831ad309ce1636cf3da83c4 | refs/heads/master | 2021-05-17T03:16:55.496590 | 2020-03-27T16:57:12 | 2020-03-27T16:57:12 | 250,591,613 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,001 | h | /*
* rtGetInf.h
*
* Academic License - for use in teaching, academic research, and meeting
* course requirements at degree granting institutions only. Not for
* government, commercial, or other organizational use.
*
* Code generation for model "rct_helico".
*
* Model version : 1.135
* Simulink C... | [
"jbradley@cse-jbradley-09.local"
] | jbradley@cse-jbradley-09.local |
c59d98d8d3bd7760417d4565a57ff43cac67d636 | 106c6c50a1c6771191c84d1225add8cfb657ffae | /Addresses.h | 2a2688ca716f33b3f33a427653e8e7c96535bd9f | [] | no_license | domints/GS500_Mainframe | 072551eb78ddbf24736feaefacee15a7f1992b3b | a388fe1d2a99c6e31f69af7e26e18ed99bfa59ed | refs/heads/master | 2020-03-23T01:51:15.976843 | 2018-10-12T22:46:24 | 2018-10-12T22:46:24 | 140,941,412 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 233 | h | #ifndef __MAINFRAME_ADDRESSES_H__
#define __MAINFRAME_ADDRESSES_H__
#define ADDR_MAINFRAME 0x00
#define ADDR_LCD 0x01
#define ADDR_IGNITION 0x02
#define ADDR_FUEL 0x03
#define ADDR_WHEELCTRL 0x04
#endif //__MAINFRAME_ADDRESSES_H__
| [
"domints@gmail.com"
] | domints@gmail.com |
e8d6a79db45be405e336ad52d73c3066422f5377 | 264cc34d1d5322c9c955f351e5ed710836f6a1a5 | /cmake_targets/basic_simulator/enb/CMakeFiles/X2AP_R14/X2AP_Key-eNodeB-Star.h | 8c6fe995900afb2f09c3bba7bbc7ed8653f794ca | [
"BSD-3-Clause",
"BSD-2-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla"
] | permissive | mr-ytseng/openairinterface5g | 8d40a768b2046da8c521f58d34c0466226f1c154 | 54d541c22cdfcb774774089291c93e4e79294a1d | refs/heads/master | 2021-10-27T20:56:33.843199 | 2019-04-19T15:37:55 | 2019-04-19T15:37:55 | 177,127,103 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,456 | h | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "X2AP-IEs"
* found in "/home/user/openairinterface5g/openair2/X2AP/MESSAGES/ASN1/R14/x2ap-14.6.0.asn1"
* `asn1c -pdu=all -fcompound-names -fno-include-deps -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/cmake_targ... | [
"yuchia.tseng@irt-systemx.fr"
] | yuchia.tseng@irt-systemx.fr |
56e4d1c15ecc72cb1d1310e4add00e4a6e5511b7 | 36f53a4beb2f67519416f5f4a9f6f625d31880ba | /src/inference/private/tensorflow_lite_c_api.h | 18632e9201e71ca182847d66ecfbcc7423e99e44 | [] | no_license | kingofthebongo2008/uc-posenet | c9b8d02672497afe97c83b84bbdef134fe8833ad | 12867d92232cbb83ab721329883f7f9f36af43b0 | refs/heads/master | 2020-07-16T04:56:06.730662 | 2019-09-23T20:07:25 | 2019-09-23T20:07:25 | 205,724,053 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 187 | h | #pragma once
#include "tfl_base.h"
#include "tfl_model.h"
#include "tfl_interpreter_options.h"
#include "tfl_tensor.h"
#include "tfl_interpreter.h"
#include "tfl_interpreter_helper.h"
| [
"stefan.dyulgerov@gmail.com"
] | stefan.dyulgerov@gmail.com |
b4d56f2940711a95cbcf63f219f4b7295fe28a60 | aced0b0b4b73ecb9837500a9b65eb039033e94d3 | /Win10_1903_19H1_18277/x86/System32/ntoskrnl.exe/Standalone/_MM_PAGE_ACCESS_INFO_FLAGS.h | 0c88a029f307f6e679df82a209aeebedd180b737 | [] | no_license | Qazwar/headers | a16193b7343f8497c4dde1f0eb6fee52a0ed91e1 | 049e8a564a1f82a8316f187f8a8bbcdb29be5e01 | refs/heads/master | 2020-04-05T15:36:20.462296 | 2018-11-08T18:53:40 | 2018-11-08T20:37:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 927 | h | typedef union _MM_PAGE_ACCESS_INFO_FLAGS
{
union
{
struct // _TAG_UNNAMED_161
{
struct /* bitfield */
{
/* 0x0000 */ unsigned long FilePointerIndex : 9; /* bit position: 0 */
/* 0x0000 */ unsigned long HardFault : 1; /* bit position: 9 */
/* 0x0000 */ unsigned long Image ... | [
"w.benny@outlook.com"
] | w.benny@outlook.com |
61ca959d7d2e90ed56568fd60798ca168bd61318 | 5342f11d6e76c780793985e21f040968170b3566 | /scripts/4_World/Classes/Recipes/Recipes/PaintAKFoldingBttstck.c | 1dc3bfacad6adc0462af41ac5f9f6c5dda5882a4 | [
"MIT"
] | permissive | Da0ne/DayZCommunityOfflineMode | 31b4ee298f754fb49788a8e39dcf51c672e542cc | 77ebd221a877270e704c75bcc529a7b97c918f2e | refs/heads/master | 2020-03-13T14:57:50.786995 | 2018-04-26T15:07:45 | 2018-04-26T15:07:45 | 131,168,416 | 1 | 0 | MIT | 2018-04-26T14:32:59 | 2018-04-26T14:32:58 | null | UTF-8 | C | false | false | 3,592 | c | class PaintAKFoldingBttstck extends RecipeBase
{
override void Init()
{
m_Name = "#STR_PaintAKFoldingBttstck0";
m_IsInstaRecipe = false;//should this recipe be performed instantly without animation
m_AnimationLength = 1.5;//animation length in relative time units
m_Specialty = 0.01;// value > 0 for roughness... | [
"arkensor@gmail.com"
] | arkensor@gmail.com |
3e7fe4f76b04c11a4386db87e77d09baf4f0bd9b | 979f884cc96e5fd33701a20d91011e48af188b66 | /generatedMutants/red_black_tree.mutant.1492.c | bdb8f093fc21361a23ee248ecfae94671ee9f19b | [
"BSD-Source-Code"
] | permissive | agroce/rb_tree_demo | e1dd0096e62313b8c751d40318723fbc1b46572f | 8be1cf21956b0b40f4aa57350830d96fef794c7d | refs/heads/master | 2023-05-04T05:41:40.489880 | 2023-04-14T17:03:41 | 2023-04-14T17:03:41 | 158,174,574 | 7 | 0 | NOASSERTION | 2018-11-19T06:46:01 | 2018-11-19T06:46:01 | null | UTF-8 | C | false | false | 21,858 | c | #include "red_black_tree.h"
#include <assert.h>
/***********************************************************************/
/* FUNCTION: RBTreeCreate */
/**/
/* INPUTS: All the inputs are names of functions. CompFunc takes two */
/* void pointers to keys and returns 1 if the first arguement is */
/* "greater than... | [
"agroce@gmail.com"
] | agroce@gmail.com |
e5c984f14a7b148fe63be3e007ac19768b46a303 | 8ef96553716f2df3cd927035a8eb4a0746c54320 | /controller/pan_synth/startup/startup_lpc54616.c | 131b8bb1d803ce2a32f9524863b20ad8753b355a | [
"MIT"
] | permissive | ThisIsNotRocketScience/Syntonovo_PAN | d25cd834cfc8e7cab42a492b47fea8b993756bca | 0dfb3ccc66df0c2699228dbdbc1e450c408dd91b | refs/heads/master | 2021-08-02T14:12:47.771414 | 2021-07-18T11:32:15 | 2021-07-18T11:32:15 | 129,516,620 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,598 | c | //*****************************************************************************
// LPC54616 startup code for use with MCUXpresso IDE
//
// Version : 070217
//*****************************************************************************
//
// Copyright(C) NXP Semiconductors, 2017
// All rights reserved.
//
// Redistribu... | [
"lauri.koponen@iki.fi"
] | lauri.koponen@iki.fi |
47306a2ec47e2c32271b676dbb5b75435aeb00bd | b05271a7505a3ff4acb7412e53cfc6e00caab9d9 | /shiva.h | 19b0f3fb6e965feb74f7a758addb38c78e9a87ae | [] | no_license | danantonioreyes/180chessDestroyer | ef6c0dd0099fe09454d883123817dc55e82fcead | ab465bad360803fbc7402d50a984de4076a5de96 | refs/heads/master | 2016-09-06T19:23:53.444945 | 2013-03-21T09:56:21 | 2013-03-21T09:56:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,663 | h | #ifndef SHIVA_H
#define SHIVA_H
// ^ to avoid multiple inclusion of the file
#define BOARD_WIDTH 8
#define BOARD_HEIGHT 8
#include<math.h>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<time.h>
#include "movegen.h"
#include "listmanipulator.h"
#include "moveevaluator.h"
#define MAX_DEPTH 5
#define IN... | [
"smitparaggua@gmail.com"
] | smitparaggua@gmail.com |
fdc61237456816fdfb8a062a68278107b8ff7920 | c1f2e7270829438a98e1911d9c9d64b2ae215b4d | /ft_flags_utils.c | 2f2f33217ec766dd035b3b9a41f4417eaca4ac5f | [] | no_license | vmusunga/printf | a6f329c1ef9337727f9260ebfc78189a4580a521 | 7ba9a9f3f8dcd8b24059b00b98ada364e68a6332 | refs/heads/master | 2023-05-10T17:57:11.278668 | 2021-04-26T15:45:42 | 2021-04-26T15:45:42 | 344,089,487 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,688 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_flags_utils.c :+: :+: :+: ... | [
"vmusunga@student.s19.be"
] | vmusunga@student.s19.be |
de47e0dea7e482a9b698c65c5f4082f1e17fec00 | 47c2ef3f5383f089199a3e20091398aaa60da271 | /dsound/src/dsshow3d/dsshow3d.h | f0f795433c5b1630485b1b6f2ccb253875c19af9 | [] | no_license | kargeor/directx-6-1-sdk-samples | 7db6baa0762db78a06332d6c324131a88ecc51a7 | fcd9eac7bb7d85a331dabd4521d67891692b2255 | refs/heads/master | 2023-03-16T13:09:03.981630 | 2019-01-16T05:26:02 | 2019-01-16T05:26:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,290 | h | /*==========================================================================
*
* Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
*
* File: DSShow3D.h
* Content: DirectSound Mixing Test with 3D sound main header file
*
***************************************************************... | [
"ncis20@gmail.com"
] | ncis20@gmail.com |
4b67ec885f5cd10b22474346b5fe4b1996a06c4b | 9123ae8e3dbcd021a833f10db9f6cf046672f657 | /keypad.h | 598a036d9cda1266b8afc5afffe65af6d91556a4 | [
"MIT"
] | permissive | Aus-Fitzy/openusbio-alarm-project | 633d2433afaa351ce083bc6a7065a35e9e2930b2 | 53eb0f68ebf702497f502a0ede9dc6f6bf48fc65 | refs/heads/master | 2021-01-13T00:55:55.399660 | 2015-11-19T10:37:38 | 2015-11-19T10:37:38 | 46,475,402 | 0 | 0 | null | 2015-12-01T01:03:38 | 2015-11-19T07:28:26 | C | UTF-8 | C | false | false | 153 | h | #ifndef KEYPAD_H_INCLUDED
#define KEYPAD_H_INCLUDED
#define KEYPAD_DATA 0x0F
void initKeypad(void);
void int1_init(void);
#endif // KEYPAD_H_INCLUDED
| [
"dean.fitzpatrick1@gmail.com"
] | dean.fitzpatrick1@gmail.com |
0b3abc4a3296a2e8f43b2f6679560633d597cecb | 4ff49053b33c870e2cd970e01df8208ff770abaa | /example_code/day1/1_28.c | dd97f3c569aa393ef7f46a8ab948ff95f64b926a | [] | no_license | chr0m3/2018-c-programming-lecture | 179d2c8ccacc70ecb59500b231daa7ae5009cca2 | 6f56f9c9664e00e51e21ffdf69d285bc2e5195b3 | refs/heads/master | 2022-03-31T00:02:14.456227 | 2019-12-29T05:09:14 | 2019-12-29T05:09:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 121 | c | #include <stdio.h>
int main(void) {
int a;
float b;
scanf("%d", &a);
scanf("%f", &b);
return 0;
}
| [
"chr0m3.kr@gmail.com"
] | chr0m3.kr@gmail.com |
3788088a88a6eb6e53f113281d8d4d0fd79425d4 | 6e9f4017ea4bb6f6fd01645a091875f2e5910bf8 | /desktop/compilers/ansic/canning/t073-assign-declared-not-defined-function.c | ff7fe47fbddcede9168a413613eb8784a4db4662 | [] | no_license | derrell/LearnCS | acae7070fd294bc11c61a9ffe8b54ece77810469 | 631cad87481dafb95aeaa8dc215dfa85ab1a32ff | refs/heads/master | 2023-03-15T17:32:14.503248 | 2021-07-21T12:51:54 | 2021-07-21T12:51:54 | 22,389,974 | 3 | 2 | null | 2023-03-06T06:28:18 | 2014-07-29T18:04:26 | JavaScript | UTF-8 | C | false | false | 92 | c | int asterisk(void);
int value;
int main(int argc, char * argv[])
{
value = asterisk;
}
| [
"derrell.lipman@unwireduniverse.com"
] | derrell.lipman@unwireduniverse.com |
5c7e0f03c6f1a27e1209d2c53158438008c67b7f | 96c1a8e6192dfdb71b44a98f97de854e09115ade | /libsamp/libxrpc.OLD/z/xmlrpc-c-1.25.23/src/xmlrpc_libxml2.c | 574af867b05272849a35328c8320b453bd1c00d3 | [
"MIT"
] | permissive | olebole/voclient | 76cd8f5a6a9a44e23c8f9ec5461c3e173b914a65 | abeee7783f4e84404a8c3a9646bb57f48988b24a | refs/heads/master | 2020-04-22T09:40:28.449558 | 2019-01-22T21:40:18 | 2019-01-22T21:40:18 | 170,281,077 | 0 | 0 | MIT | 2019-02-12T08:33:36 | 2019-02-12T08:30:31 | C | UTF-8 | C | false | false | 13,241 | c | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Copyright (C) 2001 by First Peer, Inc. All rights reserved.
** Copyright (C) 2002 Ximian, Inc.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
*... | [
"fitz@noao.edu"
] | fitz@noao.edu |
0c299caf97ac23132a4c99cae0be868fbf6c0dbb | 0c6488228679104d13475479c15c599756b7ce87 | /test_ft_tolower.c | d6340870eef664a1697f1d36431f8c85f6185153 | [] | no_license | WesleyTo/42_libft_tests | d2533b56248ef0b2d208413f262e4b205aab9ec8 | 1610c7a23888200bdbedbb3cd29f19a11b2f2136 | refs/heads/master | 2021-01-24T04:01:25.096358 | 2018-03-17T23:04:14 | 2018-03-17T23:04:14 | 122,915,056 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,692 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower_test.c :+: :+: :+: ... | [
"wes_t14@hotmail.com"
] | wes_t14@hotmail.com |
b10bc4cf3666a08e6494f5d167399ecef150d57d | d0938ea1ca5e4d1d482880fb4bf40bcd18a3801d | /tests/converter/return_site/calc.c | 93c1394f18d3f5633807aea7ddf4d7291bf5797d | [] | no_license | cjholoday/proxycfi | dacefd844ff48b1969161bb69e9211d88d2d85f3 | c56877f7851ad17ce230e30e97805c23b3061b8f | refs/heads/master | 2022-09-17T12:32:23.191912 | 2020-06-04T19:30:23 | 2020-06-04T19:30:23 | 269,448,456 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 195 | c |
int add(int x, int y) {
return x + y;
}
int subtract(int x, int y) {
return x - y;
}
int multiply(int x, int y) {
return x * y;
}
int divide(int x, int y) {
return x / y;
}
| [
"choloday@umich.edu"
] | choloday@umich.edu |
8176a820f123446db4bafc4972e0a6b0cbf09091 | ffa3e1d36ef240eabcd3eb059a87508c55de50e1 | /linguagem_c/material extra/main_ExemploGets.c | 233f7e1c219858780b5cce2ca8a9b372fe18116b | [] | no_license | requeijaum/ifba_cpd | 4cdadcf7532efbc331a21a5a9834eea5c9d108a8 | 072c9c1c2bd509913d2cead9320a359aa23f7d2b | refs/heads/master | 2021-04-28T18:31:00.734903 | 2018-02-17T17:23:42 | 2018-02-17T17:23:42 | 121,874,143 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 344 | c | /* run this program using the console pauser or add your own getch, system("pause") or input loop */
//Exemplo de utilização da função gets():
#include <stdio.h>
#include <stdlib.h>
int main()
{
char string[100];
printf ("Digite o seu nome: ");
gets (string);
printf ("\n\n Ola %s\n",string);
system("pause... | [
"rafaelfrequiao@gmail.com"
] | rafaelfrequiao@gmail.com |
7055445a63ff9743a709f6e9a3946f33615470b4 | 01d51b824eb612d3aa71d5c5be7349a155430cd5 | /level2/link_unlink_symlink.c | 06470234ce93f61a401223c08b90eabd99ab5ab3 | [] | no_license | 401040579/cpts360-Design-and-Implementation-of-the-MTX-Operating-System | 2afe9398ec20adec5d7363e7b85d004694480b5d | 546e59108b143a3ab323d27b25dbede66b15a3c8 | refs/heads/master | 2020-03-20T15:39:45.912522 | 2018-06-15T18:08:42 | 2018-06-15T18:08:42 | 137,518,368 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,062 | c | int mylink()
{
char oldFileNamecp[64], newFileNamecp[64];
strcpy(oldFileNamecp, pathname);
strcpy(newFileNamecp, newFileName);
printf("oldFileNamecp=%s newFileNamecp=%s\n",
oldFileNamecp, newFileNamecp);
int oldIno = getino(&dev, oldFileNamecp);
if (oldIno == 0)
{
printf("file you want to link is n... | [
"noreply@github.com"
] | 401040579.noreply@github.com |
c76f281e6c371dc7b246a70ed3883afe7877371b | b05fc17b9de9e3a6ad7a11fc89fc5b04b1e7b259 | /1/1b.c | 4902e82de0bcd6136e1ab5370a65fb4eb3af76a3 | [] | no_license | nalimhahs/NetworkLab-39 | 4d656f1dd580a252f84c3722a3435a5b0afaec33 | ecdf75957051028036b28dc80ec6392fbefa230b | refs/heads/master | 2023-08-13T00:25:24.699257 | 2021-09-18T10:37:39 | 2021-09-18T10:37:39 | 362,176,158 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 138 | c | #include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
fork();
fork();
printf("Hello!\n");
return 0;
} | [
"milanshah1@gmail.com"
] | milanshah1@gmail.com |
0f436b5688c917967b9dc81e738c4756c8350736 | d18c8c3b0804c7c36c4b977fda391f1d6bf55f62 | /BT/Barrier/in/up.c | 74c65bb568ce90595154f900daa01e41f20b6c75 | [] | no_license | jessenagel/optionvaluation | a0c5a44bb308f985153ca0774378137137acd832 | e161d046dc4d7389502c7aadf11754b4046e85cc | refs/heads/master | 2020-08-05T00:41:55.918419 | 2019-10-17T09:44:57 | 2019-10-17T09:44:57 | 212,336,268 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,688 | c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
int main(int argc, char **argv) { //Down and out
if(argc != 8){
printf("Usage: ./call <K> <S_0> <T> <r> <q> <sigma> <H>");
exit(1);
}
srand(time(0));//Set seed for random draws
clock_t start = clock();
doubl... | [
"noreply@github.com"
] | jessenagel.noreply@github.com |
e3ced6329eb2c3876da319ad35c08ac4c689a7d4 | 9a65ce6f0f56a769189d33cd0b48a467128336ac | /86002.c | 9a4f5b33a88f969cfa69ae109322dc7b62d4a6d3 | [] | no_license | yelltian/C-Program-in-2016 | 3ba96bf86a8a2e547ef7d16822336ae95d2bce0b | 3ecfb7fe6a6fed5680fc6ef90ac6373e09584473 | refs/heads/master | 2020-01-23T21:47:22.164390 | 2017-06-15T12:43:38 | 2017-06-15T12:43:38 | 74,677,105 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 441 | c | #include <stdio.h>
double Mean(double *array,int n);
int main(void)
{
int i, n;
double array[100],average;
scanf("%d",&n);
for(i = 0; i < n; i++)
scanf("%lf",&array[i]);
average = Mean(array,n);
printf("average = %.1f\n", average);
return 0;
}
double Mea... | [
"noreply@github.com"
] | yelltian.noreply@github.com |
4ea9fc71a2a9fcd9ea00b10a301cdcb9cf80a2db | 8063edc729154c5f15ac77f95660e64986d7096a | /include/requirements.h | 4f3dad29c11649803373d61de9d7d3f953295d0c | [] | no_license | kill-switch/Workflow-Engine | 84bb2e91f83bd670dd0dc7a89f44dcbb8b38e42d | fc8c7db73a0965a56219f552f151f113777a9978 | refs/heads/master | 2021-01-01T15:30:53.790969 | 2011-12-03T11:51:08 | 2011-12-03T11:51:08 | 2,904,538 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 548 | h | #ifndef REQUIREMENT_H
#define REQUIREMENT_H
typedef struct { //stores information of a room
char whiteboard;//0 if white board not required else 1
char projector;//0 without audio 1 with audio
char lcd;//0 if lcd display not required else 1
char soundsys;//0 without mics for audience 1 with mics for audience
char ... | [
"shivamhanda@gmail.com"
] | shivamhanda@gmail.com |
801259a8815b4cfff706101ac11a715277852a1c | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/2bcd0968-0f8c-43de-9cc3-ba9a12c829e9.c | a8163475168a8c5c3ec7bc6800a54ee593573c5c | [] | 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 | 551 | c | #include <string.h>
#include <stdio.h>
int main() {
float i=4;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l%j;
l = j%j;
l = l%j;
l = k-k*i;
//variables
/* START VULNERABILITY */
int a;
long b[57];
long c[76];
a = 0;
while (b[a] != ... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
1a65200826d7c5daf4958eefefc75609c8ca700c | 16291ea44517cfdef7bda4755af06acaafb5cf39 | /3.3.2/Universal/Interfaces/CIncludes/QuickTimeVR.h | 7d2bdaed1c9b32c99a7a5786dbcfe66691113b09 | [] | no_license | elliotnunn/UniversalInterfaces | 93c12c52f54c95f227f1e726132faa70393ea403 | 328d38f2b72b2d4ceda30170eea32ca6b9de218a | refs/heads/master | 2020-06-16T07:51:18.059086 | 2019-07-06T07:23:20 | 2019-07-06T07:23:20 | 195,511,216 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 50,886 | h | /*
File: QuickTimeVR.h
Contains: QuickTime VR interfaces
Version: Technology: QuickTime VR 2.2
Release: Universal Interfaces 3.3.2
Copyright: © 1997-2000 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page... | [
"elliotnunn@me.com"
] | elliotnunn@me.com |
f34d8bab0dd8508f742120a0dcc272e7127483d4 | bb6b2205e93e208aed4aca432def48714783aea8 | /testsuite/SPAPT/stencil3d/stencil3d.src4.c | c2add1c24b0ee784ea19ad74db80131b672ef7e6 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive"
] | permissive | vishalbelsare/Orio | f02e1489d7501e2f67344f0d0e10479429223c13 | 8baaad676bc3685e1a8a9700eedc730cbc2e303c | refs/heads/master | 2021-06-10T18:08:10.031109 | 2021-05-31T02:25:19 | 2021-05-31T02:25:19 | 146,420,973 | 0 | 0 | NOASSERTION | 2021-05-31T08:00:07 | 2018-08-28T09:06:37 | VHDL | UTF-8 | C | false | false | 2,310 | c | /*@ begin PerfTuning (
def build
{
arg build_command = 'gcc -O3 -fopenmp ';
arg libs = '-lm -lrt';
}
def performance_counter
{
arg repetitions = 35;
}
def performance_params
{
# Cache tiling
param T1_I[] = [1,16,32,64,128,256,512];
param T1_J[] = [1,16,32,64,128,256,512];
p... | [
"pbalapra@mcs.anl.gov"
] | pbalapra@mcs.anl.gov |
4ed4e7f37766cf6705b3b80d19bece526d4b2ac8 | 0f4b65bdd99e642402d489fdd662a7dc1d1441f5 | /testsuite/EXP_1/test284.c | 0bab8a592da11361d07bef5eb4c7bb8ee2c1afed | [
"MIT"
] | permissive | matthiaskrgr/CF3 | 157e4967f12a6e6a0eee0fa9421f7855d24047c5 | 981a49c2b1f0fb80e1d1778beb3f3ce8578338c3 | refs/heads/master | 2021-01-01T06:02:05.773732 | 2017-07-15T20:15:36 | 2017-07-15T20:15:36 | 97,335,407 | 0 | 0 | null | 2017-07-15T18:41:20 | 2017-07-15T18:41:20 | null | UTF-8 | C | false | false | 52,299 | c |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
int64_t x6 = -1LL;
uint32_t x15 = 5U;
static int16_t x16 = -1;
volatile int32_t t2 = -15945501;
volatile int32... | [
"ishiura-compiler@ml.kwansei.ac.jp"
] | ishiura-compiler@ml.kwansei.ac.jp |
5c81a17ea68737049cb5a3f272e6d8b1c9ddea4c | 9f5a3fd0a791518f2808deb58e711e3634fe4a34 | /average.h | 0f8b1603b1c841cdd750b2d0b3521288ca11d3b6 | [] | no_license | st14d12/kakeibo_st14d12 | ba409472cd8f49d7857e9c5b2558cd45615d4823 | 26b47381351b18556691b5d4fd9a1509e8da431b | refs/heads/master | 2021-05-04T03:37:41.408477 | 2016-10-20T05:59:10 | 2016-10-20T05:59:10 | 70,773,890 | 1 | 0 | null | 2016-10-20T05:27:51 | 2016-10-13T06:00:08 | C | UTF-8 | C | false | false | 82 | h | #ifndef _INCLUDE_KAIJOU_H_
#define _INCLUDE_KAIJOU_H_
int average(int[]);
#endif
| [
"takashi.soccer.a@gmail.com"
] | takashi.soccer.a@gmail.com |
8ff5cb1a576843a3954eba704c4938348e9be971 | ffb568806e34199501c4ca6b61ac86ee9cc8de2e | /tool_project/TouchIDEditor/gfl_Framework/include/gflib_core.h | 3b9316ef9cdb410663cf45763e3ae589d81429c7 | [] | no_license | Fumikage8/gen7-source | 433fb475695b2d5ffada25a45999f98419b75b6b | f2f572b8355d043beb468004f5e293b490747953 | refs/heads/main | 2023-01-06T00:00:14.171807 | 2020-10-20T18:49:53 | 2020-10-20T18:49:53 | 305,500,113 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 680 | h | #ifndef __GFLIB_CORE_H__
#define __GFLIB_CORE_H__
//===========================================================================
/**
* @file gflib_core.h
* @brief GAMEFREAK コアライブラリ専用ヘッダー
* @author GAMEFREAK inc.
* @date 2010.10.22
*/
//=============================================================... | [
"forestgamer141@gmail.com"
] | forestgamer141@gmail.com |
b095578edbb209e2a1447df5803ad4b8ff00ba5c | 1f2da8c54b31706c4318d8adf449e32ab739f490 | /ImageMagick-6.8.9-7/magick/magick-baseconfig.h | bde477f30cac65a5e194a83e20da9e71ed73cc73 | [
"ImageMagick",
"Xfig",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"MIT",
"Apache-2.0"
] | permissive | richmondwatkins/Project-Directory | b4d231c74b8d2108c35f06c27d3f9836deac519e | cd80e76287a9b203dcaf86b5613c46ff1f47e906 | refs/heads/master | 2021-01-01T19:07:07.686928 | 2014-12-12T04:04:59 | 2014-12-12T04:04:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 44,865 | h | #ifndef _MAGICK_MAGICK_BASECONFIG_H
#define _MAGICK_MAGICK_BASECONFIG_H 1
/* magick/magick-baseconfig.h. Generated automatically at end of configure. */
/* config/config.h. Generated from config.h.in by configure. */
/* config/config.h.in. Generated from configure.ac by autoheader. */
/* Define if building unive... | [
"richmondwatkins@mac.com"
] | richmondwatkins@mac.com |
74c248e643b1c1eb21a29aa52ba7956b65fcaaa6 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/lab/engine/code/tools/lcc/src/extr_string.c_stringd.c | 7edd50fd56cb41c3be8906f076c851588d0555db | [] | 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 | 799 | 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 |
3dc467f54c93b53c8cf18d5737e969836bce7fec | 27bcd5c9ded70102540c0ccd03f3e2b281dbf58c | /mudlib/w/oldcreators/bwamba/camino_playa/rooms/CP00.c | e9e28e57f05e6b2393884ada2bad1d73d05073af | [] | no_license | unleashed/ninetears | 57fdc71fd651b3ff95e5e7c14b0566729584e006 | 4edd22c75e3fa99be4b5820300491c6b62e06085 | refs/heads/master | 2020-07-14T04:25:56.302027 | 2019-08-29T18:46:57 | 2019-08-29T18:46:57 | 205,225,438 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 683 | c | inherit "/std/outside.c";
void setup()
{
set_short("%^YELLOW%^Camino a la playa%^RESET%^");
set_long("%^YELLOW%^Camino a la playa%^RESET%^\n\n Estas en un"
" camino que se dirige a una playa, el camino esta bastante "
"deteriorado por el paso continuo de viajeros,a los lados del"
"camino puedes observar va... | [
"amr@redhat.com"
] | amr@redhat.com |
75df93562aa42584c5ecc560b0a31807b4808c22 | 4be0342054b2dfc68b4240ba0328df285aeb9860 | /reverse_root.c | aea722dbb1a7ec36335bd679a9d2126f4b200a28 | [] | no_license | Anupam02/Timus | 36e649750ac878c5b374c32bd2268bac4c7d32bb | 1a31e6db58bb9c86d13939cf1b6f864722469f9b | refs/heads/master | 2020-04-08T11:33:09.987534 | 2018-11-27T09:41:42 | 2018-11-27T09:41:42 | 159,309,988 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 381 | c | #include <stdio.h>
#include <math.h>
double buf[128 * 1024];
int main( int argc, char ** argv) {
int i = 0;
unsigned long long n; // 64 bit unsigned integer
while ( scanf("%llu", &n) != EOF ) {
buf[ i ++ ] = ( double ) sqrt( n * 1.0 ); // store in buffer
}
for (; --i >= 0; ) {
prin... | [
"patel.anupam02@gmail.com"
] | patel.anupam02@gmail.com |
ab6fab9e8f0f0a7733e4be35c4492d77722cd706 | 91c0aea3cc263fe74112c77376ce80dc6c8c2b85 | /udpclient/function/openssl/rsa.h | f344eb201f826c23b488494d85e889fb3468999d | [
"Apache-2.0"
] | permissive | oracleloyall/CommonLib | b530eb172e7c857c44fd65744781819d3c9bbc7d | f2a092ab1b87f45cfd4470b9a87f5fd658e2d7da | refs/heads/master | 2020-03-22T14:54:49.431292 | 2019-06-24T06:10:23 | 2019-06-24T06:10:23 | 140,214,439 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 29,839 | h | /* crypto/rsa/rsa.h */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-comm... | [
"zhaoxi@enlink.cn"
] | zhaoxi@enlink.cn |
7acf3c227b5dc2296e02808181dd95e78314be41 | 544601b7c594424e406dbe059363b3beae2f220f | /nucleus/include/timer.h | af0da2c6b9dd9065e4d62c17e37a24de0b3f5b9d | [] | no_license | moneytech/hermes | 49cd3d5f6cecc3001cac879ec83730565bac7652 | de1620a5c51e05b04eda5515c868f497c0d71a68 | refs/heads/master | 2021-06-18T06:26:13.422428 | 2017-03-04T05:13:16 | 2017-03-04T05:13:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 720 | h |
#ifndef __TIMER__
#define __TIMER__
#define MAX_TIMERS ( MAX_PROCS * 2 )
#define HZ 18
#define TIMER0 0x40
#define TIMER_MODE 0x43
#define IBM_FREQ 1193182
#define SQUARE_WAVE 0x36
#define WAKEUP_BY_REPLY 0
#define WAKEUP_BY_EVENT 1
#define WAKEUP_BY_CALL 2
typedef void (*TIMER_FUNC) (void);
... | [
"arno@puder.org"
] | arno@puder.org |
3e05af0b21885b1dbfb9e4a33d000aef15951e9c | 8289b19fc7c5a352eeff7d4e7c627b0b2da9a867 | /ft_push_swap/include/push_swap.h | b040971464bbc7f4c83634213711efc6d38cca60 | [] | no_license | tperraut/push_swap | c74bbb6fbb1bd3e94f74d573972437ec00185977 | 37100f87824ae430ffc33d8b1845d6f89014eff1 | refs/heads/master | 2021-08-31T18:03:42.299731 | 2017-12-22T09:08:24 | 2017-12-22T09:08:24 | 111,707,848 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 56 | h | #ifndef __PUSH_SWAP_H__
# define __PUSH_SWAP_H__
#endif
| [
"thomas.p@geronimostudios.com"
] | thomas.p@geronimostudios.com |
4c4f162e1760e1b416f357ca96000ea9e428b60c | 29aae96691a258ab0f5155820671343c4bf2872d | /STM32CubeF4/Projects/STM32F4-Discovery/Examples/SPI/SPI_FullDuplex_AdvComPolling/Slave/Inc/stm32f4xx_hal_conf.h | 138f7a1067b07fed1e717ed37747e54a4a77203d | [
"BSD-2-Clause"
] | permissive | b264/crystal_stm32 | 60a225bda5b2c9baedee7290adb3f0fc4c53c3ca | 3720064a141a04d4c7a528dbf5603141e0198f47 | refs/heads/master | 2021-04-27T18:31:51.235187 | 2017-11-03T00:12:39 | 2017-11-03T00:12:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,385 | h | /**
******************************************************************************
* @file SPI/SPI_FullDuplex_AdvComPolling/Slave/Inc/stm32f4xx_hal_conf.h
* @author MCD Application Team
* @brief HAL configuration file
******************************************************************************
* @at... | [
"aurimas@niekis.lt"
] | aurimas@niekis.lt |
42672d58e580a667c1b61a46a3e37baafa8e4517 | 15df06a9f8b5f2ed20f3c39d8cc8249ba3c21294 | /final/src/reservation.c | e357d888c62b11efd9c4fd91f122ec0569f5948f | [] | no_license | Karim216/sky_travel | c0715f32ec417c9c0f7842bffb96a2d5a5aa383c | 36404c45f60ab760f72409e8fdd721c36fbd3b31 | refs/heads/master | 2020-09-01T04:40:08.645065 | 2020-01-13T09:39:01 | 2020-01-13T09:39:01 | 218,882,815 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,698 | c | #ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
#include "reservation.h"
void ReservationAgence(reserve a)
{
FILE *f;
f=fopen("reservationVol.txt","a+");
//g=fopen("reservations.txt","a+");
if (f!= NULL){
fprintf(f,"%s %s %s %s %... | [
"njigbetnkom@gmail.com"
] | njigbetnkom@gmail.com |
6e381a21097b099705ff637ab28aded3ccc96e18 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/d0ca1740-f035-48a8-9060-020b48d73f53.c | 3e5f0ce2bfdd6865568c3b9ecbbab2856ca911df | [] | 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 | 206 | c | #include <stdio.h>
int main() {
int i=4;
int j=122;
int k;
int l;
k = 53;
l = 64;
k = i%j;
l = i-j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
cfd28ab114b21b00d7de8407e71d914c5d2e0cd0 | fe88d12c78fd0179d4464dd13dc0518e9ddd41ac | /ft_strmap.c | b8d76e1ee364b0ab9ade42416136f8ff0dd09f05 | [] | no_license | yporoka/libft | 7fdbd06c1ba663a02499083360729421c0c5a1c7 | 23a636e65d46d8b6df0cd3d6b694adb71b22bf1b | refs/heads/master | 2020-04-04T13:51:06.818339 | 2018-11-03T11:42:55 | 2018-11-03T11:42:55 | 155,977,639 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,241 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmap.c :+: :+: :+: ... | [
"yporoka@e1r5p1.unit.ua"
] | yporoka@e1r5p1.unit.ua |
2d5efcee4a46281070e9ba0a3ddda9dbf5a03495 | d6354667ad53ee3865fbbd61740a15b384f076e1 | /CSE 406 Computer Security/DNS Cache Poisoning/dnspoison.c | 75bb8b5948f76bd20a99e291d891e96e630f1f49 | [] | no_license | iamsaquib2508/BUET_CSE_codes | 6e2566702e49b2479150befc8fcf1283b19f3230 | a253f037e83763221a04d36ad52f56375ab17611 | refs/heads/master | 2022-11-09T06:12:40.538888 | 2020-06-18T07:03:22 | 2020-06-18T07:03:22 | 253,635,239 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 22,555 | c |
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>
#include <unistd.h>
#include <time.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/ip.h>
#include <netinet/udp.h>
/* MACRO declarations */
#define DNSSERV_BIND_PORT 53 // listen port on DNS se... | [
"1505018.mmi@ugrad.cse.buet.ac.bd"
] | 1505018.mmi@ugrad.cse.buet.ac.bd |
d9e6fce08f65f54c14fddf256015f31737f8135b | 808def4676ec03b193636edba841054ece8021db | /AlgorithmCompetitionClassicalIntroductionTheSecondEdition/TheFirstPartOfTheLanguage/TheFirstChapterIntroductionToProgramming/TheSecondSectionVariablesAndTheirInput/pi.c | d6cc0729cfb5d0100331952e0172ac0d535d966a | [] | no_license | yigezhe/programming | 75257be59a3380572c54d0624b7f72b56904caa5 | 9e7a2026e967e92031347ed9178440cce2701033 | refs/heads/master | 2020-12-28T21:06:17.548241 | 2015-01-09T21:33:58 | 2015-01-09T21:33:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 299 | c | #include<stdio.h>
#include<math.h>
int main(){
//这里展示的是圆周率的三种获得方法!
double pi1 = acos(-1.0);
double pi2 = 4.0 * atan(1.0);
double pi3=M_PI;
printf("pi 1 = %lf\n", pi1);
printf("pi 2 = %lf\n", pi2);
printf("pi 3 = %lf\n", pi3);
return 0;
}
| [
"1830973318@qq.com"
] | 1830973318@qq.com |
4bad15e2f1f26e95c8e7f9eb48cad59324856b74 | b4741eca3d5e68d2907a1cc2c01d67e2d1891660 | /nib/lcd_sniffer/src/include/lcd_state.h | af4d681fb1a4aaf3863bf56ad4a688bc426eb038 | [] | no_license | lab11/shed-extra | 151099471a3bda29b25ce860412c013ca0edf2d7 | cdbe94725557ce50dcb24f66337f63d3d9fdd2cb | refs/heads/master | 2021-05-24T00:28:28.295875 | 2020-06-16T02:39:23 | 2020-06-16T02:39:23 | 12,819,310 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,631 | h | #ifndef __LCD_STATE_H__
#define __LCD_STATE_H__
#include <msp430.h>
#include <inttypes.h>
#include "utility.h"
#define LCD_REQUEST_STATUS 1
#define LCD_REQUEST_DISPLAY 2
typedef enum tstat_st {
TSTAT_ON_OFF,
TSTAT_COOLING,
TSTAT_ALARMS,
TSTAT_TEMPERATURE,
TSTAT_HUMIDITY,
TSTAT_TEMPERATURE_SETPOINT,
} tstat_st... | [
"bradjc@umich.edu"
] | bradjc@umich.edu |
bc3d966dbd2f2597bf008dcd25c8d5ce78390e59 | 0b5117d413ec52cf4260e6ecbbdac3de27887a4f | /debug_70/排序的实现/8.c | 10b06dd444c05962fdad25b5128af380c8a5d4e2 | [] | no_license | gatstor/third_semester_project | 46a8b9ac6c6d2c52d6ba9ae88d33e5aec6ce2123 | c817f01acd658cedaf43a572b4feb589800236ca | refs/heads/master | 2022-01-30T04:46:19.152517 | 2019-07-29T12:43:54 | 2019-07-29T12:43:54 | 198,031,630 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 667 | c | #include <stdio.h>
int main() {
int n = 10;
int m;
int numbers[10];
int i;
int max;
int inter;
// 读入给定的数字
for (i = 0; i < n; i++) {
scanf("%d", &numbers[i]);
}
for(i = 0; i <= 9; i++){
max = i;
for(m = i; m < 9; m++){
if(numbers[max] ... | [
"1351998400@qq.com"
] | 1351998400@qq.com |
11b82c7d13b19946acbffd38391f75e4644d21e8 | 9fc8de256bcda2f275b29376877d7aff5b5d972f | /lib/bsp/stm32f1_pwm.h | b0eed116fbc1b28f4c3f8395a3752734e9e2df05 | [] | no_license | Zerak630/MysteryBox | 01219ee2700dc3642b826d6cd6e390f6c8008896 | cb002b608d9ad7708ab51c9643c75512f4f95725 | refs/heads/main | 2023-02-24T02:19:50.160961 | 2021-01-09T21:11:56 | 2021-01-09T21:11:56 | 328,247,069 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 776 | h | /*
* stm32f1_pwm.h
*
* Created on: 23 mai 2016
* Author: Nirgal
*/
#ifndef BSP_STM32F1_PWM_H_
#define BSP_STM32F1_PWM_H_
#include "config.h"
#if USE_PWM
#include "stm32f1_timer.h"
void PWM_test(void);
void PWM_run(timer_id_e timer_id, uint32_t TIM_CHANNEL_x, bool_e negative_channel, uint32_t period_us... | [
"zerak.630@outlook.fr"
] | zerak.630@outlook.fr |
e1d6164cb726ebb5155d1a663820002a43b94aa9 | d9642e6d41f14e89aaad2fe2de538d86e52cf464 | /themes/base16-harmonic-light.h | 48bdd7069357fffd3deba49974cf9e80dc484e58 | [
"MIT"
] | permissive | jonathannerat/base16-suckde | 4a3b53d73795670703cc7780118e9eae2ddfbde3 | 0354bbd7b29a75dafe29d6dc8a46887ea3264f80 | refs/heads/master | 2022-11-06T01:13:58.773274 | 2020-06-20T17:48:24 | 2020-06-20T17:48:24 | 273,747,483 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 698 | h | /*
* Base16: https://github.com/chriskempson/base16
*/
#define THEME_BACKGROUND "#f7f9fb"
#define THEME_FOREGROUND "#405c79"
/*
* Colors
*/
#define THEME_BLACK "#f7f9fb"
#define THEME_RED "#bf8b56"
#define THEME_GREEN "#56bf8b"
#define THEME_YELLOW "#8bbf56"
#define THEME_BLUE "#8b56bf"
#define THEME_MAGENTA "#bf... | [
"jonathan.nerat@gmail.com"
] | jonathan.nerat@gmail.com |
0737fc1aeb401cfda1a9030b18157955a10e821b | ac72775695673c33c6c24625d498e48cf59233ad | /source/options.c | f2da0663ebc29e8169f4781d556b60f677134eb4 | [
"MIT"
] | permissive | cstath/field-monte-carlo | 3e90160d39e89b206ff28b2c961f1d803f3bfa60 | 203590282f0b8092ec86b41f9b5613826655f8f8 | refs/heads/master | 2020-07-30T21:47:58.735811 | 2016-08-07T20:19:02 | 2016-08-07T20:19:02 | 73,618,922 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,820 | c | /************************ options.c ************************/
#include "options.h"
char prog[1024];
/*Get the options function: See "man 3 getopt" for usage*/
/*Option letters are defined with this string*/
#define OPTARGS "hL:M:l:m:s:S:n:d:"
options get_the_options(int argc,char **argv){
int c,errflg = 0;
opti... | [
"christos.stathopoulos@gmail.com"
] | christos.stathopoulos@gmail.com |
43dce05e4d1a31dcba77f2627b7f8252dbd53bf6 | 556b467b0e31835de656c71a8f4e0bfd4acb7442 | /daemon/skill/junying/qiuyue-fork.c | 8b6870463b38e5457491ab24bbf7bed0c6407a29 | [] | no_license | afeizh/txmud | a4a48cb663eccfdf5aa0b951d34e93437a17c9fa | 717c8ef173bff8abe27e00fb8dc150cbf02b3c3a | refs/heads/main | 2023-08-07T20:33:48.154233 | 2021-09-16T15:34:37 | 2021-09-16T15:34:37 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 4,030 | c | // qiuyue-fork.c
#include <ansi.h>
inherit SKILL;
mapping *action = ({
([ "name": "寒鸦望月",
"action": "$N使一招「寒鸦望月」,手中$w由下往上,疾刺向$n的$l",
"dodge": 20,
"damage": 100,
"damage_type": "刺伤"
... | [
"i@Mud.ren"
] | i@Mud.ren |
ff1bb64c9ea008d54a850d421477bf4dcf61709b | 08e0f7c394faf1da4d26f2eb5571cbe52a8dafe1 | /firmware/FW_for_STM32F072/src/Projects/STM32F072RB-Nucleo/Appli/usbpd/STM32F072_MB1303_DRP_SRCING_DEVICE/Src/usbpd_dpm_user.c | ed6b195312247a449554f3bc2cd9432f1f2fb06a | [
"MIT",
"BSD-2-Clause"
] | permissive | usb-c/STUSB1602 | 55aaa8b721f134c17366d85daf5a6cf45ac52463 | 19c8c3445983a8fdc8ee880c22ebcec5977344a3 | refs/heads/master | 2022-05-20T20:49:11.760267 | 2022-04-05T23:42:13 | 2022-04-05T23:42:13 | 156,200,212 | 17 | 6 | null | null | null | null | WINDOWS-1250 | C | false | false | 128,220 | c | /* USER CODE BEGIN Header */
/**
******************************************************************************
* @file usbpd_dpm_user.c
* @author MCD Application Team
* @brief USBPD DPM user code
******************************************************************************
*
* Copyright (c) 2018 STMicroelectron... | [
"usb-c@users.noreply.github.com"
] | usb-c@users.noreply.github.com |
6c9e53e60382779e2c9c6297362bc12aabca1b7d | ff768ae28ed5591355cf58f0448f0d3a2049e49e | /exercicio06.c | b15fdd09a13ed910cd41cc3597a7b6467f61c813 | [] | no_license | kemilybeatriz/Lista-05 | dde403836958cc1796d98b175ef949b6c0a23bf3 | b79233302c7f3ac3883b2bcfb54b51f38028e617 | refs/heads/master | 2021-01-20T12:22:20.813954 | 2011-07-02T17:54:42 | 2011-07-02T17:54:42 | 1,988,482 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 294 | c | /*
6. Faça uma função que recebe 2 vetores A e B de tamanho 6 de inteiros, por parâmetro (A deve
ter sido lido na função main). Ao final da função, o vetor B deve conter o fatorial de cada
elemento de A.
*/
#include <stdio.h>
#define TAM 6
void main()
{
int i;
int a[TAM];
}
| [
"kemilybeatriz@gmail.com"
] | kemilybeatriz@gmail.com |
b4c46e68e6d77c1c9358200c7586b8df51543e2e | 004f7e9ff598886a3134f824f5052fb7f1391ead | /libft/ft_strlen.c | 5ce8c49067982edaa5966e6264afa3fc4e8160f5 | [] | no_license | mihailmoll/ft_ls | 2683d91813c08c82d2312f8e453cc49a37ce09ee | 87806dab6645d0df5025256634f4abef4d3760c3 | refs/heads/master | 2020-06-14T00:14:44.683687 | 2017-01-13T15:10:09 | 2017-01-13T15:10:09 | 75,540,396 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,011 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: ... | [
"mmihail@e1p82.chisinau.42.fr"
] | mmihail@e1p82.chisinau.42.fr |
90db8bae1224dc4654ada6a1a5ec12a578bf7411 | 86a550d434047d421935772054c53a72c5690570 | /kern/hal/bcm2835/bcm2835_mailbox.c | 6b2fdc6fa41b098458e0a686722b864956602d3e | [
"BSD-2-Clause"
] | permissive | Zeke-OS/zeke | 55cb5f3153a94cea21b6757bad9d3755f53e2339 | c6cd23959e3916c1aae04d909997f67c57c25e91 | refs/heads/master | 2022-10-15T13:16:43.112688 | 2022-10-04T09:14:42 | 2022-10-04T09:14:42 | 7,281,853 | 81 | 9 | NOASSERTION | 2020-06-21T19:41:15 | 2012-12-22T02:46:04 | C | UTF-8 | C | false | false | 3,614 | c | /**
*******************************************************************************
* @file bcm2835_mailbox.c
* @author Olli Vanhoja
* @brief Access to BCM2835 mailboxes.
* @section LICENSE
* Copyright (c) 2014, 2015 Olli Vanhoja <olli.vanhoja@cs.helsinki.fi>
* All rights reserved.
*
* Redistribution and... | [
"olli.vanhoja@gmail.com"
] | olli.vanhoja@gmail.com |
ea69b016f9a252e1250a582e35091c921b132254 | 283da2692ac963d720ed805937e6649fa59fe8b5 | /队列/main.c | 3f304f72d7463789532dc151050e922fae728e06 | [] | no_license | kidyme/DataStructures | 9fed7f5d1d9479066d0e90a58ca59e1260acf0dc | fc9b9d00124a6e67191376a4ac7251351165b880 | refs/heads/main | 2023-04-12T07:25:44.727632 | 2021-04-14T10:39:21 | 2021-04-14T10:39:21 | 304,873,687 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 928 | c | // 测试代码
#include "Queue.h"
int main() {
printf("Start\n");
Queue *queue = (Queue *) malloc(sizeof(Queue));
InitQueue(queue);
TraverseQueue(queue,PrintQueue);
EnQueue(queue,1);
EnQueue(queue,2);
EnQueue(queue,3);
EnQueue(queue,4);
EnQueue(queue,5);
printf("队列长度为%d\n",GetLength(q... | [
"1554768198@qq.com"
] | 1554768198@qq.com |
f37075cca5e142074c4e5e64a653571dc9f91b4c | 1edf54beebc02fd9e1ddb7f5945ad3dcf97af7b8 | /classes/TitleWindow.h | 6a4058b131e08e547fb1433d90a758833b027479 | [
"MIT"
] | permissive | 0xfaded/tibia-capi | 03fafb4f185e868607b2778eda415505d536a12a | 88b2b6be55cca6c46687c2326f5d81c01e25697c | refs/heads/master | 2020-04-12T20:54:39.662057 | 2015-07-05T04:48:57 | 2015-07-05T04:49:42 | 38,402,553 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 127 | h | #pragma once
#include <stdint.h>
typedef struct TitleWindow TitleWindow;
struct TitleWindow {
int32_t unknown[0];
};
| [
"carlchatfield@gmail.com"
] | carlchatfield@gmail.com |
93f29a359d5243bcce1dccde869b30adc5f54bb9 | 04973b41e719c99ae9627c53ebb07448e99a5fd8 | /Integrations/Integration version 1/src/callbacks.h | b172432416a6dcc202d5e0b563385ddc3c1f10be | [] | no_license | majdilahsini/Smart.fit | 445373d3594c9791f5749347ffb64808e37d481b | ae93a987d1c24c597a694e759acd918d6f3b8744 | refs/heads/master | 2020-04-03T07:29:12.314833 | 2018-12-11T10:47:23 | 2018-12-11T10:47:23 | 155,104,109 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,326 | h | #include <gtk/gtk.h>
void
on_suivant_clicked (GtkButton *button,
gpointer user_data);
void
on_valider_clicked (GtkButton *button,
gpointer user_data);
void
on_checkbutt... | [
"lahsini.majdi@gmail.com"
] | lahsini.majdi@gmail.com |
7a63b81fd1d6869c11e69650bb2a663e8aa08ec9 | 786b77a8a49e213180352c79c95bccd9cea0f5b8 | /lib/asn1c/nr_rrc/RACH-ConfigCommonTwoStepRA-r16.c | 058068865eb2b813229427fc16ee0a7659ba15f2 | [
"Apache-2.0"
] | permissive | ziseputi/free5GRAN | b593c45d757812c01423d8c91d877a67826407ce | 2e8d4004342a53e8dcd4081b18798f2f06838134 | refs/heads/master | 2023-02-15T11:33:14.940984 | 2021-01-12T15:53:27 | 2021-01-12T15:53:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 45,993 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "NR-RRC-Definitions"
* found in "NR-RRC-Definitions.asn"
* `asn1c -fcompound-names -no-gen-example -pdu=all`
*/
#include "RACH-ConfigCommonTwoStepRA-r16.h"
/*
* This type is implemented using NativeEnumerated,
* so here we adjust t... | [
"aymeric@dejavel.fr"
] | aymeric@dejavel.fr |
86eb803feb7d37093a02a6c9fcb97a8b73a7358d | 3e445534eb1e293d620f185bb0b6c39cacb3c691 | /src/callbacks.c | d10ae54df9adec38d55ab7a59d28a71ef763cdb8 | [] | no_license | HizemMontassar/integration | 1bbe69c060d0879656572c2dd221b7c47a3075fd | bdd625344d0389234a4b687980845138ba9d585d | refs/heads/master | 2020-04-10T20:24:58.067320 | 2018-12-11T02:45:36 | 2018-12-11T02:45:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 34,680 | c | #ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtk/gtk.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "callbacks.h"
#include "interface.h"
#include "support.h"
#include "login.h"
#include "admin.h"
#include "kine.h"
#include "rdv.h"
#include "nutri.h"
#include "treeview_admin.h"... | [
"montassar.hizem@esprit.tn"
] | montassar.hizem@esprit.tn |
21965947e8ef5deab1911671eb8c8825b6d689eb | fe423401909de80853b9e40e8e02303b2d974f34 | /reduma-0.7.0/red/src/pmanalyze.c | 3c6154abd10f13d767ab428344708899b949b9ac | [] | no_license | GunterMueller/KiR_Kiel.Reduction.Language | 5f6e4a2415738cdb3c4031c231103b69e303d36a | 55f2c1d6f9cfab503476338e4bba800827a13e40 | refs/heads/main | 2023-02-21T05:17:48.310994 | 2021-01-25T20:47:12 | 2021-01-25T20:47:12 | 332,621,378 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,612 | c | /*{{{ Erklaerung*/
/* pmanalyze.c */
/* Dieses File definiert die Funktion pmanalyze_list.
Sie analysiert und annotiert ein Pattern.
Im einzelnen werden folgende Informationen bereitgestellt:
Tiefe des Patterns:
....
*/
/*}}} */
/*{{{ #includes*/
#include "rstdinc.h"
#in... | [
"gunter.mueller@gmail.com"
] | gunter.mueller@gmail.com |
a5f973cd07b74e768e63b1f66ab75df920e3f4ae | 2266eb133fc3121daf0aa7f4560626b46b94afe0 | /kungfu/class/shaolin/xu-tong.c | 897563c48ab412c50484ab94298176bf1c111578 | [
"MIT"
] | permissive | oiuv/mud | 6fbabebc7b784279fdfae06d164f5aecaa44ad90 | e9ff076724472256b9b4bd88c148d6bf71dc3c02 | refs/heads/master | 2023-08-18T20:18:37.848801 | 2023-08-13T07:00:15 | 2023-08-13T07:00:15 | 112,278,568 | 99 | 49 | MIT | 2023-02-01T03:42:14 | 2017-11-28T03:05:14 | C | UTF-8 | C | false | false | 1,430 | c | // Npc: /kungfu/class/shaolin/xu-tong.c
// Date: YZC 96/01/19
inherit NPC;
void create()
{
set_name("虚通", ({
"xu tong",
"xu",
"tong",
}));
set("long",
"他是一位身穿黄布袈裟的青年僧人。脸上稚气未脱,身手却已相\n"
"当矫捷,看来似乎学过一点武功。\n"
);
set("nickname", "知客僧");
set("gender", "男性");... | [
"i@oiuv.cn"
] | i@oiuv.cn |
a9dd77384771fd1be16d2576c24d9665b34ae392 | 4aa42b293091ddb05fe2aba9642e04c5f373342a | /libft/srcs/std_func/ft_strncat.c | 048be4166cb3dd4beb411cf8da7d252aecdfa7c1 | [] | no_license | Benjyskan/21sh | aee14665d39b6d835b2dacf15a3257fb9f67655b | ac86aff4810de09cc91545a4e7417f276af34b5e | refs/heads/master | 2020-04-29T05:39:09.770822 | 2019-05-10T14:56:11 | 2019-05-10T14:56:11 | 175,889,579 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,116 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncat.c :+: :+: :+: ... | [
"pscott@student.42.fr"
] | pscott@student.42.fr |
945e141c16ee312731f7d311a57b9ade45c663af | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/media/radio/wl128x/extr_fmdrv_common.c_fm_send_cmd.c | a5bd092651d79c6b2e22a17dcee0e88b43d601d9 | [] | 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 | 3,483 | 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 |
0ad040ea029568df7026bd672520b4a65a664dff | 407a9f10d68a70207399a7473d430e9eaf1ba3a2 | /mrsystem/src/basic_libs/scanner/scan_ueb.c | 8bcacc15bd03c55d711913b739d804da61362c2e | [] | no_license | GBert/railroad | f30e6eab85706e278168c347b25388afb43f8c62 | d094061fdf9f09be1fcc72811000cac48fb7cfdb | refs/heads/master | 2023-08-31T08:09:12.270288 | 2023-08-23T17:22:02 | 2023-08-23T17:22:02 | 12,468,974 | 37 | 15 | null | 2023-03-28T17:41:55 | 2013-08-29T19:20:04 | C | UTF-8 | C | false | false | 1,551 | c | #include <boolean.h>
#include "scanner.h"
#define LF 10
#define CR 13
#define EOLN 13
#define EOFI 26
static char NextChar(Scanner *Handle)
{
if (Handle->AktZeichen>=Handle->AnzZeichen)
{
Handle->AnzZeichen = (int)fread(Handle->Puffer, 1,
... | [
"info@gerhard-bertelsmann.de"
] | info@gerhard-bertelsmann.de |
3d57d0152b582f6e53a2e68d4664169bf29ce03f | 1690f5ebd7fd05ad590c7623aa3f0bfe8aa55cae | /AlexaGadget_CustomInterface/AlexaGadget/src/alexaGadgetSpeechDataSpeechmarksDirectivePayload.pb.c | a175f5091b666fe6460fb33a7a38e3c59e0f9f44 | [] | no_license | poruruba/AlexaGadget | 5eb24beed495caaf0c1b0f57a31aea34a4177a1e | c648464ef32205cf6e8eaef49a806a71d4966cc2 | refs/heads/master | 2022-11-19T04:06:38.939440 | 2020-07-20T06:43:12 | 2020-07-20T06:43:12 | 279,924,277 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,880 | c | /* Automatically generated nanopb constant definitions */
/* Generated by nanopb-0.3.9.6 at Wed Jul 15 00:57:09 2020. */
#include "alexaGadgetSpeechDataSpeechmarksDirectivePayload.pb.h"
/* @@protoc_insertion_point(includes) */
#if PB_PROTO_HEADER_VERSION != 30
#error Regenerate this file with the current version of n... | [
"noreply@github.com"
] | poruruba.noreply@github.com |
bfcc06166147166ea5951f25d6a4b6c163ffe472 | b46652b62062e41b6147659c9dacfba4448565d4 | /FPUT_periodo.c | b5322e5b0049f32f8c4e52762c3a45608e2d4868 | [
"BSD-3-Clause"
] | permissive | lucnico/fput | 0268b3cd954673f4aa5c10969c75589a55689509 | 26c0ba6202c498d6c9b4b929d6f4cd6a42ca1fdd | refs/heads/master | 2020-03-18T05:06:16.582845 | 2018-06-14T22:19:39 | 2018-06-14T22:19:39 | 134,324,578 | 1 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 2,103 | c | #include <math.h>
#include <stdio.h>
#include <stdlib.h>
#define N 64
#define dt 0.001
#define alfa 0.25
#define amp_ini 1.0
#define trans pow(N/1.1,2.5)
double a(double *u, int i){
return (u[i+1]+u[i-1]-2*u[i])+alfa*(pow(u[i+1]-u[i],2)-pow(u[i]-u[i-1],2));
}
double update(double *u, double *v){
... | [
"lucas.nicolao@gmail.com"
] | lucas.nicolao@gmail.com |
8c95a9c280cd784b62a37b879686c6891a28f0ea | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/staging/rtl8723bs/hal/extr_HalBtc8723b1Ant.c_EXhalbtc8723b1ant_HaltNotify.c | b1e43afd1c66525af152d56bcb4d75e88d60395b | [] | 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 | 1,806 | 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 |
99807a9d948cd266215f5140a6e18652f9ee56e3 | 57f4e9843439a69b8ae14f9f2fe97f857c8a3ebc | /src/luaapi/graphics_quad.c | 5d41e9db3c8c89bdd10c54f318c52aed5d97792d | [
"MIT"
] | permissive | AntonioModer/motor | 207775e355ee4059c6e987b464e12d516bbe0361 | 0ae951da338f72b079d56cf4e78c3b3bef88df39 | refs/heads/master | 2021-01-15T13:33:59.999418 | 2016-01-09T16:17:05 | 2016-01-09T16:17:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,172 | c | /*
motor2d
Copyright (C) 2015 Florian Kesseler
This project is free software; you can redistribute it and/or modify it
under the terms of the MIT license. See LICENSE.md for details.
*/
#include "graphics_quad.h"
#include "tools.h"
static struct {
int quadMT;
} moduleData;
int l_graphics_newQuad(... | [
"rnlf@users.noreply.github.com"
] | rnlf@users.noreply.github.com |
5ce1aec70f28a7e7a8131073636a793fbbfe7988 | 6cd662f7e0b877699ead06f92401fcc6dbf6a660 | /new/ingres/source/h/opsys.h | 817857f322a9c72fae2d00c1a463193313803b70 | [] | no_license | Roare/Digital-Ultrix-32-VAX-2.0 | d53ff4b2c559a9e03cbc073de5c106b38591e43f | 56695b632d960b605717f93f84dc6fa7ec5b4e2f | refs/heads/master | 2023-09-01T17:43:13.032091 | 2020-04-25T00:27:39 | 2020-04-25T00:27:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,166 | h | /*
* @(#)opsys.h 1.2 (ULTRIX) 2/1/85
*/
/************************************************************************
* *
* Copyright (c) 1984 by *
* Digital Equipment Corporation, Maynard, MA *
* All rights reserved. *
* *
* This software is furnished under a license and may be used... | [
"zahir.meddour@protonmail.com"
] | zahir.meddour@protonmail.com |
9d426b21da91e5b253fbf96c57511f4d390788a7 | 35040f3e897c3e57d08b28dc889eb2ad211c79c1 | /primenumber.c | d49f684fee98760cb929a06fec597c3f8453a825 | [] | no_license | fetoh9/Clang | 0fe9e0488174927f9da7d421e0c7a36ba6030a2d | 84ee7ee80ee6fc9da5143a6bbd4c62bd799fc8c2 | refs/heads/main | 2023-03-23T23:20:13.430282 | 2021-03-25T20:55:25 | 2021-03-25T20:55:25 | 351,568,564 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 342 | c |
#include <stdio.h>
int main ()
{
int n, i, count = 0;
printf ("enter n number:");
scanf ("%d", &n);
for (i = 1; i <= n; i++)
{
if (n % i == 0)
{
count++;
}
}
if (count == 2)
{
printf ("%d is a prime number\n", n);
}
else
{
printf ("%d is Not a prime number\n", n)... | [
"noreply@github.com"
] | fetoh9.noreply@github.com |
c1a11f255dac7ef1b1ff51a65f101bf517030180 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/staging/rtl8712/extr_rtl871x_mp_ioctl.c_oid_rt_get_thermal_meter_hdl.c | 18bf510b9577780d6e4dc7516f61d2b7a6242a4a | [] | 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,178 | 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 |
9333295257e238e7154db934f419986c55bd3b11 | ceae98c2d3eab1ae967375f91fc066744e73814e | /src/libsodium/sodium/runtime.c | d9baa541cfeae755af8496862f9234be045043be | [
"ISC"
] | permissive | hintjens/libsodium | a4ac5dbe5c0fdcf3c487608f7aa9c7286be69667 | 94e99813575423dc39f9a93838f99a09622d6dad | refs/heads/master | 2021-01-21T09:07:07.472508 | 2014-05-03T06:37:50 | 2014-05-03T06:37:50 | 19,397,280 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,920 | c |
#ifdef HAVE_ANDROID_GETCPUFEATURES
# include <cpu-features.h>
#endif
#include "runtime.h"
typedef struct CPUFeatures_ {
int initialized;
int has_neon;
int has_sse2;
int has_sse3;
} CPUFeatures;
static CPUFeatures cpu_features;
#define CPUID_SSE2 0x04000000
#define CPUIDECX_SSE3 0x00000001
sta... | [
"github@pureftpd.org"
] | github@pureftpd.org |
b8d044c26a3a55681af612b7b573e5d1894c29d0 | e958ecabed1b4c942c4a38366b6b7687c9abf852 | /cbus/cbuscore.c | b4cac7f7e97cf4760e1edaba34330318a69243d2 | [
"MIT",
"GPL-1.0-or-later"
] | permissive | jpcima/NP2kai | def13119567010f074f4a21ebaa15af06eda433c | e1c06092b8c824b1f34309d24a83a5a829794b76 | refs/heads/master | 2020-04-07T00:41:23.330336 | 2018-10-28T03:56:07 | 2018-10-28T03:56:07 | 157,914,244 | 0 | 0 | MIT | 2018-11-16T19:48:53 | 2018-11-16T19:48:53 | null | UTF-8 | C | false | false | 2,341 | c | #include "compiler.h"
#include "pccore.h"
#include "iocore.h"
#include "cbuscore.h"
#include "ideio.h"
#include "sasiio.h"
#include "scsiio.h"
#include "pc9861k.h"
#include "mpu98ii.h"
#include "bmsio.h"
#ifdef SUPPORT_NET
#include "net.h"
#endif
#ifdef SUPPORT_LGY98
#include "lgy98.h"
#endif
#ifdef SUP... | [
"sylph23k@gmail.com"
] | sylph23k@gmail.com |
9b81902d442c00a06efde0bad838a8dca42db00e | dfb79be7f7f639ac3affab28b1ceae5857dc2d01 | /test/test_RedBlackTreeDel.c | 68cd60a1cdf2cf22ab42905512019b7668d72e77 | [] | no_license | darklord1310/RedBlackTree | 08d6d01799b6fd7008c2de9caf62c03487326889 | 2006ad7a26615bee6e65a2fe9d394d1d84cc8884 | refs/heads/master | 2021-01-18T21:33:51.858605 | 2014-11-17T16:50:54 | 2014-11-17T16:50:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 65,233 | c | #include <stdio.h>
#include "unity.h"
#include "InitNode.h"
#include "RedBlackTree.h"
#include "CustomAssertions.h"
#include "Rotations.h"
#include <CException.h>
Node node1, node2, node5, node10, node15, node12, node6, node11, node20, node4, node3, node7, node8, node13, node40, node25, node30, node50;
void setUp(vo... | [
"jet_wong@hotmail.com"
] | jet_wong@hotmail.com |
850f5252eafc2ceda5c7a4e93f03ba65d93ea321 | 8941518630678b090fe88c72e30da468c6a3f2ed | /TD03/ex2.c | a8040dec61330b1b7bbfdf799a1e03f6fa8ca8c4 | [] | no_license | Elmar999/C_UFAZ_bachelor | d4733f859e46815d5b93fb7911e5fc5da915ac78 | fd44ef7d72a8e86e42080822e86caa9ac9c7b129 | refs/heads/master | 2020-05-07T20:08:22.647243 | 2019-04-08T19:26:16 | 2019-04-08T19:26:16 | 180,846,447 | 1 | 0 | null | 2019-04-11T17:41:33 | 2019-04-11T17:41:33 | null | UTF-8 | C | false | false | 549 | c | #include <stdio.h>
void V_allZero(float vector[], int nb_dims);
void V_print(float vector[], int nb_dims);
void V_belongsTo(float x, float vector[], int nb_dims);
int main () {
return 0;
}
void V_allZero(float vector[], int nb_dims) {
for (int i = 0; i < nb_dims; i++) vector[i] = 0.0f;
}
void V_print(float v... | [
"agayev169@gmail.com"
] | agayev169@gmail.com |
70f18101f26f511c6a953944f6c5845f1f164b50 | a2e6435b580b634d25b9d19a48f6dddb18ec5c7f | /include/Threading/Threading.h | 9eb57456d4c6635b9106093a3c149f60b787e3b3 | [] | no_license | Deadknight/wii2dengine | a532a550f51c8772d04420b0db2f0a7fa1b1caab | 0054ce9cf15cd1d712d0c179b5e4d053c84ed807 | refs/heads/master | 2022-11-30T14:15:51.231131 | 2020-08-11T11:52:40 | 2020-08-11T11:52:40 | 286,729,261 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 378 | h | #ifndef _THREADING_H
#define _THREADING_H
// We need assertions.
//#include "../Errors.h"
// Platform Specific Lock Implementation
#include "Mutex.h"
// Platform Independant Guard
#include "Guard.h"
// Platform Specific Thread Starter
#include "ThreadStarter.h"
// Platform independant locked queue
#include "Locked... | [
"1907606+Deadknight@users.noreply.github.com"
] | 1907606+Deadknight@users.noreply.github.com |
ffac752982888b03256c5650689ffcdef37bba0e | d1fc1105046f5385cb1d552d676b0b42f6c52dbc | /common/menu-list.c | 64fd6e3a21638ff06a308631fe7aad96370b1be4 | [
"ISC"
] | permissive | crazyqk2019/nx-hbmenu | 4ff79d9c7f51c00ee1ebdf20dd20f7e618b5c51f | 0ed16c9cf09a2af822001aefe8da240a569bf260 | refs/heads/master | 2022-11-10T08:15:00.351297 | 2020-06-24T10:24:59 | 2020-06-24T10:24:59 | 274,560,381 | 0 | 0 | ISC | 2020-06-24T02:55:22 | 2020-06-24T02:55:21 | null | UTF-8 | C | false | false | 7,933 | c | #include "common.h"
static menu_s s_menu[2];
static menu_s s_menuFileassoc[2];
static bool s_curMenu, s_curMenuFileassoc;
menu_s* menuGetCurrent(void) {
return &s_menu[s_curMenu];
}
menu_s* menuFileassocGetCurrent(void) {
return &s_menuFileassoc[s_curMenuFileassoc];
}
menuEntry_s* menuCreateEntry(MenuEntryT... | [
"yellows8@users.noreply.github.com"
] | yellows8@users.noreply.github.com |
6f2b76e24b0c72f7650b32532354c1ec6d7385a2 | dddbc7dea28cc36fb110f83acbc4b6290c9dea2d | /7_life/life.h | 84df891520deb8cdc8471856e496e430d2738f71 | [] | no_license | rubcuadra/TC2025_PA | 82551d6b10a214b99a4d7110492c7c0c01188eed | 1893e1950709db009933d3f9ae9a84e9d8354241 | refs/heads/master | 2020-03-27T15:06:26.398245 | 2018-11-28T00:28:26 | 2018-11-28T00:28:26 | 146,698,373 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,113 | h | #ifndef LIFE_H
#define LIFE_H
#include "matrix.h"
typedef enum life_status { DEAD = 0, ALIVE = 1 } life_s;
// Structure for the data that will be sent to each thread in MTgenerateLife
typedef struct data_struct {
matrix_t * currentGeneration;
matrix_t * nextGeneration;
int from_row,to_row;
int from_co... | [
"rubcuadra@gmail.com"
] | rubcuadra@gmail.com |
a51cef69c4e0b580ff82203721f24f2d612c17b2 | 8c27353066fd9d9413fa89b617b29953db7ceae9 | /Back On Your Feet/Timer/Back On Your Feet-Bridging-Header.h | f68bd00ab341264ace27d62dedd33e3d88075b6d | [] | no_license | ranahaani/Back-On-your-feet | 6cd17948d5bff0ec2c1cb01f2973d30f21eb8807 | cd688970e5ee151677ed4364c1f2bda2d19b4647 | refs/heads/master | 2020-06-06T12:18:13.375805 | 2019-07-26T12:19:16 | 2019-07-26T12:19:16 | 192,737,437 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 131 | h | //
// Use this file to import your target's public headers that you would like to expose to Swift.
//
//#import "MZTimerLabel.h"
| [
"muhammadabdullah@Muhammads-MacBook-Pro.local"
] | muhammadabdullah@Muhammads-MacBook-Pro.local |
18582f3047c634b31b24cd0615e8bb8644712296 | 78c4781ed6ec2f2dba8b57b9ca7d3e66e7eb90a5 | /C Projects/Algorithms/Sorting/Heap Sort/heap_sort.c | d575684b6c11f7a731b33f32db75b5cbda6ef909 | [] | no_license | mohdnat91/Projects | e873083eb1c30db4f096594896c853b57e87ed10 | d02af589ed55bea2298236bb94ec380ff6c21159 | refs/heads/master | 2021-01-10T22:06:44.384673 | 2012-12-21T09:44:54 | 2012-12-21T09:44:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,606 | c | #include <utils.h>
static void heapify(void **array, int current, int length, compare_fn cmp){
int first_child = 2 * current + 1;
int second_child = 2 * current + 2;
int largest = current;
if(first_child < length && cmp(array[largest], array[first_child]) < 0)
largest = first_child;
if(second_child < length ... | [
"mohdnat91@gmail.com"
] | mohdnat91@gmail.com |
fa21ecd5e1aa295f58ca3efe639044d99c7bc6a3 | a71b7635bd0fc15bfaf30117c2c28b8c04cab49c | /examples/provisioning/custom_config/build/include/sdkconfig.h | 7ae7ebf7847eae2c024151dc2e0754a2433eccff | [
"Apache-2.0"
] | permissive | ghsecuritylab/esp_alexa_idf | 6e286a85457c28277ba79e045fbbe615b1fc0c9c | e132e8b960af6d576ce2fca4f6b2994be2f42e56 | refs/heads/master | 2021-02-28T20:35:52.490639 | 2019-12-26T01:44:41 | 2019-12-26T01:44:41 | 245,730,810 | 0 | 0 | Apache-2.0 | 2020-03-08T01:06:00 | 2020-03-08T01:06:00 | null | UTF-8 | C | false | false | 10,747 | h | /*
*
* Automatically generated file; DO NOT EDIT.
* Espressif IoT Development Framework Configuration
*
*/
#define CONFIG_ESP32_PHY_MAX_TX_POWER 20
#define CONFIG_TRACEMEM_RESERVE_DRAM 0x0
#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16
#define CONFIG_MQTT_TRANSPORT_SSL 1
#define CONFIG_FATFS_LFN_NONE 1
#define CONFI... | [
"857413240@qq.com"
] | 857413240@qq.com |
356e06d85753242fc1db9e5765f237d4079bcf3c | 753d5dd465ec04413457b889d821b5fc7fe8f72f | /Weekly Task 3/15_while.c | 5b48589a52af1a0d62f383c959eef15577cba6f5 | [] | no_license | milotr/C-study-files | 904575b586f4abe6d6565fd03808ad2f0f4f50e1 | a97b7d284fe7a5de74a2938664e9feb3079c5dff | refs/heads/master | 2023-02-25T03:42:21.662954 | 2021-02-01T11:36:35 | 2021-02-01T11:36:35 | 292,311,453 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 182 | c | #include <stdio.h>
int main(){
//while
int b = 1;
int sumB = 0;
while (b <= 5){
sumB = sumB + b;
b++;
}
printf("%d\n", sumB);
return 0;
} | [
"minhlong010122@gmail.com"
] | minhlong010122@gmail.com |
89e61e8d5cc89ab602cc83fd3c02e0db3927fdac | 860cdda8ddb5562fc800f9bf13cd5ba8c5a9eacd | /训练营大组第二次作业/栈以及栈的应用/栈/代码和头文件/LinkStack/LinkStack.h | c4c6296d68d751ee398cded1177e5d600533805e | [] | no_license | 1227010555/Homework | c8e22802e074495a7285a93165821fb5e44194fb | d02bd633edc164a2f15714dedd15119a8635f7ca | refs/heads/master | 2023-05-02T20:19:09.896485 | 2021-05-15T13:40:58 | 2021-05-15T13:40:58 | 352,322,160 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 802 | h | #ifndef STACK_H_INCLUDED
#define STACK_H_INCLUDED
#include <stdio.h>
#include <stdlib.h>
typedef enum Status
{
ERROR = 0,
SUCCESS = 1
} Status;
typedef int ElemType;
typedef struct StackNode
{
ElemType data;
struct StackNode *next;
}StackNode, *LinkStackPtr;
typedef struct LinkStack
{
LinkStackPtr top... | [
"1227010555@qq.com"
] | 1227010555@qq.com |
ca6e4b1e91427aee0ec0193bacd794f800b4fb70 | 94b11c761ed87d5d177bda78f8762841fda12b73 | /source/easylogger/plugins/file/elog_file_port.c | 5ddea6372b66ab86a317d14973bd5c2fe3028c8e | [] | no_license | clren-seu/fatfs_test | b7b59766c862f7113c00e3c2b4b3c04489b338c6 | 21491ee330ce307d5eef2f5265c1a064c8de9c05 | refs/heads/master | 2023-07-17T18:12:08.110918 | 2021-09-06T07:58:19 | 2021-09-06T07:58:19 | 400,478,167 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,874 | c | /*
* This file is part of the EasyLogger Library.
*
* Copyright (c) 2015-2019, Qintl, <qintl_linux@163.com>
*
* 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... | [
"clren_seu@163.com"
] | clren_seu@163.com |
723982c97801aff5135b5d9e85ac6402ef89b7c9 | c40b21b737c8906d104d6e1a63904884b8ec345d | /Operator/UTOP_DefectPixel_DarkDead/Resource.h | e2f8541fee7a2b39c691ae5c826ca7086dc976ba | [] | no_license | liupengsyk/UTS_NEW | f4eac1f327126eda4dd0bfaae0a1372a77263175 | 0fa04109a0f0808dd973a6f86cc0133f068ea02d | refs/heads/master | 2020-06-03T02:30:18.394317 | 2019-01-30T02:32:32 | 2019-01-30T02:32:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 380 | h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by UTOP_DefectPixel_DarkDead.rc
//
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 4000
#define _APS_NEXT_CONTROL_VALUE 4000
#define _APS_NEXT_SYMED_VALUE... | [
"2411804080@qq.com"
] | 2411804080@qq.com |
369e043923de86064fb71ccc5212f18fc9f26bac | 3b8d8da893c784e2d913761d259043384ac42320 | /libft/ft_isascii.c | 0ac6dcd639df6fdb6ab3bc0667b1c6839d405101 | [] | no_license | msakwins/Corewar | 804fd8e4ee3ed9510bf791f635a86496de58f7a2 | 5ea026b5a9f3a693590791b65e0734b51a21c857 | refs/heads/master | 2020-03-16T02:37:09.637356 | 2018-05-07T14:04:42 | 2018-05-07T14:04:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 980 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: ... | [
"msakwins@e1r8p4.42.fr"
] | msakwins@e1r8p4.42.fr |
d0011128486272a7c8f227a2eecd10711145a313 | efb24b67becbc98caafcdd7d589432376bea15e9 | /src/main.c | bf01e80c9d4aaf31a1607fb08ab1253355a56ff6 | [] | no_license | osannolik/RTOS-Cortex-M4 | fc7eabae9a9599ebeb82407c7304adcf387281d6 | 94b34be0211382819890adb0bf74b887b04ac2b2 | refs/heads/master | 2021-01-12T17:47:01.948245 | 2016-10-22T15:22:48 | 2016-10-22T15:22:48 | 69,390,263 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,867 | c |
#include "main.h"
#include "rt_kernel.h"
#include "rt_sem.h"
#include "rt_queue.h"
static void SystemClock_Config(void);
static void Error_Handler(void);
#define RT_SYSTICK_DISABLE do {SysTick->CTRL &= ~(SysTick_CTRL_ENABLE_Msk);} while(0)
#define RT_SYSTICK_ENABLE do {SysTick->CTRL |= SysTick_CTRL_ENABL... | [
"jonas@godtycklig.se"
] | jonas@godtycklig.se |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.