text stringlengths 4 6.14k |
|---|
//
// UCGroupPostRequest.h
// Cloudkit test
//
// Created by Yury Nechaev on 04.04.16.
// Copyright © 2016 Uploadcare. All rights reserved.
//
#import "UCAPIRequest.h"
/**
* Creates group with the provided file uuids.
* @see https://uploadcare.com/documentation/upload/#create-group
*/
@interface UCGroupPostR... |
/*BEGIN_LEGAL
Intel Open Source License
Copyright (c) 2002-2010 Intel Corporation. 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 noti... |
#import <UIKit/UIKit.h>
@interface LoginedViewController : UIViewController
@end
|
// slang-source-stream.h
#ifndef SLANG_EMIT_SOURCE_WRITER_H
#define SLANG_EMIT_SOURCE_WRITER_H
#include "../core/slang-basic.h"
#include "slang-compiler.h"
namespace Slang
{
/* Class that encapsulates a stream of source. Facilities provided...
* Management of the buffer that holds the source content as it is const... |
#include "pge_collision.h"
#define min(a, b) ((a) < (b)) ? (a) : (b)
#define max(a, b) ((a) > (b)) ? (a) : (b)
// Uses separated axis theorem where rectangles are aligned with the x and y axis
bool pge_collision_rectangle_rectangle(GRect *rect_a, GRect *rect_b) {
struct overlap_rect{
GPoint ul; // upper-lef... |
/*
LUFA Library
Copyright (C) Dean Camera, 2013.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation ... |
int main() {
return 1 / 0;
}
|
/*
The Keccak sponge function, designed by Guido Bertoni, Joan Daemen,
Michaël Peeters and Gilles Van Assche. For more information, feedback or
questions, please refer to our website: http://keccak.noekeon.org/
Implementation by the designers,
hereby denoted as "the implementer".
To the extent possible under law, the... |
/*
* Copyright (C) 2007, 2008, 2013, 2015 Apple 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
* notice, th... |
/*******************************************************************************
* File Name: SPI_1_ss_s.h
* Version 2.10
*
* Description:
* This file contains the Alias definitions for Per-Pin APIs in cypins.h.
* Information on using these APIs can be found in the System Reference Guide.
*
* Note:
*
*************... |
#ifndef SD_MISC_H
#define SD_MISC_H
#ifdef __KERNEL__
#include <linux/bitops.h>
#include <linux/mmc/host.h>
#endif
struct msdc_ioctl{
int opcode;
int host_num;
int iswrite;
int trans_type;
unsigned int total_size;
unsigned int address;
unsigned int* buffer;
int cmd_pu_driving;
int cmd_pd_driving;
... |
/* msg_res_cmd.c
* WiMax MAC Management RES-CMD Message decoder
*
* Copyright (c) 2007 by Intel Corporation.
*
* Author: Lu Pan <lu.pan@intel.com>
*
* $Id$
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1999 Gerald Combs
*
* This program is free software; you ... |
/* crypto/evp/m_mdc2.c */
/* 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-... |
#include "cg_local.h"
void qlua_HandleMessage() {
if(GetClientLuaState() != NULL) {
int data = trap_N_ReadByte();
qlua_gethook(GetClientLuaState(),"_HandleMessage");
lua_pushinteger(GetClientLuaState(),data);
qlua_pcall(GetClientLuaState(),1,0,qtrue);
}
}
int qlua_readbyte(lua_State *L) {
lua_p... |
/* Kernel module to match AH parameters. */
/* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
*
* 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.
*/
#define pr_fmt(fmt) ... |
/*
*********************************************************************************************************
* uC/GUI
* Universal graphic software for embedded applications
*
* (c) Copyright 2002, Micrium Inc., Weston, FL
* ... |
//
// SPCA506Driver.h
// macam
//
// Created by Harald on 11/14/07.
// Copyright 2007 HXR. All rights reserved.
//
#import <SPCA505Driver.h>
@interface SPCA506Driver : SPCA505Driver
{
}
@end
@interface SPCA506ADriver : SPCA506Driver
{
}
@end
|
#include "zebra.h"
#include "command.h"
#include "log.h"
#include "zclient.h"
struct zclient *zclient = NULL;
/* Zebra route add and delete treatment. */
int mplsadmd_zebra_read_ipv4 (int command, struct zclient *zclient, zebra_size_t length)
{
if (command == ZEBRA_IPV4_ROUTE_ADD)
zlog_info ("ADD");
else
... |
/*
* Copyright (C) 2013 Apple 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
* notice, this list of conditions a... |
/*
* Copyright (c) 2012, The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice a... |
/* linux/drivers/modem/modem.c
*
* Copyright (C) 2010 Google, Inc.
* Copyright (C) 2010 Samsung Electronics.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.... |
/*
* Copyright (c) 2002, Intel Corporation. All rights reserved.
* Created by: bing.wei.liu REMOVE-THIS AT intel DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
* Test that pthread_mutexattr_setproto... |
/*
* Musepack decoder
* Copyright (c) 2006 Konstantin Shishkov
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or ... |
/* $Id: main_mod.c 2394 2008-12-23 17:27:53Z bennylp $ */
/*
* Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
* Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as pu... |
/***************************************************************************
qgsxyzconnectiondialog.h
---------------------
begin : February 2017
copyright : (C) 2017 by Martin Dobias
email : wonder dot sk at gmail dot com
***********************************... |
//
// PhongMaterial.h
// TestApp
//
// Created by Juan Roberto Cabral Flores on 8/5/12.
// Copyright (c) 2012 Juan Roberto Cabral Flores. All rights reserved.
//
#ifndef __TestApp__PhongMaterial__
#define __TestApp__PhongMaterial__
#include <iostream>
#include <PlastilinaCore/Color.h>
#include <PlastilinaCore/Ma... |
#ifndef _DLCOUNT_H
#define _DLCOUNT_H
/* $Id: dlcount.h,v 1.1 2005/08/11 15:14:27 mbse Exp $ */
void dlcount(void);
#endif
|
/**
* @file
* Test code for mutt_list_insert_tail()
*
* @authors
* Copyright (C) 2019 Richard Russon <rich@flatcap.org>
*
* @copyright
* 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, e... |
#ifndef FSEMU_FADE_H_
#define FSEMU_FADE_H_
#include <stdint.h>
#include "fsemu-common.h"
#ifdef __cplusplus
extern "C" {
#endif
void fsemu_fade_init(void);
void fsemu_fade_update(void);
void fsemu_fade_set_color(uint32_t color);
#if 0
void fsemu_fade_force(bool force);
#endif
#ifdef FSEMU_INTERNAL
#define fsemu_... |
// Copyright: CC0
#include <stdio.h>
#include <math.h>
#include <glib.h>
#include <glib/gstdio.h>
#include "geotag_exif.h"
#include "vikcoord.h"
int main(int argc, char *argv[])
{
#if !GLIB_CHECK_VERSION(2,36,0)
g_type_init ();
#endif
int answer = 0;
if ( argv[1] ) {
struct LatLon ll = { 51.179489, -1.8262... |
#ifndef __IMX_CLK_H
#define __IMX_CLK_H
struct clk *clk_gate2(const char *name, const char *parent, void __iomem *reg,
u8 shift);
static inline struct clk *imx_clk_divider(const char *name, const char *parent,
void __iomem *reg, u8 shift, u8 width)
{
return clk_divider(name, parent, reg, shift, width, CLK_SET_RA... |
/*
*********************************************************************************************************
* uC/GUI
* Universal graphic software for embedded applications
*
* (c) Copyright 2002, Micrium Inc., Weston, FL
* ... |
/****************************************************************************
** $Id: qt/qlined.h 3.3.8 edited Jan 11 14:46 $
**
** Compatibility file - should only be included by legacy code.
** It #includes the file which obsoletes this one.
**
** Copyright (C) 1998-2007 Trolltech ASA. All rights reserved.
** T... |
/* SPDX-License-Identifier: GPL-2.0-only */
#include <assert.h>
#include <commonlib/bsd/bcd.h>
#include <console/console.h>
#include <delay.h>
#include <device/i2c_simple.h>
#include <rtc.h>
#include <soc/rk808.h>
#include <stdint.h>
#if CONFIG_PMIC_BUS < 0
#error "PMIC_BUS must be set in mainboard's Kconfig."
#endif... |
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. 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 copyr... |
#pragma once
#include "types.h"
#include "sh4_if.h"
#define r Sh4cntx.r
#define r_bank Sh4cntx.r_bank
#define gbr Sh4cntx.gbr
#define ssr Sh4cntx.ssr
#define spc Sh4cntx.spc
#define sgr Sh4cntx.sgr
#define dbr Sh4cntx.dbr
#define vbr Sh4cntx.vbr
#define mac Sh4cntx.mac
#define pr Sh4cntx.pr
#define fpul Sh4cntx.fpul
... |
#ifndef __lib_python_connections_h
#define __lib_python_connections_h
#include <libsig_comp.h>
#include <lib/python/python.h>
class PSignal
{
protected:
ePyObject m_list;
public:
PSignal();
~PSignal();
void callPython(SWIG_PYOBJECT(ePyObject) tuple);
#ifndef SWIG
PyObject *getSteal(bool clear=false);
#endif
Py... |
/***************************************************************************
* Copyright (C) 2009 by The qGo Project *
* *
* This file is part of qGo. *
* ... |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2018 Canonical Ltd.
*
* 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
... |
/*
*
* 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) any later version.
*
* This program is distributed in the hope that it will be ... |
/* Copyright (c) 2002-2011 by XMLVM.org
*
* Project Info: http://www.xmlvm.org
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your o... |
//
// DataSourceBase.h
//
#import <Foundation/Foundation.h>
#import "CellGenerator.h"
@interface DataSourceBase : NSObject <UITableViewDataSource, UICollectionViewDataSource>
@property (copy, nonatomic) NSString * identifier;
- (NSInteger)numberOfSections;
- (NSInteger)numberOfItemsInSection:(NSInteger)section;
- ... |
#pragma once
/*
* Copyright (C) 2005-2017 Team Kodi
* http://kodi.tv
*
* 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, or (at your option)
* any later vers... |
#include <kernel.h>
#include <kdata.h>
#include <printf.h>
#include <timer.h>
#include <blkdev.h>
#include <devide_sunrise.h>
#include <msx.h>
uint8_t ide_error;
uint16_t ide_base;
uint8_t *devide_buf;
struct msx_map sunrise_u, sunrise_k;
static void delay(void)
{
timer_t timeout;
timeout = set_timer_ms(25)... |
/*
* pci.c: GT64120 PCI support.
*
* Copyright (C) 2006, Wind River System Inc. Rongkai.Zhan <rongkai.zhan@windriver.com>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*/
#inclu... |
/*
* Copyright 2011, Blender Foundation.
*
* 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) any later version.
*
* This program is d... |
/*
* Atmel maXTouch Touchscreen driver
*
* Copyright (C) 2010 Samsung Electronics Co.Ltd
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
*
* 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 Foun... |
#include <stdio.h>
#include "seqlist.h"
int main()
{
int idx;
printf("seqlist_create...\n\n");
seqlist *list = seqlist_create(5);
int i = 0;
int j = 1;
int k = 2;
int x = 3;
int y = 4;
int z = 5;
unsigned int *addr_arr[] = {
&i, &j, &k, &x, &y, &z,
};
printf("seqlist_capacity = %d\n\n", seqlist_capaci... |
/* Get abbreviation code.
Copyright (C) 2003 Red Hat, Inc.
Written by Ulrich Drepper <drepper@redhat.com>, 2003.
This program is Open Source software; you can redistribute it and/or
modify it under the terms of the Open Software License version 1.0 as
published by the Open Source Initiative.
You sho... |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2014 Google Inc.
*
* 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; version 2 of the License.
*
* This program is distri... |
/* ****************************************************************************
This file is part of Lokalize
Copyright (C) 2007-2009 by Nick Shaforostoff <shafff@ukr.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published b... |
/*
* SYSCALL_DEFINE4(clock_nanosleep, const clockid_t, which_clock, int, flags,
const struct timespec __user *, rqtp,
struct timespec __user *, rmtp)
*
* On successfully sleeping for the requested interval, clock_nanosleep() returns 0.
* If the call is interrupted by a signal handler or encounters an error,
*... |
/**
* @file com_internal_s3/comcallback_instance.c
*
* @section desc File description
*
* @section copyright Copyright
*
* Trampoline Test Suite
*
* Trampoline Test Suite is copyright (c) IRCCyN 2005-2007
* Trampoline Test Suite is protected by the French intellectual property law.
*
* This program is free ... |
#define DOOP(ppname) PUTBACK; PL_op = ppname(aTHX); SPAGAIN
#define CCPP(s) OP * s(pTHX)
#define PP_LIST(g) do { \
dMARK; \
if (g != G_ARRAY) { \
if (++MARK <= SP) \
*MARK = *SP; \
else \
*MARK = &PL_sv_undef; \
SP = MARK; \
} \
} while (0)
#define MAYBE_TAINT_SASSIGN_SRC(sv)... |
/*
* File...........: linux/drivers/s390/block/dasd_genhd.c
* Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
* Horst Hummel <Horst.Hummel@de.ibm.com>
* Carsten Otte <Cotte@de.ibm.com>
* Martin Schwidefsky <schwidefsky@de.ibm.com>
* Bugreports.to..: <Linux390@de.ibm.com>
* (C) IBM ... |
/*
* include/linux/random.h
*
* Include file for the random number generator.
*/
#ifndef _LINUX_RANDOM_H
#define _LINUX_RANDOM_H
#include <linux/list.h>
#include <linux/once.h>
#include <uapi/linux/random.h>
struct random_ready_callback {
struct list_head list;
void (*func)(struct random_ready_callback *rdy);
... |
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#ifndef foosdresolvehfoo
#define foosdresolvehfoo
/***
This file is part of systemd.
Copyright 2005-2014 Lennart Poettering
systemd is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public Licens... |
/*
* Ekiga -- A VoIP and Video-Conferencing application
* Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
* 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 o... |
/*
* Copyright 2020 Canonical Ltd.
*
* 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.1 of the License, or (at your
* option) any later version.
*
* This program is distr... |
/*
* RTEMS Monitor partition support
*
* $Id: mon-part.c,v 1.7 2010/04/12 15:25:43 ralf Exp $
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include "monitor.h"
#include <rtems/rtems/attr.inl>
#include <stdio.h>
#include <string.h> /* memcpy() */
void
rtems_monitor_part_canonical(
... |
/*
* THIS FILE IS NOT IDENTICAL TO THE ORIGINAL
* FROM THE BZIP2 DISTRIBUTION.
*
* It has been modified, mainly to break the library
* into smaller pieces.
*
* Russ Cox
* rsc@plan9.bell-labs.com
* July 2000
*/
/*-------------------------------------------------------------*/
/*--- Library top-level functions... |
/* This file is part of the KDE project
Copyright (C) 2008 Dag Andersen <danders@get2net.dk>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or... |
/* ============================================================
*
* This file is a part of kipi-plugins project
* http://www.digikam.org
*
* Date : 2006-10-12
* Description : IPTC credits settings page.
*
* Copyright (C) 2006-2012 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* This program... |
/**
******************************************************************************
* @file USB_Host/FWupgrade_Standalone/Inc/command.h
* @author MCD Application Team
* @version V1.3.1
* @date 09-October-2015
* @brief Header file for command.c
*********************************************... |
/*
FOGSim, simulator for interconnection networks.
https://code.google.com/p/fogsim/
Copyright (C) 2014 University of Cantabria
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
... |
/*
* $Id$
*
* nonce-count (nc) tracking
*
* Copyright (C) 2008 iptelorg GmbH
*
* This file is part of ser, a free SIP server.
*
* ser 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... |
#include <linux/types.h>
#include <linux/ioctl.h>
#include <linux/miscdevice.h>
struct modem_dev
{
const char *name;
struct miscdevice miscdev;
struct work_struct work;
};
/* 耳机数据结构体 */
struct rk29_mu509_data {
int (*io_init)(void);
int (*io_deinit)(void);
unsigned int bp_power;
unsigned int bp_power_active_lo... |
/**
* CityDrain3 is an open source software for modelling and simulating integrated
* urban drainage systems.
*
* Copyright (C) 2012 Gregor Burger
*
* 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 ... |
/*
stream received on pressing 'play'
00 tlabel, ptype, cr, ipid
11 pid1
0e pid0
00 ctype control
48 panel subunit/unit 0
7c passthrough opcode
44 play
00 data length is 0
reply should be:
02 tlabel, ptype, cr reply, ipid
11 pid1
0e pid0
09 control accepted
48 panel subunit/unit 0
7c passthrough opcode... |
/**
* @file rem_audio.h Wrapper for all Audio header files
*
* Copyright (C) 2010 Creytiv.com
*/
#include "rem_au.h"
#include "rem_aubuf.h"
#include "rem_aufile.h"
#include "rem_autone.h"
#include "rem_aumix.h"
#include "rem_fir.h"
#include "rem_auresamp.h"
#include "rem_g711.h"
|
/*
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
* Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
* Copyright (C) 2003, 2004, 2005, 2006, 2013 Apple Computer, Inc.
*
* This library is free software; you can redistribute it and/or
* mod... |
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
/* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues.
Copyright (C) 2009-2020 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published ... |
/* Copyright (c) 2002,2007-2012, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in t... |
/*
* Copyright (C) 2006 Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>.
*
* 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) an... |
#include <stdio.h>
#include <stdlib.h>
#include <sql.h>
#include <sqlext.h>
#define display_error(a,b) display_error_msg(a,b,__LINE__)
void display_error_msg( SQLSMALLINT type, SQLHANDLE handle, int lineno )
{
SQLRETURN ret;
SQLINTEGER i = 0, native;
SQLCHAR state[7], text[256];
SQLSMALLINT len;
... |
/*
* IRC - Internet Relay Chat, nocodeschanmode.c
* by Dylan Cochran
* based on:
* nocolorumode.c (C) 2003 Dominick Meglio
* m_nocodes.c (C) Syzop
* noquit.c (C) penna@clanintern-irc.de
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge... |
#include <stdlib.h>
static void * alloc1(void);
static void * alloc2(void);
static void * alloc3(void);
static void * alloc4(void);
static void * alloc5(void);
static void free1(void *ptr);
static void free2(void *ptr);
static void free3(void *ptr);
static void free4(void *ptr);
static void free5(void *ptr);
static ... |
/*
* include/linux/fsl_devices.h
*
* Definitions for any platform device related flags or structures for
* Freescale processor devices
*
* Maintainer: Kumar Gala (kumar.gala@freescale.com)
*
* Copyright 2004 Freescale Semiconductor, Inc
*
* This program is free software; you can redistribute it and/or modify... |
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; ei... |
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: cguid.h
//
//--------------------------------------------------------------------------
#ifndef __CGUID_H__
#define __CGUID_H_... |
/*
* Copyright (c) 2010,
* Gavriloaie Eugen-Andrei (shiretu@gmail.com)
*
* This file is part of crtmpserver.
* crtmpserver is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the ... |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-cen-xr-w32-bld/build/storage/public/mozIStorageResultSet.idl
*/
#ifndef __gen_mozIStorageResultSet_h__
#define __gen_mozIStorageResultSet_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don'... |
/*
Free Download Manager Copyright (c) 2003-2014 FreeDownloadManager.ORG
*/
#if !defined(AFX_VMSFDMISSGENERATOR_H__A2BDF39E_ABE2_42D6_8CFA_D5B0C891BE75__INCLUDED_)
#define AFX_VMSFDMISSGENERATOR_H__A2BDF39E_ABE2_42D6_8CFA_D5B0C891BE75__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif
class vmsFDMISSGe... |
/* MN10200 ELF support for BFD.
Copyright (C) 1998-2015 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
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 Softwar... |
#include "soc_common.h"
#include <arpa/inet.h>
#include <ctype.h>
#include <stdint.h>
int inet_aton(const char *cp, struct in_addr *inp)
{
int base;
uint32_t val;
int c;
char bytes[4];
size_t num_bytes = 0;
c = *cp;
for(;;) {
if(!isdigit(c)) return 0;
val = 0;
base = 10;
if(c == '0') {... |
/* general_config.h
* Copyright (C) 2016 Jonathan Bennett
* Header file for general_config.cpp
*
* 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 3 of the License, or
* (at... |
/*****************************************************************************
*
* PROJECT: Multi Theft Auto v1.0
* LICENSE: See LICENSE in the top level directory
* FILE: sdk/game/CGarages.h
* PURPOSE: Garage manager interface
*
* Multi Theft Auto is available from http://www.multitheftauto.com... |
/*
This file is part of Darling.
Copyright (C) 2017 Lubos Dolezel
Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Darling i... |
/*
* This file is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This file is distributed in the hope that it will be useful, b... |
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtWebView module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid comm... |
/*
* Copyright 2014 Jakob Gruber
*
* This file is part of kpqueue.
*
* kpqueue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ver... |
/*
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
Copyright (C) 2015-2016 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
Stockfish is free software: you can re... |
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
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 ... |
//
// Student.c
// FirstExamples
//
// Created by Luiz on 2016-09-06.
// Copyright © 2016 Ideia do Luiz. All rights reserved.
//
#include <stdlib.h>
#include "Student.h"
StudentRef Student_new()
{
return malloc(sizeof(Student));
}
void Student_free(StudentRef this)
{
free(this);
}
|
/*
===========================================================================
Doom 3 GPL Source Code
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
Doom 3 Source Code is free software: you can redistribute it and/or modify
it... |
/*
* 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... |
#ifndef Py_PYTHREAD_H
#define Py_PYTHREAD_H
typedef void *PyThread_type_lock;
typedef void *PyThread_type_sema;
#ifdef __cplusplus
extern "C" {
#endif
/* Return status codes for Python lock acquisition. Chosen for maximum
* backwards compatibility, ie failure -> 0, success -> 1. */
typedef enum PyLo... |
/* $BEGIN_LICENSE
This file is part of Minitube.
Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
Minitube is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your op... |
/*
* Panopticon - A libre disassembler
* Copyright (C) 2017 Panopticon authors
*
* 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 3 of the License, or
* (at your option) an... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.