text stringlengths 4 6.14k |
|---|
//leandro-ie@hotmail.com;lucascherutti@gmail.com;octavio.carpes10@gmail.com
#include<iostream>
#include<fstream>
#include<list>
#include "cartao.h"
using namespace std;
class Banco {
friend ostream& operator<<(ostream& s, Banco& lst);
public:
void ler();
bool vercartao(Cartao&);
private:
list <int> lista;
... |
// PROGRAMMERS: Deniss Jacenko and Michael O'Reggio
// CLASS: COP4655 Tue/Thur 5pm - 6:15pm
// INSTRUCTOR: Steve Luis
// ASSIGNMENT: Shopping Experience Concept (Group 3)
// DUE: Thursday 12/11/14
//
// Created by Deniss Jacenko and Michael O'Reggio
// Creative Commons Attribution International 4.0 Licence
//
//... |
/*
* Copyright (c) 2009-2014 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* ... |
#define F_CPU 8000000
#include <avr/io.h>
#include <util/delay.h>
#include "UART.h"
void UART1_Init(unsigned int BaudRate){
unsigned short int UBRR0 = (short) (F_CPU/(BaudRate*16UL)-1);
UBRR1L = UBRR0 ;
UBRR1H = (UBRR0>>8);
UCSR1C = ((0<<UMSEL1)|(0<<UPM11)|(0<<UPM11)|(0<<USBS1)|(1<<UCSZ11)|(1<<UCSZ10));... |
#define PADS_TY(suf) entry_t ## suf
#define DEF_INPUT_FILE "../../data/transform"
#include "transform.h"
#include "template/accum_report.h"
|
/*************************************************************************
*** FORTE Library Element
***
*** This file was generated using the 4DIAC FORTE Export Filter V1.0.x!
***
*** Name: F_DWORD_TO_UDINT
*** Description: convert DWORD to UDINT
*** Version:
*** 0.0: 2011-12-25/4DIAC-IDE - 4DIAC-... |
/* Copyright (c) 2017 Oracle and/or its affiliates. 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 as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope tha... |
/*
* Copyright (C) 2010-2022 Fabio Cavallo (aka FHorse)
*
* 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 file is part of t411 Client Installer.
t411 Client Installer 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.
t... |
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <inttypes.h>
#include <avl.h>
#include <math.h>
#include "flx_shadowmem.h"
/*
* When doing pattern matching, PyQemu relies on
* the advantages of dynamic analysis to reduce
* the search space and thus also the false positive
*... |
// Name: i2c.h
//
// Copyright(c) 2013 Loctronix Corporation
// http://www.loctronix.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
// of the License, or (at... |
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the Qt3Support module of the Qt Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License versions 2.0 or 3.0 as publ... |
/*
* GrandOrgue - free pipe organ simulator
*
* Copyright 2006 Milan Digital Audio LLC
* Copyright 2009-2015 GrandOrgue contributors (see 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 F... |
/*
* This file is distributed as part of the MariaDB Corporation MaxScale. It 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.
*
* This program is distributed in the hope that it will be use... |
//
// FacesViewController.h
// Photos+
//
// Created by on 8/12/14.
// Copyright (c) 2014 Delightful. All rights reserved.
//
#import "PhotosViewController.h"
@interface FacesViewController : PhotosViewController
@end
|
/*
Copyright (c) 2015, 2017, Oracle and/or its affiliates. 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 as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the... |
#include "main.h"
#include "timeout.h"
#include "lcd12864.h"
#include "hc_sr04.h"
#include "pwm.h"
#include "uart.h"
#include "adc.h"
#include "tm1650.h"
// ------ Public function prototypes ----------------------
// ------ Private function prototypes ---------------------
// ------ Public variable definitions -----... |
/***************************************************************************
qgsdxpaintengine.h
------------------
begin : November 2013
copyright : (C) 2013 by Marco Hugentobler
email : marco at sourcepole dot ch
**... |
// Copyright (c) 2011 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_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_
#define CHROME_INSTALLER_UTIL_MOVE_TREE_WORK_ITEM_H_
#include "base/files/file_path.h"
#include ... |
// Found this posted by "Peret" at
// http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=28214&highlight=crc32
// CCITT CRC-32 (Autodin II) polynomial:
// X32+X26+X23+X22+X16+X12+X11+X10+X8+X7+X5+X4+X2+X+1
unsigned long CalcCRCBase (unsigned long crc, const char *buffer, int length)
{
int i,j ;
f... |
#ifndef _ASM_X86_IDLE_H
#define _ASM_X86_IDLE_H
<<<<<<< HEAD
#define IDLE_START 1
#define IDLE_END 2
struct notifier_block;
void idle_notifier_register(struct notifier_block *n);
void idle_notifier_unregister(struct notifier_block *n);
=======
>>>>>>> 296c66da8a02d52243f45b80521febece5ed498a
#ifdef CONFIG_X86_64
voi... |
/*
* netlink/cache.h Caching Module
*
* 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 Software Foundation version 2.1
* of the License.
*
* Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
*/
#i... |
//
// ThemeScrollView.h
// Camera
//
// Created by zhang xiangying on 13-3-26.
// Copyright (c) 2013年 ChenHongbin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ThemeImageView.h"
#import "VideoThemesData.h"
@class ThemeScrollView;
@protocol ThemeScrollViewDelegate<NSObject>
@optional
/**
* @brief 选择... |
#ifndef _CkHtmlToText_H
#define _CkHtmlToText_H
#include "Chilkat_C.h"
HCkHtmlToText CkHtmlToText_Create(void);
void CkHtmlToText_Dispose(HCkHtmlToText handle);
void CkHtmlToText_getLastErrorHtml(HCkHtmlToText handle, HCkString retval);
void CkHtmlToText_getLastErrorText(HCkHtmlToText handle, HCkString retval);
void C... |
/****************************************Copyright (c)**************************************************
** Çå ·ç º£ °¶
**
** yzfcer@163.com
**
**--------------ÎļþÐÅÏ¢--------------------------------------------------------------------... |
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#include <error.h>
#include <errno.h>
#include "NE10.h"
/* customize these macros and variables for a particular implementation */
#define FFT_IN_ROUNDS (128)
#define FFT_CA... |
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <trace.h>
#include <util.h>
void shw_udelay(uint32_t microseconds)
{
uint64_t t_start, t_cur;
struct timeval tv;
gettimeofday(&tv, NULL);
t_start = (uint64_t) tv.tv_sec * 1000000ULL + (uint64_t)tv.tv_usec;
do {
gettimeofda... |
/**
* Copyright (c) 2009 LxDE Developers, see the file AUTHORS for details.
*
* 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 lat... |
#ifndef INCLUDE_CDDB_H
#define INCLUDE_CDDB_H
#include <cdio/cdio.h>
#include <cddb/cddb.h>
enum giles_cddb_err {
giles_cddb_err_none,
giles_cddb_err_no_conn,
giles_cddb_err_no_match
};
enum giles_cddb_err get_cddb_info_for_device(const CdIo_t *p_cdio, cddb_disc_t *disc);
#endif
|
/******************************************************************************
fgdump - by fizzgig and the foofus.net group
Copyright (C) 2008 by fizzgig
http://www.foofus.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 by the ... |
/******************************************************************************\
* client/src/PersonaView.h *
* Copyright (C) 2008 John Eric Martin <john.eric.martin@gmail.com> *
* ... |
/*
* This is included by init/main.c to check for architecture-dependent bugs.
*
* Needs:
* void check_bugs(void);
*
* Copyright (C) 1998, 1999, 2003 Hewlett-Packard Co
* David Mosberger-Tang <davidm@hpl.hp.com>
*/
#ifndef _ASM_IA64_BUGS_H
#define _ASM_IA64_BUGS_H
#include <asm/processor.h>
extern void check_... |
#ifndef FILEZILLA_ENGINE_SFTP_EVENT_HEADER
#define FILEZILLA_ENGINE_SFTP_EVENT_HEADER
#define FZSFTP_PROTOCOL_VERSION 8
enum class sftpEvent {
Unknown = -1,
Reply = 0,
Done,
Error,
Verbose,
Info,
Status,
Recv,
Send,
Listentry,
AskHostkey,
AskHostkeyChanged,
AskHostkeyBetteralg,
AskPassword,
Transfer,
... |
/*
*
* Copyright (c) International Business Machines Corp., 2001
*
* 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 l... |
/**
* Copyright (C) 2007 Stefan Buettcher. All rights reserved.
* This is free software with ABSOLUTELY NO WARRANTY.
*
* 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 t... |
/* ----------------------------------------------------------------------- *
*
* Copyright 2000 H. Peter Anvin - 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 as published by
* the Free Software Founda... |
/*
* Copyright (C) 2008 - 2011 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2011 - 2012 ArkCORE <http://www.arkania.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 by the
* Free Software Foundation; eit... |
/* (c) GPL 2007 Karel 'Clock' Kulhavy, Twibright Labs */
#include <stdio.h> /* fprintf */
#include "optar.h"
#include "opts.h"
/* Coordinates don't count with the border - 0,0 is upper left corner of the
* first cross! */
int is_cross(unsigned x, unsigned y)
{
x%=CPITCH;
y%=CPITCH;
return (x<2*CHALF&&y<2*CHALF);... |
/*
* thd_sys_fs.h: sysfs class interface
*
* Copyright (C) 2012 Intel Corporation. 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 or later as published by the Free Software Foundation.
*
* This pro... |
//
// --------------------------------------------------------------------------
// Gurux Ltd
//
//
//
// Filename: $HeadURL$
//
// Version: $Revision$,
// $Date$
// $Author$
//
// Copyright (c) Gurux Ltd
//
//------------------------------------------------------------... |
/* Copyright (C) 2002-2003 RealVNC Ltd. All Rights Reserved.
* Copyright (C) 2004-2005 Constantin Kaplinsky. All Rights Reserved.
* Copyright (C) 2015 Davide Bettio for Ispirata Srl
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publ... |
/*
* Copyright (C) 2007 Google, Inc.
* Copyright (c) 2008-2013, The Linux Foundation. All rights reserved.
* Author: Brian Swetland <swetland@google.com>
*
* 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,... |
/* Language-level data type conversion for GNU C.
Copyright (C) 1987, 1988, 1991, 1998, 2002 Free Software Foundation, Inc.
This file is part of GCC.
GCC 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... |
#ifndef GAME_H_INCLUDED
#define GAME_H_INCLUDED
#include <SFML/Graphics.hpp>
#include <string>
#include "VectorBoard.h"
class Game
{
public:
static void run();
const static int ROW_NUM = 4;
const static int COL_NUM = 4;
const static int CELL_SIZE = 100;
const static int SCREEN_WIDTH = COL_NUM * C... |
/*
* Copyright (c) 1999-2002, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
* GNU General Public License version 2 or (at your option) any later version.
*
* This module contains functions managing resizable pointer arrays.
*/
/*
* INCLUDE FILES
*/
#include "gen... |
/**
* @file thtfangle.h
* Units transformation class.
*/
/* Copyright (C) 2000 Stacho Mudrak
*
* $Date: $
* $RCSfile: $
* $Revision: $
*
* --------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of t... |
/*
* Copyright (C) 2011 Igalia S.L.
*
* 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 and the following dis... |
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
nautilus-search-directory-file.h: Subclass of NautilusFile to implement the
the case of the search directory
Copyright (C) 2003 Red Hat, Inc.
This program is free software; you can redistribute it and/or
modify it under the te... |
/*
* Copyright (C) 1996-2015 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
#ifndef SQUID_RELEASE_TIME
#define SQUID_REL... |
/*
* Copyright (C) 2010 Neil Stockbridge
* LICENSE: GPL
*/
#ifndef __STOPWATCH_H
#define __STOPWATCH_H
#include <sys/time.h>
typedef struct
{
struct timeval when_started;
struct timeval when_stopped;
}
Stopwatch;
extern
void start_stopwatch( Stopwatch *sw)
;
extern
void stop_stopwatch( Stopwatch *sw)
;... |
/*
wiring_digital.c - digital input and output functions
Part of Arduino - http://www.arduino.cc/
Copyright (c) 2005-2006 David A. Mellis
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 Software Found... |
#include <stic.h>
#include <stddef.h> /* NULL */
#include <string.h> /* strcmp() strcpy() strlen() */
#include "../../src/ui/ui.h"
#include "../../src/utils/str.h"
#include "../../src/bmarks.h"
#include "../../src/cmd_core.h"
static int count_bmarks(void);
static void bmarks_cb(const char p[], const char t[], time_t... |
/*
* IP Virtual Server
* data structure and functionality definitions
*/
#ifndef KEEPALIVED_IP_VS_H
#define KEEPALIVED_IP_VS_H
#ifdef HAVE_LINUX_IP_VS_H
#include <linux/ip_vs.h>
#else
#include <net/ip_vs.h>
#endif
/* Prior to Linux 4.2 have to include linux/in.h and linux/in6.h
* or linux/netlink.h to i... |
#include "mux/io.h"
int open(struct file* file) {
return file->fops->open(file);
}
int ioctl(struct file* file, int cmd, long args) {
return file->fops->ioctl(file, cmd, args);
}
ssize_t read(struct file* file, char* const buffer, size_t size) {
struct file_operations* fops = file->fops;
if (fops->re... |
#ifndef _CAPSICUM_RIGHTS_H
#define _CAPSICUM_RIGHTS_H
#ifdef CONFIG_SECURITY_CAPSICUM
void cap_rights_regularize(struct capsicum_rights *rights);
bool cap_rights_has(const struct capsicum_rights *rights, u64 right);
#endif
#endif /* _CAPSICUM_RIGHTS_H */
|
/*
silcstack_i.h
Author: Pekka Riikonen <priikone@silcnet.org>
Copyright (C) 2003 - 2005 Pekka Riikonen
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.
Thi... |
/*
* \archivo: adc.h
* \version: 1.0
*
* \descripcion: Este fichero contiene libreria para manejo del ADC
*
* \autor: Gary Servin
* \web: www.garyservin.wordpress.com
* \fecha: 07/10/12
*/
#ifndef ADC_H
#define ADC_H
#ifndef _XTAL_FREQ
#define _XTAL_FREQ 16000000
#endif
#include <xc.h> // In... |
/*
* Copyright (C) 2004-2014 Metaphonic Labs
*
* 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 ... |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2013
*
* 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;
*
* This program is distributed in th... |
/*
* This file is part of the KDE Baloo Project
* Copyright (C) 2013 Vishesh Handa <me@vhanda.in>
*
* 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 Software Foundation; either
* version 2.1 of the Lic... |
#if !defined (IMAGELIST_H)
#define IMAGELIST_H
//----------------------------------------------------
// ImageList.h
// (c) Reliable Software 2000 -- 2003
//
//----------------------------------------------------
#include <Win/Handles.h>
#include <Graph/Brush.h>
#include <Graph/Icon.h>
#include <Bit.h>
namespace Imag... |
#ifndef H__adh__test_macros__
#define H__adh__test_macros__
#include <stdio.h>
#include <stdlib.h>
#include <dfsch/lib/cmdopts.h>
static int test__fail_fast = 0;
#define TEST_INIT(argc, argv) \
int test__pass = 0; \
int test__fail = 0; \
te... |
/* UOL Fone
* Copyright (c) 2006 Universo Online S/A
*
* Direitos Autorais Reservados
* All rights reserved
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, ... |
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code... |
/* * ScreenCloud - An easy to use screenshot sharing application
* Copyright (C) 2016 Olav Sortland Thoresen <olav.s.th@gmail.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 v... |
/*
* INET An implementation of the TCP/IP protocol suite for the LINUX
* operating system. INET is implemented using the BSD Socket
* interface as the means of communication with the user level.
*
* "Ping" sockets
*
* This program is free software; you can redistribute it and/or
* modify it under the te... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2010 Advanced Micro Devices, 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 ... |
/* This file is part of SIR, an open-source cross-platform Image tool
* 2007-2010 Rafael Sachetto <rsachetto@gmail.com>
* 2011-2014 Marek Jędryka <jedryka89@gmail.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... |
/** @brief Library for Arduino returns x,y,z data on current magnetic field
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) any l... |
#include <avr/interrupt.h>
#include <avr/pgmspace.h>
#include <math.h>
#include "PWM.h"
#define VKp 16
#define HKp 16
#define Kp 6
#define NoiseThresHold 28
#define sfactor(x) (x*4)
#define TMRRESET 194
#define HBEAT 0
#define MSGRCV 1
#define DBGR ... |
#ifndef WEBELEMENT_H
#define WEBELEMENT_H
#include <QObject>
class WebDriverHub;
class By;
class WebElement
{
public:
WebElement(QString id, WebDriverHub* hub);
virtual ~WebElement() {}
void click();
void submit();
void sendKeys(QString text);
QString text();
QString tagName();
void ... |
/**
* This header is generated by class-dump-z 0.2b.
*
* Source: /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
*/
#import <iTunesStoreUI/SUScriptNativeObject.h>
#import <iTunesStoreUI/XXUnknownSuperclass.h>
@interface SUScriptDialogAlertView : XXUnknownSuperclass <SUScriptNativeObject> ... |
/* PPPoE support library "libpppoe"
*
* Copyright 2000 Michal Ostrowski <mostrows@styx.uwaterloo.ca>,
* Jamal Hadi Salim <hadi@cyberus.ca>
*
* 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 Softwa... |
/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2005-02-06
* Description : an image editor actions undo/redo manager
*
* Copyright (C) 2005-2006 by Renchi Raju <renchi dot raju at gmail dot com>
* Copyright (C... |
static char rcsid[] = "$Id: jump.c,v 1.4 2005/10/04 22:05:13 svitak Exp $";
/*
** $Log: jump.c,v $
** Revision 1.4 2005/10/04 22:05:13 svitak
** Merged branch tagged rel-2-3beta-fixes back to main trunk. All comments from
** the branch modifications should be included.
**
** Revision 1.3.2.1 2005/08/13 05:23:27 sv... |
/*********************************************************
*
* This source code is part of the Carnegie Mellon Robot
* Navigation Toolkit (CARMEN)
*
* CARMEN Copyright (c) 2002 Michael Montemerlo, Nicholas
* Roy, Sebastian Thrun, Dirk Haehnel, Cyrill Stachniss,
* and Jared Glover
*
* CARMEN is free software; y... |
// Copyright 2008 The RE2 Authors. All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Unicode character groups.
// The codes get split into ranges of 16-bit codes
// and ranges of 32-bit codes. It would be simpler
// to use only 32-bit ran... |
/*
* The ManaPlus Client
* Copyright (C) 2013-2014 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* 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 v... |
/*
* csum-file.c
*
* Copyright (C) 2005 Linus Torvalds
*
* Simple file write infrastructure for writing SHA1-summed
* files. Useful when you write a file that you want to be
* able to verify hasn't been messed with afterwards.
*/
#include "cache.h"
#include "progress.h"
#include "csum-file.h"
stat... |
/**
* This header is generated by class-dump-z 0.2b.
*
* Source: /System/Library/PrivateFrameworks/Conference.framework/Conference
*/
#import <Conference/Conference-Structs.h>
#import <Conference/CNFRegAccountWebViewController.h>
@class NSString;
@protocol CNFRegAccountAuthorizationDelegate;
@interface CNFRegAcc... |
/*
* RSD demuxer
* Copyright (c) 2013 James Almer
*
* This file is part of FFmpeg.
*
* FFmpeg 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 op... |
/*
* HND Run Time Environment debug info area
*
* Copyright (C) 1999-2013, Broadcom Corporation
*
* Unless you and Broadcom execute a separate written software license
* agreement governing use of this software, this software is licensed to you
* under the terms of the GNU General Public License version 2 (... |
#pragma once
// AboutDialog dialog
class AboutDialog : public CDialog
{
DECLARE_DYNAMIC(AboutDialog)
public:
AboutDialog(CWnd* pParent = NULL); // standard constructor
virtual ~AboutDialog();
// Dialog Data
enum { IDD = IDD_ABOUT };
protected:
virtual void DoDataExchange(CDataExchange* pDX... |
# ifndef SW_LIBSETUP_INCLUDE
# define SW_LIBSETUP_INCLUDE
Library *SWSupportBase = NULL;
Library *MUIMasterBase = NULL;
int _STI_4000_Libs(void)
{
MUIMasterBase = OpenLibrary(MUIMASTER_NAME, MUIMASTER_VMIN);
SWSupportBase = OpenLibrary("PROGDIR:MUI/" SWSUPPORTNAME, SWSUPPORTVER);
if (!SW... |
//
// CocoaPodsTest.h
// CocoaPodsTest
//
// Created by Tobiasz Parys on 23/02/14.
// Copyright (c) 2014 Treadstone Entertainment. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface CocoaPodsTest : NSObject
@end
|
//
// face.h
// Bistellar
//
// Created by Alexander Thumm on 07.10.11.
// Copyright 2011 -. All rights reserved.
//
#ifndef Bistellar_face_h
#define Bistellar_face_h
#include <iostream>
#include <deque>
#include "types.h"
class Face
{
vertex_t * _vertices;
int _dimension;
public:
Face();
Fa... |
/*
* Userspace Backlight Driver
* Modified from Driver for the Cirrus EP93xx lcd backlight
* by 2010 H Hartley Sweeten <hsweeten@visionengravers.com>
*
* Copyright (c) 2015 Icenowy Zheng <icenowy@outlook.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the G... |
/* $Id: upnpglobalvars.c,v 1.39 2014/12/10 09:49:22 nanard Exp $ */
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2006-2014 Thomas Bernard
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution */
#include <sys/types.h>
... |
/*
* This file is part of the sockstress project.
*
* Copyright (C) 2008-2013 Outpost24 AB
* (Written by Jack C. Louis for Outpost24 AB)
*
* 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;... |
/* RCOS by RCSoft(riadh.chtara@gmail.com)
* Based on Skelix by Xiaoming Mo (xiaoming.mo@skelix.org)
* Licence: GPLv2 */
#ifndef LIBCC_H
#define LIBCC_H
#define NULL ((void *)0)
void bcopy(const void *src, void *dest, unsigned int n);
void bzero(void *dest, unsigned int n);
void *memcpy(void *dest, const void *src, ... |
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.a... |
/**
* This header is generated by class-dump-z 0.2b.
*
* Source: /System/Library/PrivateFrameworks/iAdCore.framework/iAdCore
*/
#import <iAdCore/iAdCore-Structs.h>
#import <iAdCore/XXUnknownSuperclass.h>
// iOSOpenDev: wrapped with define check (since occurs in other dumped files)
#ifndef __XXUnknownSuperclass__
... |
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_net_protocol_core_Connection__
#define __gnu_java_net_protocol_core_Connection__
#pragma interface
#include <java/net/URLConnection.h>
extern "Java"
{
namespace java
{
namespace net
{
class URL;
}
}
namespace... |
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_text_LineBreakIterator__
#define __gnu_java_text_LineBreakIterator__
#pragma interface
#include <gnu/java/text/BaseBreakIterator.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace text
{
clas... |
/*******************************************************************
*
*
* Copyright (C) 2015, 2016, 2017 Xilinx, Inc.
*
* 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 tho... |
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "VideoBackends/DX11/D3DPtr.h"
#include "VideoCommon/VideoCommon.h"
namespace DX11
{
class XFBEncoder
{
public:
XFBEncoder();
void Init();
void Shutdown();
void Encode(u8* dst, ... |
//
// ViewController.h
// TextKit_demo
//
// Created by CornerZhang on 14-9-25.
// Copyright (c) 2014年 NeXtreme.com. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel *textLabel;
@end
|
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.arch = MODULE_ARCH_INIT,
};
MODULE_INFO(intree, "Y");
static const struct modvers... |
/*
* Copyright (C) 1996-2016 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
/*
* DEBUG: section 76 Internal Squid Ob... |
/*
* Author: MontaVista Software, Inc. <source@mvista.com>
*
* 2008 (c) MontaVista Software, Inc. This file is licensed under
* the terms of the GNU General Public License version 2. This program
* is licensed "as is" without any warranty of any kind, whether express
* or implied.
*/
#include <linux/init.h>
#inc... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.