text
stringlengths
9
948k
#include <stddef.h> #include <stdlib.h> #include <string.h> #include "split.h" char **charsplit(char *input, char token) { char *str = input; size_t len = strlen(str); char *buffer = malloc(len + 1); memcpy(buffer, input, len); buffer[len] = 0; // Add a null terminator, just to be sure. // P...
/** * \file * * Copyright (c) 2012-2018 Microchip Technology Inc. and its subsidiaries. * * \asf_license_start * * \page License * * Subject to your compliance with these terms, you may use Microchip * software and any derivatives exclusively with Microchip products. * It is your responsibility to comply wit...
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NR-RRC-Definitions" * found in "fixed_grammar.asn" * `asn1c -gen-PER -fcompound-names -findirect-choice -no-gen-example` */ #ifndef _NR_RS_Type_H_ #define _NR_RS_Type_H_ #include "asn_application.h" /* Including external dependenc...
/** * Copyright 2020 Huawei Technologies Co., Ltd * * 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...
/** ****************************************************************************** * @file USART/USART_Printf/system_stm32f4xx.c * @author MCD Application Team * @version V1.8.0 * @date 04-November-2016 * @brief CMSIS Cortex-M4 Device Peripheral Access Layer System Source File. * This fi...
// MIT License // // Copyright (c) 2019 椎名深雪 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merg...
#pragma once #include "_colorObject_.h" class CColorObject : public _CColorObject_ { public: CColorObject(); virtual ~CColorObject(); };
// SPDX-License-Identifier: GPL-2.0 /* * ST EHCI driver * * Copyright (C) 2014 STMicroelectronics – All Rights Reserved * * Author: Peter Griffin <peter.griffin@linaro.org> * * Derived from ehci-platform.c */ #include <linux/clk.h> #include <linux/dma-mapping.h> #include <linux/err.h> #include <linux/kernel.h>...
/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Copyright (C) 2013 Ivan Komissarov. ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtWidgets module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL...
/*####COPYRIGHTBEGIN#### ------------------------------------------- Copyright (C) 2007 Steve Karg <skarg@users.sourceforge.net> Updated by Nikola Jelic 2011 <nikola.jelic@euroicc.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as pub...
#include <win/platform.h> #include <internal.h> #include <utils.h> #include <mimas/mimas.h> #include <stdlib.h> #include <string.h> #include <shlobj_core.h> #include <shlwapi.h> #include <shobjidl.h> #include <combaseapi.h> static IShellItem* create_shell_item_from_path(char const* path) { if (!path) { return ...
#pragma once #include "Pargon/Serialization/BlueprintReader.h" #include "Pargon/Serialization/BlueprintWriter.h" #include "Pargon/Serialization/BufferReader.h" #include "Pargon/Serialization/BufferWriter.h" #include <functional> #include <string_view> #include <utility> #include <variant> namespace Pargon { class G...
/* * 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 ...
// Copyright 2014 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 CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_BUBBLE_H_ #define CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_BUBBLE_H_ class Browser; // Create a sessi...
// This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface // (the "Fluent UI") and is provided only as referential material to supplement the // Microsoft Foundation Classes Reference and related electronic documentation // included with the MFC C++ library software. // License ...
extern int getenv(const char *name); extern int foo(); extern int bar(); int main() { int taint = bar() && !getenv("hi") && foo(); int a = taint; return 0; }
//------------------------------------------------------------------------- /* Copyright (C) 2005 Jonathon Fowler <jf@jonof.id.au> This file is part of JFShadowWarrior Shadow Warrior is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the F...
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* test_ft_memdel.c :+: :+: :+: ...
// // Copyright 2013 BiasedBit // // 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 wri...
/*! * @author Yash Bansod * @date 29th September 2017 * * @brief Header containing the global variables used in the program * @file golbalVariables.h */ /* ----------------------- Include Files --------------------- */ #include <stdint.h> // Library ...
/* * Copyright (C) 2011 by Vladimir Zapolskiy <vz@mleia.com> * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <dm.h> #include <ns16550.h> #include <dm/platform_data/lpc32xx_hsuart.h> #include <asm/arch/clk.h> #include <asm/arch/uart.h> #include <asm/arch/mux.h> #include <asm/io.h> static str...
/* * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
/* * Copyright © 2000 SuSE, Inc. * Copyright © 2007 Red Hat, Inc. * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice an...
/* ** Copyright (C) 2001-2020 by Carnegie Mellon University. ** ** @OPENSOURCE_LICENSE_START@ ** See license information in ../../LICENSE.txt ** @OPENSOURCE_LICENSE_END@ */ /* File: hashlib.c: implements core hash library. */ #include <silk/silk.h> RCSIDENT("$SiLK: hashlib.c ef14e54179be 2020-04-14 21:57:45Z mthomas...
/*ckwg +29 * Copyright 2018 by Kitware, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of...
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "ethernet.h" #include "../network/ipv4.h" #include "../../xexit.h" #include <arpa/inet.h> static const char *get_protocol_name(uint16_t protocol) { protocol = htons(protocol); if (protocol == ETH_P_IP) return "IPV4"; else if (protocol == ETH...
/** ****************************************************************************** * @file tim.h * @brief This file contains all the function prototypes for * the tim.c file ****************************************************************************** * @attention * * <h2><center>&copy; C...
// Copyright (c) 2014-2017 The Dash Core developers // Copyright (c) 2018 The Scribe Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef FLAT_DATABASE_H #define FLAT_DATABASE_H #include "chainparams.h" #...
/****************************************************************************** * * Copyright (C) 2018 The Android Open Source Project * * 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: ...
#include "../../src/dbus/qdbusabstractinterface.h"
#ifndef GUARD_DY_META_TYPE_EDYWIDGETTYPES_H #define GUARD_DY_META_TYPE_EDYWIDGETTYPES_H /// /// MIT License /// Copyright (c) 2018-2019 Jongmin Yun /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS ...
/* * drivers/i2c/busses/i2c-ibm_iic.c * * Support for the IIC peripheral on IBM PPC 4xx * * Copyright (c) 2003, 2004 Zultys Technologies. * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> * * Copyright (c) 2008 PIKA Technologies * Sean MacLennan <smaclennan@pikatech.com> * * Based on orig...
#ifndef _LinuxGl_LinuxGl_h_ #define _LinuxGl_LinuxGl_h_ #define GUI_LINUXGL #include <CoreGl/CoreGl.h> #include <LinuxGl/stdids.h> NAMESPACE_UPP extern bool glEndSession; extern XDisplay* dpy; extern GLXContext glc; extern XWindow root; extern XWindow win; extern XVisualInfo* vi; extern int Xeventtime; extern int ...
/* * Vortex OpenSplice * * This software and documentation are Copyright 2006 to TO_YEAR ADLINK * Technology Limited, its affiliated companies and licensors. All rights * reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file e...
/* stb_image - v2.23 - public domain image loader - http://nothings.org/stb no warranty implied; use at your own risk Do this: #define STB_IMAGE_IMPLEMENTATION before you include this file in *one* C or C++ file to create the implementation. // i.e. it should look like...
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2015 Google, Inc */ #include <common.h> #include <dm.h> #include <mmc.h> #include <part.h> #include <dm/test.h> #include <test/test.h> #include <test/ut.h> /* * Basic test of the mmc uclass. We could expand this by implementing an MMC * stack for sandbox, or...
/****************************************************************************** * @file usbd_audio.c * @brief NuMicro series USBD audio sample file * * @copyright SPDX-License-Identifier: Apache-2.0 * @copyright Copyright (C) 2020 Nuvoton Technology Corp. All rights reserved. ******************************...
/** * This header file is written store morse code for (A-Z), (a-z), (0-9) and WHITESPACE. * Author: Tushar Chaurasia (https://github.com/Dark-CodeX/) * Commit to this repository at https://github.com/Dark-CodeX/SafeString.git * You can use this header file. Do not modify it locally, instead commit it on https://www.gi...
/*! \file bcmpmac_field.c * * BCM PortMAC register field operations for little endian word order. */ /* * Copyright: (c) 2018 Broadcom. All Rights Reserved. "Broadcom" refers to * Broadcom Limited and/or its subsidiaries. * * Broadcom Switch Software License * * This license governs the use of the accompany...
/** * ppjC je programski jezik podskup jezika C definiran u dokumentu * https://github.com/fer-ppj/ppj-labosi/raw/master/upute/ppj-labos-upute.pdf * * ova skripta poziva ppjC kompajler (za sada samo analizator) pritiskom * na tipku [Ctrl+S], [Shift+Enter] ili [Alt+3] i prikazuje rezultat analize. * * ne garantir...
// Copyright (c) 2021 PaddlePaddle 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...
// SPDX-License-Identifier: GPL-2.0-only /* * linux/drivers/video/vt8500lcdfb.c * * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> * * Based on skeletonfb.c and pxafb.c */ #include <linux/delay.h> #include <linux/dma-mapping.h> #include <linux/errno.h> #include <linux/fb.h> #include <linux/init.h> #incl...
/* vi:set ts=8 sts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. * See README.txt for an overview of the Vim source code. */ /* * farsi.c: functions for Farsi language * ...
/*******************************************************************\ Module: Symbolic Execution Author: Daniel Kroening, kroening@kroening.com \*******************************************************************/ /// \file /// Symbolic Execution #ifndef CPROVER_GOTO_SYMEX_GOTO_SYMEX_H #define CPROVER_GOTO_SYMEX_G...
/* * Copyright (c) 2020 Samsung Electronics Co., Ltd. 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...
/*++ Copyright (c) 1991-1993 Microsoft Corporation Module Name: apiparam.h Abstract: Declaration of structures representing parameters to the API calls. Each structure contains all parameters for a corresponding call, except for any server name (PSZ Server) parameters. Author: Shanku Niyogi ...
/* * Copyright Red Hat, Inc., and individual contributors * * 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 ap...
#ifdef KERNEL #include <kernel.h> #else #include <runtime.h> #endif //#define ID_HEAP_DEBUG #ifdef ID_HEAP_DEBUG #define id_debug(x, ...) do {rprintf("%s: " x, __func__, ##__VA_ARGS__);} while(0) #else #define id_debug(x, ...) #endif typedef struct id_range { struct rmnode n; /* range in pages */ b...
/* * Copyright (c) 2021, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publis...
/* * Copyright (c) 2009-2016, Albertas Vyšniauskas * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this list of...
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++ // NOTE: Do not modify the contents of this file. If this class is regenerated by // Microsoft Visual C++, your modifications will be overwritten. ///////////////////////////////////////////////////////////////////////////// // CTeeSha...
#ifdef HAVE_CONFIG_H #include "../../ext_config.h" #endif #include <php.h> #include "../../php_ext.h" #include "../../ext.h" #include <Zend/zend_operators.h> #include <Zend/zend_exceptions.h> #include <Zend/zend_interfaces.h> #include "kernel/main.h" #include "kernel/memory.h" #include "kernel/fcall.h" /** * * @...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/univ/gauge.h // Purpose: wxUniversal wxGauge declaration // Author: Vadim Zeitlin // Modified by: // Created: 20.02.01 // RCS-ID: $Id: gauge.h 35698 2005-09-25 20:49:40Z MW $ // Copyright: (c) 2001 Sci...
#include <stdio.h> double square(double x){ return x * x; } int main() { double x = square(3.14); printf("%lf", x); return 0; }
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.30 08/16/14 */ /* */ /* ...
// This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface // (the "Fluent UI") and is provided only as referential material to supplement the // Microsoft Foundation Classes Reference and related electronic documentation // included with the MFC C++ library software. // License ...
// Copyright (C) 2015-2020 Virgil Security, Inc. // // 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 // ...
/* * NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer" * * Copyright (c) 2019 United States Government as represented by * the Administrator of the National Aeronautics and Space Administration. * All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the...
#if defined(PEGASUS_OS_HPUX) # include "UNIX_QueueForPrintServiceDeps_HPUX.h" #elif defined(PEGASUS_OS_LINUX) # include "UNIX_QueueForPrintServiceDeps_LINUX.h" #elif defined(PEGASUS_OS_DARWIN) # include "UNIX_QueueForPrintServiceDeps_DARWIN.h" #elif defined(PEGASUS_OS_AIX) # include "UNIX_QueueForPrintServiceDeps_AIX.h...
/* chetrs.f -- translated by f2c (version 20061008). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of...
// Copyright 2020 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. #ifndef ATTESTATION_SERVER_ATTESTATION_FLOW_H_ #define ATTESTATION_SERVER_ATTESTATION_FLOW_H_ #include <optional> #include <string> #include <utility>...
/** * eZmax API Definition (Full) * This API expose all the functionnalities for the eZmax and eZsign applications. * * The version of the OpenAPI document: 1.1.7 * Contact: support-api@ezmax.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-gener...
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <pthread.h> #include <sys/wait.h> #include <sys/types.h> #include "linux_input.h" #include "linux_input_event_util.h" #define DEBUG 0 #define VERSION 1 #define ERROR_DATA_FORMAT 1 #define ERROR_IO 2 #define ERROR_UNSUPPORTED_VERSION 3 #define ...
/* NSSortDescriptor.h Foundation Copyright (c) 2002-2018, Apple Inc. All rights reserved. */ #import <Foundation/NSArray.h> #import <Foundation/NSSet.h> #import <Foundation/NSOrderedSet.h> NS_ASSUME_NONNULL_BEGIN @interface NSSortDescriptor : NSObject <NSSecureCoding, NSCopying> { @private NSUInteger _sortDes...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_64b.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_CWE806.label.xml Template File: sources-sink-64b.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Initialize data as...
/* * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
/* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises. All rights reserved. This file is part of Aladdin Ghostscript. Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any partic...
/* * 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 Insight Software Consortium * * 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 * * h...
#ifndef __DIGITAL_DECODER_H__ #define __DIGITAL_DECODER_H__ #include <stdint.h> #include <map> class DigitalDecoder { public: DigitalDecoder() = default; void handleData(char data); void setRxGood(bool state); protected: bool isPayloadValid(uint64_t payload, uint64_t polynomial=0) const; ...
/* ----------------------------------------------------------------- * Programmer(s): Scott D. Cohen, Alan C. Hindmarsh, Radu Serban, * and Aaron Collier @ LLNL * ----------------------------------------------------------------- * SUNDIALS Copyright Start * Copyright (c) 2002-2019, Lawrence Livermor...
/**************************************************************************** * arch/arm/src/kinetis/kinetis_start.c * * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <gnutt@nuttx.org> * * Redistribution and use in source and binary forms, with or without * modification, a...
#pragma once #include "Common/Types.h" #include "Common/Helpers.h" namespace CT_COMMON_NAMESPACE { /** * @brief Template interface for zero arguments factories returning unique instances of the given TypeOfFactory. */ template<typename TypeOfFactory> class IUniqueFactory { public: ...
#ifndef CONVOLUTIONALIMAGEFILTER_H #define CONVOLUTIONALIMAGEFILTER_H #include "Matrix.h" #include <QImage> class ConvolutionalImageFilter { public: ConvolutionalImageFilter(); QImage apply(const QImage& image); Matrix& convolutionMatrix(); bool setConvolutionMatrix(const Matrix& matrix); void setShouldApply...
// WARNING: Please don't edit this file. It was generated by Python/WinRT v1.0.0-beta.4 #pragma once #include "pybase.h" #if __has_include("py.Windows.Devices.Enumeration.h") #include "py.Windows.Devices.Enumeration.h" #endif #if __has_include("py.Windows.Foundation.h") #include "py.Windows.Foundation.h" #endif #i...
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-2.0-xr-w32-bld/build/widget/public/nsIPrintSettingsService.idl */ #ifndef __gen_nsIPrintSettingsService_h__ #define __gen_nsIPrintSettingsService_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't wa...
// // NSMutableAttributedString+AttributedStringConfig.h // AttributedString // // Created by LeiLuRong on 2017/6/27. // Copyright © 2017年 TechCode. All rights reserved. // #import <Foundation/Foundation.h> #import "AttributedStringConfig.h" @interface NSMutableAttributedString (AttributedStringConfig) /** 添加富文...
/* Copyright (c) 2018 Brian Lough. All right reserved. UniversalTelegramBot - Library to create your own Telegram Bot using ESP8266 or ESP32 on Arduino IDE. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Softwar...
/* mbed Microcontroller Library * Copyright (c) 2020 ARM Limited * SPDX-License-Identifier: Apache-2.0 */ /****************************************************************************************************//** * @file LPC15xx.h * * @brief CMSIS Cortex-M3 Peripheral Access Layer Header File for * ...
#ifndef GU_SEQ_H_ #define GU_SEQ_H_ #include <gu/mem.h> typedef struct { size_t len; uint8_t data[0]; } GuSeq; typedef struct { GuSeq* seq; size_t elem_size; size_t avail_len; GuFinalizer fin; } GuBuf; GuSeq* gu_empty_seq(); GuSeq* gu_make_seq(size_t elem_size, size_t len, GuPool* pool); #define gu_new_seq(...
// Author: Jonas Byström // Copyright (c) Pixel Doctrine #pragma once #include "../../uilepra/include/uidisplaymanager.h" #include "uirenderer.h" namespace uitbc { class RendererFactory { public: static Renderer* Create(uilepra::DisplayManager::ContextType type, Canvas* screen); }; }
#ifndef SERVER_H_ #define SERVER_H_ void coap_server(void const * argument); #endif
// // FullPracticeCell.h // cepin // // Created by dujincai on 15-4-20. // Copyright (c) 2015年 talebase. All rights reserved. // #import <UIKit/UIKit.h> #import "BaseFullCell.h" #import "ResumeNameModel.h" @interface FullPracticeCell : BaseFullCell @property(nonatomic,strong)UIView *viewcell; @property(nonatomic,s...
#include "stdinc.h" #include "class.h" #include "hook.h" #include "client.h" #include "hash.h" #include "common.h" #include "hash.h" #include "match.h" #include "ircd.h" #include "numeric.h" #include "s_serv.h" #include "s_conf.h" #include "s_newconf.h" #include "s_user.h" #include "send.h" #include "msg.h" #include "p...
/************************************************************************** * * File name: im2colstep.c * * Ron Rubinstein * Computer Science Department * Technion, Haifa 32000 Israel * ronrubin@cs * * Last Updated: 31.8.2009 * *************************************************************************/ #inc...
/************************************************************************** * * Copyright (c) 2002 - 2011 by Computer Architecture Department, * Universitat Politecnica de Catalunya. * All rights reserved. * * The contents of this file may not be disclosed to third parties, * copied or duplicated in any form, in...
/* * Copyright (c) 2017 Cisco and/or its affiliates. * 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 applicabl...
// --------------------------------------------------------------------------- // NewPing Library - v1.8a - 03/31/2017 // // AUTHOR/LICENSE: // Created by Tim Eckel - teckel@leethost.com // Copyright 2016 License: GNU GPL v3 http://www.gnu.org/licenses/gpl.html // // LINKS: // Project home: https://bitbucket.org/tecke...
/***************************************************************************** * * MODULE NAME : GETOPT.H * * COPYRIGHTS: * This module contains code made available by IBM * Corporation on an AS IS basis. Any one receiving the * module is considered to be licensed un...
#ifndef SICT_HELPER__ #define SICT_HELPER__ #include <iostream> using namespace std; namespace sict { #define MAX_ROUNDS 100 class Hero { char heroName[41]; int heroHealth; int attack; public: Hero(); Hero(const char heroName[41], int heroHealth, int attack); void set(); void operator-=(int attack); b...
style"gtkmenubar"{ xthickness=0 ythickness=1 GtkMenuBar::shadow-type=GTK_SHADOW_NONE GtkMenuBar::internal-padding=2 GtkMenuItem::horizontal-padding=0 bg[NORMAL]=@menubar bg[PRELIGHT]=@hilight bg[SELECTED]=@menubar bg[ACTIVE]=@menubar bg[INSENSITIVE]=@window fg[NORMAL]=@menubartext fg[PRELIGHT]=@hilighttext fg[SELECTED]...
/* * drivers/usb/sunxi_usb/udc/sunxi_udc_dma.h * (C) Copyright 2010-2015 * Allwinner Technology Co., Ltd. <www.allwinnertech.com> * javen, 2010-3-3, create this file * * udc dma ops. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License ...
// ################################################################################## // // UDMlib - Unstructured Data Management Library // // Copyright (C) 2012-2015 Institute of Industrial Science, The University of Tokyo. // All rights reserved. // // Copyright (c) 2015 Advanced Institute for Computational Science,...
/***********************************************************************************[SolverTypes.h] Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson Copyright (c) 2007-2010, Niklas Sorensson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation ...
// -*- C++ -*- //============================================================================= /** * @file os_tgmath.h * * type-generic macros * * $Id: os_tgmath.h 80826 2008-03-04 14:51:23Z wotte $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places inc...
// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * * Copyright (C) 1997-2016, International Business Machines * Corporation and others. All Rights Reserved. * ***********...
// Copyright (c) 2014-2018, The Cred Project // // 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 notice, this list of ...
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2009-2013 * * 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 ...
/*----------------------------------------------------------------------- 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 ...
/** @file IORT table parser Copyright (c) 2016 - 2020, ARM Limited. All rights reserved. SPDX-License-Identifier: BSD-2-Clause-Patent @par Reference(s): - IO Remapping Table, Platform Design Document, Revision D, March 2018 **/ #include <IndustryStandard/IoRemappingTable.h> #include <Library/PrintLib.h> ...