text stringlengths 9 948k |
|---|
#include <stdio.h>
#include <stdlib.h>
int vogais (char *nomeArquivo) {
FILE *arq;
arq = fopen(nomeArquivo, "r");
int vogais = 0;
char c;
while ((c = fgetc(arq)) != EOF) {
switch (c) {
case 'A': case 'a': vogais++; break;
case 'E': case 'e': vogais++; break;
case 'i': case 'I': vogai... |
#pragma once
#include <VTableInterpose.h>
#include "PluginManager.h"
#include "DataDefs.h"
#include "df/viewscreen_choose_start_sitest.h"
#include "defs.h"
using df::global::enabler;
using df::global::gps;
namespace embark_assist {
namespace overlay {
typedef void(*embark_update_callbacks)();
t... |
/*-----------------------------------------------------------------------*/
/* Low level disk I/O module skeleton for FatFs (C)ChaN, 2013 */
/*-----------------------------------------------------------------------*/
/* If a working storage control module is available, it should be */
/* attached to t... |
/* [xirc2ps_cs.c wk 03.11.99] (1.40 1999/11/18 00:06:03)
* Xircom CreditCard Ethernet Adapter IIps driver
* Xircom Realport 10/100 (RE-100) driver
*
* This driver supports various Xircom CreditCard Ethernet adapters
* including the CE2, CE IIps, RE-10, CEM28, CEM33, CE33, CEM56,
* CE3-100, CE3B, RE-100, REM10BT,... |
//
// rserialize.h
// MemoryCrawler
//
// Created by LARRYHOU on 2019/10/23.
// Copyright © 2019 larryhou. All rights reserved.
//
#ifndef rserialize_h
#define rserialize_h
#include <stdio.h>
#include <cassert>
#include "serialize.h"
class RawMemorySnapshotReader: public MemorySnapshotDeserializer
{
PackedMe... |
/*
* =================================================================
*
*
* Description: samsung display panel file
*
* Author: jb09.kim
* Company: Samsung Electronics
*
* ================================================================
*/
/*
<one line to give the program's name and a brief idea of what it... |
#pragma once
#include <memory>
#include "Snake.h"
namespace states{
class Game;
}
class Controller
{
/* Snake controller,
Action space is just the direction to turn to at every move of the snake*/
public:
Controller(std::weak_ptr<states::Game> game, std::shared_ptr<Snake> snake)
: _pG... |
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolar... |
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General... |
/*
* $Id: Ifo.h 2680 2013-05-11 13:05:43Z v0lt $
*
* (C) 2003-2006 Gabest
* (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-BE.
*
* MPC-BE 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; e... |
#include "buffer.h"
#include "server.h"
#include "log.h"
#include "connections.h"
#include "fdevent.h"
#include "request.h"
#include "response.h"
#include "network.h"
#include "http_chunk.h"
#include "stat_cache.h"
#include "joblist.h"
#include "plugin.h"
#include "inet_ntop_cache.h"
#include <sys/stat.h>
#include... |
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the terms found in... |
/*******************************************************************************
* Copyright (C) 2018 Olivier Delaneau, University of Lausanne
*
* 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... |
#pragma once
#include "System/Rc_string.h"
#include "AT.h"
/**
*/
struct String {
enum {
short_data_size = 3 * sizeof( void * ) - 1
};
#if BYTE_ORDER == LITTLE_ENDIAN
struct Short {
unsigned char size; // = 2 * actual_size + 1
char data[ short_data_size ];... |
/*
* MVKMTLResourceBindings.h
*
* Copyright (c) 2015-2020 The Brenwill Workshop Ltd. (http://www.brenwill.com)
*
* 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.apa... |
/*
* @brief LPC8xx Chip specific SystemInit
*
* @note
* Copyright(C) NXP Semiconductors, 2013
* All rights reserved.
*
* @par
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* LPC products. This software is supplied "... |
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_pushswap.h :+: :+: :+: ... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
// sktoolslib - common files for SK tools
// Copyright (C) 2012, 2020 - Stefan Kueng
// 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 License, or (at your option) ... |
//
// AppDelegate_iPhone.h
// Wimoto
//
// Created by MC700 on 7/30/13.
// Copyright 2013 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate_iPhone : NSObject <UIApplicationDelegate>
@property (nonatomic, strong) IBOutlet UIWindow *window;
@end |
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_BASE_IME_WIN_ON_SCREEN_KEYBOARD_DISPLAY_MANAGER_TAP_TIP_H_
#define UI_BASE_IME_WIN_ON_SCREEN_KEYBOARD_DISPLAY_MANAGER_TAP_TIP_H_
#include "bas... |
//
// Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may... |
//bits per pixel: 24, bytes per pixel: 3
//rmask: 16711680, gmask: 65280, bmask: 255
//w: 178, h: 32, pitch: 536
unsigned char icons[] = {
0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,0,0,0,0,0,0,0,0,0,
111,0,0,0,0,0,111,0,0,0,0,0,111,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,255,0,0,255,... |
/*
* Copyright (c) 2018-2019, Arm Limited and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* 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/... |
/*
* Copyright 2019 mtkrtk
*
* 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 agreed to in wr... |
/* Generated by RuntimeBrowser
Image: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
*/
@interface NSPipe : NSObject
@property (atomic, readonly, retain) NSFileHandle *fileHandleForReading;
@property (atomic, readonly, retain) NSFileHandle *fileHandleForWriting;
+ (id)allocWithZone:(struct... |
/*
* et-c-adb_err.c:
* This file is automatically generated; please do not edit it.
*/
#include <stdlib.h>
#define N_(a) a
static const char* const text[] = {
N_("No Error"),
N_("Principal or policy already exists"),
N_("Principal or policy does not exist"),
N_("Database not initialized"),
N_(... |
/*
* Copyright (c) 2004-2006 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2010-2012 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2013 The Universi... |
#include "SPI_with_EEPROM.h"
void initSPI(uint8_t mode, uint8_t prescaler){
//Set SCK(PB5) and MOSI(PB3) to output
DDRB |= _BV(PB5) | _BV(PB3) | _BV(PB2);
//Set MISO(PB4) and then AVR slave-select to input with internal pull-up
DDRB &= ~_BV(PB4);
PORTB |= _BV(PB4);
//Modes of Operations for SPI, Phases an... |
// MIT License
//
// Copyright (c) 2019 Ruhr-University Bochum, Germany, Chair for Embedded Security. All Rights reserved.
// Copyright (c) 2019 Marc Fyrbiak, Sebastian Wallat, Max Hoffmann ("ORIGINAL AUTHORS"). All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
... |
/*
* This file is part of the Simutrans-Extended project under the Artistic License.
* (see LICENSE.txt)
*/
#ifndef GUI_HALT_INFO_H
#define GUI_HALT_INFO_H
#include "gui_frame.h"
#include "components/gui_label.h"
#include "components/gui_scrollpane.h"
#include "components/gui_textarea.h"
#include "components/gui_... |
/******************************************************************************
*
* Copyright (C) 2009 - 2015 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... |
#include <stdio.h>
int main() {
int a[20],freq[20],i,j,n=10,count;
for(i=0;i<n;i++) scanf("%d",&a[i]);
for(i=0;i<n;i++) {
count=1;
for(j=i+1;j<n;j++) {
if(a[i]==a[j]) {
count++;
freq[j]=0;
}
}
if(freq[i]!=0) a[i]=count;
}
for(i=0;i<n;i++) {
if(freq[i]!=0) {
printf("%d occurs %d times\n",a[i],freq[i... |
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
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... |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlowcase.c :+: :+: :+: ... |
#include <std.h>
#include "/d/common/common.h"
#include "../inherit/keep.h"
inherit CVAULT;
int FOUND;
void create() {
set_monsters(({MONS+"xvart"}),({1}));
::create();
set_repop(40);
set_terrain(STONE_BUILDING);
set_travel(PAVED_ROAD);
set_property("indoors",1);
set_property("light",1);
set_n... |
#include <stdio.h>
#include <dir.h>
#include <string.h>
typedef struct {
char Name[9];
char Ext[4];
char Attribute;
unsigned int Date;
unsigned int Time;
unsigned long Size;
int Tag;
} FileStruc;
int ScdirDone;
FileStruc *XScanDir( char *Mask, int Type );
FileStruc *ScanDir( char *Mask, int Ty... |
// XTPResize.h: interface for the CXTPResize class.
//
// This file is a part of the XTREME CONTROLS MFC class library.
// (c)1998-2011 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRI... |
/*
* Copyright 2013 Advanced Micro Devices, 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 Software without restriction, including
* without limitation the rights... |
/*
* The content of this file is licensed. You may obtain a copy of
* the license at https://github.com/thsmi/EmbeddedFileSystems/ or
* request it via email from the author.
*
* Do not remove or change this comment.
*
* The initial author of the code is:
* Thomas Schmid <schmid-thomas@gmx.net>
*/
#include "... |
/*
* ov5640_config.c
*
* Created on: 2016妤犵儑鎷�10闁哄牞鎷�23闁哄喛鎷�
* Author: Administrator
*/
/*
* ov7725_config.c
*
* Created on: 2016妤犵儑鎷�10闁哄牞鎷�22闁哄喛鎷�
* Author: Administrator
*/
#include"sleep.h"
#include"i2c_ctr.h"
#include "ov5640_config.h"
void ov5640_init_rgbraw(void)
{
}
void ov5640_init_... |
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Common values for the Poly1305 algorithm
*/
#ifndef _CRYPTO_POLY1305_H
#define _CRYPTO_POLY1305_H
#include <linux/types.h>
#include <linux/crypto.h>
#define POLY1305_BLOCK_SIZE 16
#define POLY1305_KEY_SIZE 32
#define POLY1305_DIGEST_SIZE 16
struct poly1305_desc_ctx {
/... |
/* $Revision: 6810 $ on $Date:: 2008-10-29 14:31:37 +0000 #$ */
/*------------------------------------------------------------------------
*
* VG extensions Reference Implementation
* -------------------------------------
*
* Copyright (c) 2008 The Khronos Group Inc.
*
* Permission is hereby granted, free of ch... |
// ***************************************************************
// Copyright (c) 2022 Jittor. All Rights Reserved.
// Maintainers: Dun Liang <randonlang@gmail.com>.
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
// ******************... |
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\... |
/* $Id$ */
/*
* This file is part of OpenTTD.
* OpenTTD 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, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without... |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* 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... |
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <React/RCTViewManager.h>
@interface RCTImageViewManager : RCTViewManager
@end |
// Copyright Giuseppe Campana (giu.campana@gmail.com) 2016-2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#include <density/detail/function_runtime_type.h>
#include <density/lf_... |
#pragma once
#if defined(__linux__)
// Linux系统
#include <limits.h>
#elif defined(_WIN32)
// Windows系统
#define PATH_MAX 1024
#endif
#include <string>
namespace coord {
bool IsAbsolutePath(const char* path);
std::string PathJoin(std::string p1, std::string p2);
} |
/**
* @file sntp_qrtc.h
* @brief SNTP QRTC time syncronisation.
*
* Copyright (c) 2021 Laird Connectivity
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __SNTP_QRTC_H__
#define __SNTP_QRTC_H__
#ifdef __cplusplus
extern "C" {
#endif
/**************************************************************************... |
/*
* Copyright (c) 2020 Bouffalolab.
*
* This file is part of
* *** Bouffalolab Software Dev Kit ***
* (see www.bouffalolab.com).
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions ... |
#ifndef OPENTISSUE_CORE_CONTAINERS_MESH_TRIMESH_TRIMESH_MESH_H
#define OPENTISSUE_CORE_CONTAINERS_MESH_TRIMESH_TRIMESH_MESH_H
//
// OpenTissue Template Library
// - A generic toolbox for physics-based modeling and simulation.
// Copyright (C) 2008 Department of Computer Science, University of Copenhagen.
//
// OTTL is ... |
/*
* Copyright (C) 2015 Freescale Semiconductor, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*/
#ifndef __DT_BINDINGS_CLOCK_IMX6UL_H
#define __DT_BINDINGS_CLOCK_IM... |
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <F... |
//
// UIBarButtonItem+JLBarbutton.h
// 网易彩票
//
// Created by long108 on 15/3/3.
// Copyright (c) 2015年 long108. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIBarButtonItem (JLBarbutton)
+ (instancetype)barButtonItemWithNormalImage:(NSString *)name SelectedImage:(NSString *)Sname AndTittle:(NSString... |
/*Demonstrates variables and constants */
#include <stdio.h>
/*Define a constant to convert a number of laps to miles */
#define LAPS_PER_MILE 4
/*Define a constant for the current year*/
const int CURRENT_YEAR=2021;
/*Declare the needed variables*/
float miles_covered;
int laps_run, year_of_birth, current_age;
int mai... |
#include <stdio.h>
int main() {
int i;
for (i = 1000; i < 9999; i++)
{
if (i == (((i/100)+(i%100))*((i/100)+(i%100))))
{
printf("%d: %d+%d=%d -> %d*%d=%d \n",i,i/100,i%100,(i/100)+(i%100),(i/100)+(i%100), (i/100)+(i%100),i);
}
}
} |
#pragma once
#include "SnobotSim/ExportHelper.h"
namespace SnobotSim
{
EXPORT_ void InitializeSolenoidCallbacks();
EXPORT_ void ResetSolenoidCallbacks();
} // namespace SnobotSim |
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include "documentaccessornode.h"
namespace search {
namespace expression {
class GetYMUMChecksumFunctionNode : public DocumentAccessorNode
{
public:
DECLARE_NBO_SERIALIZE;
void... |
#ifndef _DIRECT_COLLECTOR_H_
#define _DIRECT_COLLECTOR_H_
//ActionWatcher 只要ActionQueue不为空且有空余worker就提交
//ActionQueue 所有要执行的action
#include <pthread.h>
#include "request_private.h"
#include "action.h"
#include "ilist.h"
#include "worker_pool_private.h"
typedef struct _DirectCollector {
dlist_head actionsToDo;
... |
// SPDX-License-Identifier: GPL-2.0
#include <linux/bpf.h>
#include <linux/version.h>
#include <bpf/bpf_helpers.h>
#include "netcnt_common.h"
#define MAX_BPS (3 * 1024 * 1024)
#define REFRESH_TIME_NS 100000000
#define NS_PER_SEC 1000000000
struct {
__uint(type, BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE);
__type(key, str... |
/* { dg-do run { target { bmi2 && { ! ia32 } } } } */
/* { dg-options "-mbmi2 -O2" } */
#include <x86intrin.h>
#include "bmi2-check.h"
__attribute__((noinline))
unsigned long long
calc_pdep_u64 (unsigned long long a, unsigned long long mask)
{
unsigned long long res = 0;
unsigned long long i, k = 0;
for (i = 0... |
/*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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
... |
/*
* $projectname$.c
*
* Created: $date$
* Author : $user$
*/
#include "sam.h"
int main(void)
{
/* Initialize the SAM system */
SystemInit();
/* Replace with your application code */
while (1)
{
}
} |
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double Pods_MADServiceVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_MADServiceVersionString[]; |
/*******************************************************************************
* Copyright (c) 2008-2015 The Khronos Group Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and/or associated documentation files (the
* "Materials"), to deal in the Materials w... |
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "WXPBGeneratedMessage.h"
@class NSString;
@interface IBeaconPageInfo : WXPBGeneratedMessage {
}
@property(retain, nonatomic) NSString* jumpurl;
@property(ret... |
/**
********************************************************************************
\file sn/statehandler.h
\brief This module handles the current SN state
*******************************************************************************/
/*--------------------------------------------------------------------------... |
// nnet0/nnet-gru-streams.h
// Copyright 2015 xutao
// See ../../COPYING for clarification regarding multiple authors
//
// 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.... |
#include "serf.h"
#include <stdio.h>
int main() {
int major, minor, patch;
serf_lib_version(&major, &minor, &patch);
printf("serf version %d.%d.%d\n", major, minor, patch);
return 0;
} |
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_
#define XFA_FXFA_PARSER_CXFA_WIDGET... |
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <stdlib.h>
#define MAX_CLUSTER_SIZE 100
using namespace std;
//frame for clustering and points is rectangle
//[-50,-50], [50,50], [-50,50], [50,-50]
//5 clusters
//define the point struct and cluster struct
typede... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "MMObject.h"
#import "BannerToastExt.h"
#import "IHeadImageExt.h"
#import "MMKernelExt.h"
@class MFBannerBtn, NSString;
@interface MFPushBannerLogic : MMObject <BannerToa... |
// Copyright (c) 2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef CLG_CRYPTO_COMMON_H
#define CLG_CRYPTO_COMMON_H
#if defined(HAVE_CONFIG_H)
#include "collegicoin-config.h"
#endif
#inclu... |
/*
BLIS
An object-based framework for developing high-performance BLAS-like
libraries.
Copyright (C) 2014, The University of Texas at Austin
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redist... |
/*****************************************************************************
* Project: RooFit *
* *
* This code was autogenerated by RooClassFactory *
*... |
#include <stdio.h>
int main(void){
char b = 'a' + 1;
printf("%c\n", b);
char hoge[] = "hoge";
printf("%s\n", hoge);
char fuga[21];
strcpy(fuga, hoge);
printf("%s\n", fuga);
char piyo[256] = "piyo";
strcat(piyo, fuga);
printf("%s\n", piyo);
} |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Developer tools consist of the following parts:
//
// DevToolsAgent lives in the renderer of an inspected page and provides access
// to the pages ... |
// Copy this file to credentials.h
const char* THINGSPEAK_KEY = "XXXXXXXXXXXXXXXX"; |
// Verilated -*- C++ -*-
// DESCRIPTION: Verilator output: Symbol table internal header
//
// Internal details; most calling programs do not need this header
#ifndef _VTLSPI__Syms_H_
#define _VTLSPI__Syms_H_
#include "verilated_heavy.h"
// INCLUDE MODULE CLASSES
#include "VTLSPI.h"
// SYMS CLASS
class VTLSPI__Syms ... |
//
// Copyright (c) Leonid Seniukov. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
//
#ifndef GDR_ESTIMATORROBUSTLORANSAC_H
#define GDR_ESTIMATORROBUSTLORANSAC_H
#include "EstimatorRelativePoseRobust.h"
#include "Estimator3Points.h"
#include "EstimatorNPoint... |
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
#ifndef __TX_LIVE_SDK_TYPE_DEF_H__
#define __TX_LIVE_SDK_TYPE_DEF_H__
#include "TXLiveSDKEventDef.h"
#import <Foundation/Foundation.h>
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
typedef UIView TXView;
typedef UIImage TXImage;
typedef UIEdgeInsets TXEdgeInsets;
#elif TARGET_OS_MAC
#import <AppKit/AppKit.h>
typedef N... |
/*
* Copyright 2010-2017 JetBrains s.r.o.
*
* 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 agre... |
//
// PBPhotoAlbumWithActivityFeedTabBar.h
// PBPodUIStreamDetails
//
// Created by Michael Liptuga on 11/23/18.
//
#import <UIKit/UIKit.h>
#import "PBTabBarButton.h"
NS_ASSUME_NONNULL_BEGIN
@class PBPhotoAlbumWithActivityFeedTabBar;
@protocol PBPhotoAlbumWithActivityFeedTabBarDelegate <NSObject>
@optional
- (... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:32:06 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/Frameworks/LinkPresentation.... |
/* $Id$ */
/* Copyright (c) 2019 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS uKernel */
#include <sys/time.h>
#include <kernel/drivers/clock.h>
/* public */
/* functions */
/* gettimeofday */
int gettimeofday(struct timeval * tv, void * null)
{
ukClock * clock;
time_t t;
if(clock_... |
#include "../ravenna_defs.h"
// -------------------------------------------------------------------------
// This routine uses the IRQ to force an SPI read/write cycle at a rate of
// 16MHz. This works in conjunction with a Digilent PMOD MIC3 module,
// which emits 12 bit data in 2-byte transfers, read-only. The IRQ... |
/*
* File: eci_interface.h
*
* Code generated for Simulink model 'unitTestModel'.
*
* Model version : 1.18
* Simulink Coder version : 9.0 (R2018b) 24-May-2018
* C/C++ source code generated on : Thu Sep 27 22:02:27 2018
*
* Target selection: cfs_ert.tlc
* Embedded hardware selection: I... |
/* Copyright (c) 2010-2019, Delft University of Technology
* All rigths reserved
*
* This file is part of the Tudat. Redistribution and use in source and
* binary forms, with or without modification, are permitted exclusively
* under the terms of the Modified BSD license. You should have received
*... |
#pragma once
#define RHO_SETTING_BULKSYNC_STATE "bulksync_state" |
/* $OpenBSD: softfloat.h,v 1.2 2004/02/01 05:40:52 drahn Exp $ */
/* $NetBSD: softfloat.h,v 1.6 2002/05/12 13:12:46 bjh21 Exp $ */
/* This is a derivative work. */
/*
===============================================================================
This C header file is part of the SoftFloat IEC/IEEE Floating-point
Ar... |
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not... |
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright noti... |
/* Copyright (c) 2018, Mellanox Technologies All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source... |
#ifndef DASH__HALO_HALOMEMORY_H
#define DASH__HALO_HALOMEMORY_H
#include <dash/halo/Types.h>
#include <dash/halo/Region.h>
#include <dash/halo/Halo.h>
#include <dash/Array.h>
namespace dash {
namespace halo {
using namespace internal;
/**
* Mangages the memory for all halo regions provided by the given
* \ref Ha... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, June 7, 2020 at 11:17:56 AM Mountain Standard Time
* Operating System: Version 13.4.5 (Build 17L562)
* Image Source: /System/Library/PrivateFrameworks/Navigation.framework/Navigation
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias... |
//=================================================================================================
/*!
// \file blaze/math/adaptors/strictlylowermatrix/StrictlyLowerProxy.h
// \brief Header file for the StrictlyLowerProxy class
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// This file is ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.