repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
LandonMorrison/BlackJackRepo
BlackJack/BlackJack/VingtEtUnDeck.h
<gh_stars>0 /************************************************* * Author: <NAME> * File Name: VingtEtUnDeck.h * Date Created: 3/6/2020 * Modifications: 3/8/2020 - changed from Deck to VingtEtUnDeck * *************************************************/ #ifndef DECK_H #define DECK_H #include "VingtEtUnCard.h" /******...
LandonMorrison/BlackJackRepo
BlackJack/BlackJack/VingtEtUnDealer.h
<gh_stars>0 /************************************************* * Author: <NAME> * File Name: VingtEtUnDealer.h * Date Created: 3/6/2020 * Modifications: * *************************************************/ #ifndef DEALER_H #define DEALER_H #include "VingtEtUnPlayer.h" /*********************************** * Class:...
LandonMorrison/BlackJackRepo
BlackJack/BlackJack/VingtEtUnPlayer.h
/************************************************* * Author: <NAME> * File Name: VingtEtUnPlayer.h * Date Created: 3/6/2020 * Modifications: 3/8/2020 Adjusted to match the new Card, Deck, and Hand * *************************************************/ #ifndef PLAYER_H #define PLAYER_H #include <string> #include "Vin...
zuoyou1314/zuoyouDemo
JM_ActionSheet/UIView+JMExtension.h
<reponame>zuoyou1314/zuoyouDemo<filename>JM_ActionSheet/UIView+JMExtension.h // // UIView+JMExtension.h // ymt // // Created by zhujiamin on 16/11/14. // Copyright © 2016年 <EMAIL>. All rights reserved. // #import <UIKit/UIKit.h> @interface UIView (JMExtension) #pragma mark properties @property (nonatomic, assign)...
zuoyou1314/zuoyouDemo
JM_ActionSheet/JM_ActionSheet.h
// // JM_ActionSheet.h // CustomActionSheet // // Created by zhujiamin on 2016/12/9. // Copyright © 2016年 zhujiamin. All rights reserved. // #import <UIKit/UIKit.h> //每一行的样式Model(字体颜色、字号、行高有默认值,也可以自定义) @interface M_SheetItem : NSObject @property(nonatomic, strong) NSString *title; //标题 @property(nonatomic,...
liskin/dotfiles
src/pango-force-subpixel-positioning/pango.c
#include <stddef.h> #include <stdbool.h> #include <dlfcn.h> #include <pango/pango.h> typedef typeof(pango_context_new) pango_context_new_t; static pango_context_new_t *orig_pango_context_new = NULL; PangoContext *pango_context_new (void) { if (!orig_pango_context_new) { orig_pango_context_new = dlsym(RTLD_NEXT, "p...
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/TJ.h
#pragma once #pragma warning( disable : 4635 ) #include "turbojpeg.h" #pragma warning( default : 4635 ) #include "TJScalingFactor.h" #include "TJException.h" #include "stringconvert.h" using namespace System; namespace turbojpegCLI { public enum class SubsamplingOption { /// <summary> /// 4:4:4 chrom...
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/TJException.h
#pragma once using namespace System; namespace turbojpegCLI { public ref class TJException : public Exception { public: TJException() : Exception() { } TJException(String^ msg) : Exception(msg) { } }; }
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/TJScalingFactor.h
<reponame>bp2008/-turbojpegCLI<filename>turbojpegCLI/turbojpegCLI/TJScalingFactor.h #pragma once using namespace System; namespace turbojpegCLI { public ref class TJScalingFactor { /// <summary> /// Numerator /// </summary> int num; /// <summary> /// Denominator /// </summary> int denom...
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/TJDecompressor.h
<reponame>bp2008/-turbojpegCLI<filename>turbojpegCLI/turbojpegCLI/TJDecompressor.h #pragma once #pragma warning( disable : 4635 ) #include "turbojpeg.h" #pragma warning( default : 4635 ) #include "TJ.h" using namespace System; namespace turbojpegCLI { /// <summary> /// TurboJPEG decompressor /// </summary>...
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/stringconvert.h
<reponame>bp2008/-turbojpegCLI #pragma once #pragma managed( push, off ) #include <string> #pragma managed( pop ) System::String^ getSystemString(std::string const& source); std::string getStdString(System::String^ source);
bp2008/-turbojpegCLI
turbojpegCLI/turbojpegCLI/TJCompressor.h
<filename>turbojpegCLI/turbojpegCLI/TJCompressor.h #pragma once #pragma warning( disable : 4635 ) #include "turbojpeg.h" #pragma warning( default : 4635 ) #include "TJ.h" using namespace System; namespace turbojpegCLI { /// <summary> /// TurboJPEG compressor /// </summary> public ref class TJCompressor ...
resin-io/node-ext2fs
src/glue.c
<filename>src/glue.c #include <emscripten.h> #include <errno.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include "ext2fs.h" #include "glue.h" #define O_WRONLY 00000001 #define O_RDWR 00000002 #define O_CREAT 00000100 #define O_EXCL 00000200 #d...
MattBBaker/threaded-ssca1
util.c
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
gen_scal_data.h
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
gen_sim_matrix.h
<reponame>MattBBaker/threaded-ssca1<filename>gen_sim_matrix.h /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can...
MattBBaker/threaded-ssca1
pairwise_align.h
<filename>pairwise_align.h<gh_stars>0 /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or ...
MattBBaker/threaded-ssca1
parameters.c
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
scan_backwards.h
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
parameters.h
<gh_stars>0 /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the ter...
MattBBaker/threaded-ssca1
main.c
<gh_stars>0 /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the ter...
MattBBaker/threaded-ssca1
scan_backwards.c
<filename>scan_backwards.c /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify i...
MattBBaker/threaded-ssca1
gen_sim_matrix.c
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
glibc_sort.c
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
gen_scal_data.c
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
types.h
/* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify it under the terms of the Ne...
MattBBaker/threaded-ssca1
pairwise_align.c
<filename>pairwise_align.c /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute it and/or modify i...
MattBBaker/threaded-ssca1
util.h
<reponame>MattBBaker/threaded-ssca1<gh_stars>0 /* This file is part of SSCA1. Copyright (C) 2008-2015, UT-Battelle, LLC. This product includes software produced by UT-Battelle, LLC under Contract No. DE-AC05-00OR22725 with the Department of Energy. This program is free software; you can redistribute i...
gwamoniak/Cpp
Point_equalityOperator/point.h
<reponame>gwamoniak/Cpp<filename>Point_equalityOperator/point.h<gh_stars>0 #pragma once #ifndef POINT_H #define POINT_H #include <iostream> class Point { friend std::ostream& operator << (std::ostream& out, const Point& p); public: Point() = default; Point(double x, double y) :mX{x},mY{y}{} Point(d...
Andries-Smit/nativecontacts
ios/AppDelegate.h
#import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder<UIApplicationDelegate> @property (nonatomic, strong) UIWindow *window; @property BOOL shouldOpenInLastApp; @end
Andries-Smit/nativecontacts
ios/MendixNative/AppPreferences.h
<filename>ios/MendixNative/AppPreferences.h<gh_stars>10-100 // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> @interface AppPreferences : NSObject + (NSString *) getAppUrl; + (void) setAppUrl:(NSString *)url; + (BOOL) devModeEnabled; + (void) devMode:(BOOL)enable; + (BOOL) re...
Andries-Smit/nativecontacts
ios/MendixNative/MendixBackwardsCompatUtility.h
<gh_stars>10-100 // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import "UnsupportedFeatures.h" extern const UnsupportedFeatures *DEFAULT_UNSUPPORTED_FEATURES; @interface MendixBackwardsCompatUtility: NSObject + (NSDictionary<NSString *, UnsupportedFeatures *> *) versionD...
Andries-Smit/nativecontacts
ios/MendixNative/RuntimeInfo.h
// // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> @interface RuntimeInfo: NSObject @property (nonatomic, copy, readonly) NSString *cacheburst; @property (nonatomic, readonly) long nativeBinaryVersion; @property (nonatomic, readonly) long packagerPort; @property (nonatomic, co...
Andries-Smit/nativecontacts
ios/MendixNative/WarningsFilter.h
// // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> typedef NS_ENUM(NSInteger, WarningsFilter) { all, partial, none }; extern NSString * const WarningsFilter_toString[];
Andries-Smit/nativecontacts
ios/MendixNative/UnsupportedFeatures.h
<reponame>Andries-Smit/nativecontacts<filename>ios/MendixNative/UnsupportedFeatures.h // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> @interface UnsupportedFeatures: NSObject @property BOOL reloadInClient; @property BOOL hideSplashScreenInClient; - (id _Nonnull)init:(BOOL)r...
Andries-Smit/nativecontacts
ios/MendixNative/MendixApp.h
<gh_stars>10-100 // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import "AppMenuProtocol.h" #import "SplashScreenPresenterProtocol.h" #import "WarningsFilter.h" @interface MendixApp : NSObject @property NSURL * _Nonnull bundleUrl; @property NSURL *...
Andries-Smit/nativecontacts
ios/MendixNative/SplashScreenPresenterProtocol.h
// // Copyright (c) Mendix, Inc. All rights reserved. // #import <UIKit/UIKit.h> @protocol SplashScreenPresenterProtocol - (void) show:(UIView * _Nullable)rootView; - (void) hide; @end
Andries-Smit/nativecontacts
ios/MendixNative/AppMenuProtocol.h
<filename>ios/MendixNative/AppMenuProtocol.h<gh_stars>1-10 #import <Foundation/Foundation.h> @protocol AppMenuProtocol @required -(void) show:(BOOL)devMode; @end
Andries-Smit/nativecontacts
ios/MendixNative/MxConfiguration.h
<filename>ios/MendixNative/MxConfiguration.h<gh_stars>1-10 // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <React/RCTBridgeModule.h> #import "WarningsFilter.h" @interface MxConfiguration : NSObject <RCTBridgeModule> + (NSString *) defaultDatabaseName; + (NSString *)...
Andries-Smit/nativecontacts
ios/MendixNative/MendixReactWindow.h
// // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import "UIKit/UIKit.h" @interface MendixReactWindow : UIWindow @end
Andries-Smit/nativecontacts
ios/MendixAppDelegate.h
#import <UIKit/UIKit.h> @interface MendixAppDelegate : NSObject + (void) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; + (void) application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification; + (void) application:(UIAp...
Andries-Smit/nativecontacts
ios/MendixNative/RuntimeInfoResponse.h
<reponame>Andries-Smit/nativecontacts // // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import "RuntimeInfo.h" @interface RuntimeInfoResponse : NSObject @property (nonatomic, copy, readonly) NSString *status; @property (nonatomic, copy, readonly) RuntimeInfo *runtimeInfo; -...
Andries-Smit/nativecontacts
ios/RNSplashScreen+StoryBoardSplash.h
#import <Foundation/Foundation.h> #import "RNSplashScreen.h" @interface RNSplashScreen (StoryBoardSplash) + (void)showStoryBoard:(NSString *)name inRootView:(UIView *)rootView; + (void)hideStoryBoard; @end
Andries-Smit/nativecontacts
ios/SplashScreenPresenter.h
#import <Foundation/Foundation.h> #import "SplashScreenPresenterProtocol.h" @interface SplashScreenPresenter : NSObject<SplashScreenPresenterProtocol> @end
Andries-Smit/nativecontacts
ios/MendixNative/RuntimeInfoProvider.h
// // Copyright (c) Mendix, Inc. All rights reserved. // #import <Foundation/Foundation.h> #import "RuntimeInfoResponse.h" @interface RuntimeInfoProvider: NSObject + (void) getRuntimeInfo:(NSURL*) runtimeURL completionHandler:(void (^)(RuntimeInfoResponse *response))completionHandler; @end
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/ContentViewController.h
// // ContentViewController.h // Weather-Report // // Created by 沈君瑶 on 2019/8/10. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface ContentViewController : UIViewController @property NSMutableArray *contentMutableArray; @property NSMutableArray *futureH...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRSearch/SearchViewController.h
<reponame>yaoayaoyyao/Weather-Report // // SearchViewController.h // Weather-Report // // Created by 沈君瑶 on 2019/8/8. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @protocol SearchViewControllerDelegate <NSObject> - (void)passNSString:(NSString *)str; @end @int...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/NowTableViewCell.h
// // NowTableViewCell.h // Weather-Report // // Created by 沈君瑶 on 2019/8/10. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface NowTableViewCell : UITableViewCell @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) UILabel *c...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/WeekTableViewCell.h
<reponame>yaoayaoyyao/Weather-Report<filename>Weather-Report/Weather-Report/WRContent/WeekTableViewCell.h // // WeekTableViewCell.h // Weather-Report // // Created by 沈君瑶 on 2019/8/10. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface WeekTableViewCell : ...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/ContentHeadView.h
// // ContentHeadView.h // Weather-Report // // Created by 沈君瑶 on 2019/8/9. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface ContentHeadView : UIView @property (nonatomic, strong) UILabel *locationLabel; @property (nonatomic, strong) UILabel *temperatur...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WeatherData/FutureDay.h
// // FutureDay.h // Weather-Report // // Created by 沈君瑶 on 2019/8/13. // Copyright © 2019 沈君瑶. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @interface FutureDay : NSObject @property NSString *futureDayLocationString; @property NSString *weekString; @property NSString *wtIc...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRMain/MainTableViewCell.h
// // MainTableViewCell.h // Weather-Report // // Created by 沈君瑶 on 2019/8/9. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface MainTableViewCell : UITableViewCell @property (nonatomic, strong) UILabel *timeLabel; @property (nonatomic, strong) UILabel *l...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/HoursView.h
<gh_stars>0 // // HoursView.h // Weather-Report // // Created by 沈君瑶 on 2019/8/10. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface HoursView : UIView @property (nonatomic, strong) UILabel *timeLabel; @property (nonatomic, strong) UIImageView *weatherIm...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WeatherData/FutureHour.h
<filename>Weather-Report/Weather-Report/WeatherData/FutureHour.h // // FutureHour.h // Weather-Report // // Created by 沈君瑶 on 2019/8/14. // Copyright © 2019 沈君瑶. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @interface FutureHour : NSObject @property NSString *futureHourLocat...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WeatherData/Weather.h
<gh_stars>0 // // Weather.h // Weather-Report // // Created by 沈君瑶 on 2019/8/12. // Copyright © 2019 沈君瑶. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @interface Weather : NSObject @property NSString *location; @property NSString *cond; @property NSString *tmpNow; @property...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRContent/ContentView.h
<filename>Weather-Report/Weather-Report/WRContent/ContentView.h // // ContentView.h // Weather-Report // // Created by 沈君瑶 on 2019/8/10. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> #import "ContentHeadView.h" #import "Weather.h" NS_ASSUME_NONNULL_BEGIN @interface ContentView : UIView...
yaoayaoyyao/Weather-Report
Weather-Report/Weather-Report/WRMain/MainViewController.h
<filename>Weather-Report/Weather-Report/WRMain/MainViewController.h // // MainViewController.h // Weather-Report // // Created by 沈君瑶 on 2019/8/9. // Copyright © 2019 沈君瑶. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface MainViewController : UIViewController @property (nonatomi...
twinaphex/OpenLara
src/network.h
<filename>src/network.h<gh_stars>10-100 #ifndef H_NET #define H_NET #include "core.h" #include "utils.h" #include "format.h" #include "controller.h" #include "ui.h" #define NET_PROTOCOL 1 #define NET_PORT 21468 #define NET_PING_TIMEOUT ( 1000 * 10 ) #define NET_PING_PERIOD ...
twinaphex/OpenLara
src/platform/libretro/libretro_core_options.h
<filename>src/platform/libretro/libretro_core_options.h #ifndef LIBRETRO_CORE_OPTIONS_H__ #define LIBRETRO_CORE_OPTIONS_H__ #include <stdlib.h> #include <string.h> #include <libretro.h> #include <retro_inline.h> #ifdef __cplusplus extern "C" { #endif /* ******************************** * Core Option Definitions ...
twinaphex/OpenLara
src/libs/minimp3/libc.h
<gh_stars>10-100 // a libc replacement (more or less) for the Microsoft Visual C compiler // this file is public domain -- do with it whatever you want! #ifndef __LIBC_H_INCLUDED__ #define __LIBC_H_INCLUDED__ #ifdef _MSC_VER #define INLINE __forceinline #define FASTCALL __fastcall #ifdef NOLIBC #if...
twinaphex/OpenLara
src/glyph_cyr.h
#ifndef __GLYPH_CYR__ #define __GLYPH_CYR__ static unsigned int size_GLYPH_CYR = 3088; static unsigned char GLYPH_CYR[] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x30, 0x08, 0x03, 0x00, 0x00, 0x00, 0xc9, 0xa1, 0x54, ...
twinaphex/OpenLara
src/platform/libretro/libretro-common/include/file/file_path.h
<filename>src/platform/libretro/libretro-common/include/file/file_path.h /* Copyright (C) 2010-2018 The RetroArch team * * --------------------------------------------------------------------------------------- * The following license statement only applies to this file (file_path.h). * ---------------------------...
twinaphex/OpenLara
src/video.h
<reponame>twinaphex/OpenLara<filename>src/video.h<gh_stars>10-100 #ifndef H_VIDEO #define H_VIDEO #include "utils.h" #include "texture.h" #include "sound.h" struct AC_ENTRY { uint8 code; uint8 skip; uint8 ac; uint8 length; }; // ISO 13818-2 table B-14 static const AC_ENTRY STR_AC[] = { // signBit = (...
twinaphex/OpenLara
src/gapi_gx.h
<filename>src/gapi_gx.h #ifndef H_GAPI_GX #define H_GAPI_GX // TODO #endif
twinaphex/OpenLara
src/cache.h
<filename>src/cache.h #ifndef H_CACHE #define H_CACHE #include "core.h" #include "format.h" #include "controller.h" #include "camera.h" #define NO_CLIP_PLANE 1000000.0f #if defined(_OS_IOS) || defined(_GAPI_D3D9) || defined(_GAPI_GXM) #define USE_SCREEN_TEX #endif struct ShaderCache { enum Effect { FX_NONE...
aiden00713/PS09
PS0904/PS090423.c
#include <stdio.h> void afunc(char a[],int n,char b[]); int main(void) { char a[80],b[80]; int n; scanf("%s",a); scanf("%d",&n); afunc(a,n,b); printf("[%s]",b); return 0; } void afunc(char a[],int n,char b[]) { int i,end,j=0,k; for(i=0;a[i]!=0;i++) ...
aiden00713/PS09
PS0903/PS090321.c
#include <stdio.h> int main(void) { int a[80],i=0; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); printf("[%d] ", afunc(a)); for (i=0;a[i]!=0;i++) printf("%d ",a[i]); return 0; } int afunc(int a[]) { int i; int top = a[0]; ...
aiden00713/PS09
PS0904/PS090419.c
<reponame>aiden00713/PS09<filename>PS0904/PS090419.c #include <stdio.h> int afunc(char a[],char b[],char c[]); int main(void) { char a[80],b[80],c[80]; scanf("%s",a); scanf("%s",b); afunc(a,b,c); printf("[%s]\n",c); return 0; } int afunc(char a[],char b[],...
aiden00713/PS09
PS0901/PS090102.c
<filename>PS0901/PS090102.c #include <stdio.h> int main(void) { int a[20]; int i=0,j=0,end; for(i=0;i<20;i++) { scanf("%d",&a[i]); if(a[i]==0) break; } end=i; for(j=end-1;j>0;j--) { printf("%d ",a[j]); } printf("%d",a[0]); return 0; }
aiden00713/PS09
PS0904/PS090408.c
<reponame>aiden00713/PS09 #include <stdio.h> void afunc(char a[],char b[]); int main(void) { char a[80],b[80]; scanf("%s",a); afunc(a,b); printf("[%s]\n",b); return 0; } void afunc(char a[],char b[]) { int i,end,j=0; for(i=0;a[i]!=0;i++) { if(a[i]>='0'...
aiden00713/PS09
PS0903/PS090305.c
<filename>PS0903/PS090305.c #include <stdio.h> int afunc(int a[]); int main(void) { int a[80],i=0; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); printf("[%d]",afunc(a)); return 0; } int afunc(int a[]) { int i,j,sum; for(i=0;a[i]!=0;i++) { ...
aiden00713/PS09
PS0901/PS090136.c
<reponame>aiden00713/PS09 #include <stdio.h> int main(void) { int m[12]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int a,b,i=0,sum=0,d=0; scanf("%d %d",&a,&b); for(i=0;i<a;i++) { sum+=m[i]; } d=sum+b; printf("%d",d); return 0; }
aiden00713/PS09
PS0904/PS090462.c
#include <stdio.h> int main(void) { char a[16]; char b[16]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; int i,j=0,k=0,end; scanf("%s",a); for(i=0;a[i]!=0;i++) { } end=i; for(i=0;i<end;i++) { for(j=0;j<16;j++) { if(a[i]==b[j]) { k++; } } } if...
aiden00713/PS09
PS0901/PS090107.c
#include <stdio.h> int main(void) { int n,i=0,j; int a[80]; scanf("%d",&n); while(n>0) { a[i++]=n%2; n/=2; } for(j=i-1;j>=0;j--) { printf("%d",a[j]); } return 0; }
aiden00713/PS09
PS0904/PS090431.c
<filename>PS0904/PS090431.c #include <stdio.h> void afunc(char a[],char b[]); int main(void) { char a[80],b[80]; gets(a); afunc(a,b); printf("[%s]",b); return 0; } void afunc(char a[],char b[]) { int i,j=0,end; for(i=0;a[i]!=0;i++) { if(a[i]!=' ') { ...
aiden00713/PS09
PS0904/PS090436.c
<filename>PS0904/PS090436.c #include <stdio.h> int afunc(char a[]); int main(void) { char a[80]; gets(a); printf("[%d]",afunc(a)); return 0; } int afunc(char a[]) { char b[80]; int i,end,j=0; for(i=0;a[i]!=0;i++) { if(a[i]>='0' && a[i]<='9') b[j++]=a[i]; ...
aiden00713/PS09
PS0904/PS090461.c
#include <stdio.h> int main(void) { char a[16]; int i,end,j=0; scanf("%s",a); for(i=0;a[i]!=0;i++) { } end=i; for(i=0;i<end;i++) { if(a[i]>='0' && a[i]<='9') { j++; } else { printf("=NO"); return 0; } } printf("=%d",j); return 0; }
aiden00713/PS09
PS0901/PS090108.c
#include <stdio.h> int main(void) { int n,i=0,j,num[80]; scanf("%d",&n); for(;n>0;) //除16 { num[i++]=n%16; n/=16; } char h[]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; for(j=i-1;j>0;j--) //倒著印出 如果設j>=0 就會多印出- { printf("%c-",h[num[j]]); //用j的數字來指定h要印出多少 } ...
aiden00713/PS09
PS0903/PS090315.c
<gh_stars>0 #include <stdio.h> void afunc(int a[],int b[],int n); int main(void) { int a[80],b[80],i=0,n; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); scanf("%d",&n); afunc(a,b,n); for (i=0;b[i]!=0;i++) printf("%d ",b[i]); return ...
aiden00713/PS09
PS0903/PS090302.c
<reponame>aiden00713/PS09<filename>PS0903/PS090302.c #include <stdio.h> int main(void) { int a[81],i=0; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); printf("[%d]\n",afunc(a)); return 0; } int afunc(int a[]) { int i=0,end; for(i=0;a[i]!=0;i++) { ; } re...
aiden00713/PS09
PS0903/PS090332.c
#include <stdio.h> void afunc(int a[],int n); int main(void) { int a[80],n,i; scanf("%d",&n); afunc(a,n); for (i=0;a[i]!=0;i++) printf("%d ",a[i]); return 0; } void afunc(int a[],int n) { int i=0; while(n>0) { a[i++]=n%10; n/=10; } a[i...
aiden00713/PS09
PS090202.c
<reponame>aiden00713/PS09 #include <stdio.h> int main(void) { int num[80][2]; int fail1=0,fail2=0; int i,j=0,end,n,pass; for(i=0;i<80;i++) { scanf("%d",&n); if(n==0) { break; } scanf("%d",&num[i][0]); scanf("%d",&num[i][1]); } end=i; scanf("%d",&pass); for(i=0;i<end;i++) ...
aiden00713/PS09
PS0901/PS090110.c
#include <stdio.h> int main(void) { int n[80]; int i=0,j=0,k=0,m,end; scanf("%d",&m); for(;m>0;) { n[i++]=m%2; m/=2; } end=i; for(i=0;i<end;i++) { if(n[i]==1) k++; } printf("%d",k); return 0; }
aiden00713/PS09
PS0901/PS090103.c
#include <stdio.h> int main(void) { int i,n,end,j=0; int num[80]; for(i=0;i<80;i++) { scanf("%d",&num[i]); if(num[i]==0) break; } end=i; scanf("%d",&n); for(i=0;i<end;i++) { if(num[i]==n) j++; } printf("%d",j); return 0; }
aiden00713/PS09
PS0903/PS090306.c
#include <stdio.h> int afunc(int a[]); int main(void) { int a[80],i=0; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); printf("[%d]",afunc(a)); return 0; } int afunc(int a[]) { int i,j=0; for(i=0;a[i]!=0;i++) { if(a[i]%2==0) j++; } r...
aiden00713/PS09
PS0901/PS090135.c
<reponame>aiden00713/PS09<gh_stars>0 #include <stdio.h> int main(void) { //int num[13]={0,1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月}; int num[]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int n,i=0; scanf("%d",&n); for(i=0;n>num[i];i++) { n-=num[i]; } printf("%d %d",i,n); return 0; }
aiden00713/PS09
PS0901/PS090106.c
#include <stdio.h> int main(void) { int a[10]; int b[10]; int i,j,k=0,end; for(i=0;i<10;i++) { scanf("%d",&a[i]); if(a[i]==0) break; } for(j=0;j<10;j++) { scanf("%d",&b[j]); if(b[j]==0) break; } end=i; for(i=0;i<end;i++) { if(a[i]!=b[i]) k++; } printf("%d",k...
aiden00713/PS09
PS0904/PS090401.c
#include <stdio.h> int afunc(char a[]); int main(void) { char a[80]; scanf("%s",a); printf("[%d]",afunc(a)); return 0; } int afunc(char a[]) { int i,end; for(i=0;a[i]!=0;i++) { } end=i; return end; }
aiden00713/PS09
PS0901/PS090105.c
<filename>PS0901/PS090105.c #include <stdio.h> int main(void) { int i,j=0,end,n; int a[20]; for(i=0;i<20;i++) { scanf("%d",&a[i]); if(a[i]==0) break; } end=i; scanf("%d",&n); if(n>=end) { printf("NO"); } else { for(i=0;i<end;i++) { if(i==n) printf("%d",a[i]); ...
aiden00713/PS09
PS0901/PS090101.c
<reponame>aiden00713/PS09 #include <stdio.h> int main(void) { int i,j; int num[80]; for(i=0;i<80;i++) { scanf("%d",&num[i]); if(num[i]==0) break; } for(j=0;j<i;j++) { printf("%d ",num[j]); } num[j]=0; return 0; }
aiden00713/PS09
PS0903/PS090303.c
<filename>PS0903/PS090303.c<gh_stars>0 #include <stdio.h> void afunc(int a[]); int main(void) { int a[80],i; afunc(a); for (i=0;a[i]!=0;i++) printf("%d ",a[i]); return 0; } void afunc(int a[]) { int i; for(i=0;i<80;i++) { scanf("%d",&a[i]); if(a[i]==...
aiden00713/PS09
PS0904/PS090412.c
#include <stdio.h> void afunc(char a[]); int main(void) { char a[80]; scanf("%s",a); afunc(a); printf("[%s]\n",a); return 0; } void afunc(char a[]) { int i,end,j=0; char b[80]; for(i=0;a[i]!=0;i++) { } end=i; for(i=0;i<end;i++) { if(a[i]>='A'...
aiden00713/PS09
PS0903/PS090324.c
<reponame>aiden00713/PS09 #include <stdio.h> void afunc(int a[],int m,int n); int main(void) { int a[80],i=0,n,m; scanf("%d",&a[i]); while (a[i]!=0) scanf("%d",&a[++i]); scanf("%d%d",&m,&n); afunc(a,m,n); for (i=0;a[i]!=0;i++) printf("%d ",a[i...
aiden00713/PS09
PS0901/PS090138.c
#include <stdio.h> int main(void) { int n,m,sum,sum2,i; int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; scanf("%d",&n); scanf("%d",&m); for(i=0;i<n;i++) { sum+=a[i]; } sum2=(sum+m+6)%7; printf("%d",sum2); return 0; }
madhupolisetti/iossdk
SMSCountryApi/Classes/CompletionBlocks.h
// // CompletionBlocks.h // SMSCountryApi // // Created by <NAME> on 03/10/16. // Copyright © 2016 SMS Country. All rights reserved. // typedef void (^ErrorBlock)(RKObjectRequestOperation *operation, NSError *error);
madhupolisetti/iossdk
Example/SMSCountryApi/SCViewController.h
<gh_stars>0 // // SCViewController.h // SMSCountryApi // // Created by <NAME> on 10/04/2016. // Copyright (c) 2016 <NAME>. All rights reserved. // @import UIKit; @interface SCViewController : UIViewController @end
madhupolisetti/iossdk
SMSCountryApi/Classes/SMSService.h
// // SMSService.h // SMSCountryApi // // Created by <NAME> on 03/10/16. // Copyright © 2016 SMS Country. All rights reserved. // #import <Foundation/Foundation.h> #import "SendSMSRequest.h" #import "SendSMSResponse.h" #import "SMSCountryApi.h" #import "CompletionBlocks.h" typedef void (^SendSMSSuccessBlock)(Send...
madhupolisetti/iossdk
SMSCountryApi/Classes/SendSMSResponse.h
<gh_stars>0 // // SendSMSResponse.h // SMSCountryApi // // Created by <NAME> on 04/10/16. // Copyright © 2016 SMS Country. All rights reserved. // #import "BaseResponse.h" @interface SendSMSResponse: BaseResponse @property (nonatomic, strong) NSString *messageUUID; @end
madhupolisetti/iossdk
Example/Pods/Target Support Files/Pods-SMSCountryApi_Example/Pods-SMSCountryApi_Example-umbrella.h
#import <UIKit/UIKit.h> FOUNDATION_EXPORT double Pods_SMSCountryApi_ExampleVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_SMSCountryApi_ExampleVersionString[];
madhupolisetti/iossdk
Example/Pods/Target Support Files/Pods-SMSCountryApi_Tests/Pods-SMSCountryApi_Tests-umbrella.h
#import <UIKit/UIKit.h> FOUNDATION_EXPORT double Pods_SMSCountryApi_TestsVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_SMSCountryApi_TestsVersionString[];