repo_name
stringlengths
5
122
path
stringlengths
3
232
text
stringlengths
6
1.05M
zbigg/sandbox
json_mo_writer.h
<gh_stars>0 // // Copyright (c) 2014, <NAME> // This software licensed under terms described in LICENSE.txt // #ifndef json_mo_writer_h_included #define json_mo_writer_h_included #include "tinfra/json.h" // for json_renderer, json_writer #include "tinfra/mo.h" // for mo_process #include "tinfra/stream.h" // for o...
zbigg/sandbox
http.h
<filename>http.h<gh_stars>0 #ifndef tinfra_http_h_included_ #define tinfra_http_h_included_ #include "parser.h" #include "lazy_byte_consumer.h" #include <tinfra/tstring.h> #include <tinfra/stream.h> //#include <tinfra/optional.h> namespace tinfra { namespace http { enum protocol_version { HTTP_1_0, HTT...
zbigg/sandbox
msp430/msp430_hello_led.c
<reponame>zbigg/sandbox #include <msp430.h> int main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer P1DIR |= 0x01; // Set P1.0 to output direction for (;;) { volatile unsigned int i; P1OUT ^= 0x01; // Toggle P1.0 using excl...
zbigg/sandbox
json_mo_parser.h
<gh_stars>0 #ifndef json_mo_parser_h_included #define json_mo_parser_h_included #include "tinfra/json.h" #include "tinfra/lex.h" #include "tinfra/fmt.h" #include "tinfra/trace.h" #include "tinfra/mo.h" #include <vector> #include <string> // namespace tinfra { extern tinfra::module_tracer json_mo_parser_tracer; cla...
zbigg/sandbox
birdplus.h
<filename>birdplus.h #ifndef birdblus_h_included #define birdblus_h_included #include <type_traits> #include <functional> #include <memory> #include <cassert> #include <vector> #include <exception> #include <algorithm> #include <iostream> namespace birdplus { /* Promise::resolve(T) -> Promise<T> Promise::resolve(P...
zbigg/sandbox
msp430/msp430_hello_world_led_interrupts.c
<filename>msp430/msp430_hello_world_led_interrupts.c #include <msp430.h> #define LED_0 BIT0 #define LED_1 BIT6 #define LED_OUT P1OUT #define LED_DIR P1DIR unsigned int timerCount = 0; void main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer LED_DIR |= (LED_0 + LED_1); // Set P1.0 and P1.6 to outp...
zbigg/sandbox
parser.h
<filename>parser.h // // Copyright (C) 2008 <NAME> <<EMAIL>>, // licensed to the public under the terms of the GNU GPL (>= 2) // see the file COPYING for details // I.e., do what you like, but keep copyright and there's NO WARRANTY. // #ifndef tinfra_parser_h__ #define tinfra_parser_h__ #include "tinfra/tstring.h" n...
Labmann004/Minesweeper
tile.h
#pragma once #include <SFML/Graphics.hpp> #include <iostream> #include <fstream> #include "textureManager.h" #include <cstdlib> #include <map> using namespace std; using namespace sf; class tile { public: vector<tile> adjacent; int displayCondition ; //contains all realConditions but has its own...
Labmann004/Minesweeper
board.h
<filename>board.h #pragma once #include "tile.h" #include <vector> #include <random> #include "textureManager.h" #include <string> textureManage manager; map<string, Sprite> tileSpriteMap = manager.tileTextures(); map<string, Sprite> boardSpriteMap = manager.boardElements(); #define width 32 class board { pu...
Labmann004/Minesweeper
textureManager.h
<gh_stars>0 #pragma once #include <SFML/Graphics.hpp> #include <map> using namespace std; using namespace sf; class textureManage { public: Texture one; Texture two; Texture three; Texture four; Texture five; Texture six; Texture seven; Texture eight; Texture hidden; Texture revealed; Textur...
musicinmybrain/fast_float
tests/build_tests/issue72/test.h
<filename>tests/build_tests/issue72/test.h #pragma once #include "fast_float/fast_float.h"
fakeid30/UVA-problems
Jumping Mario!.c
<filename>Jumping Mario!.c #include<stdio.h> int main() { int T,N,Array[50],i,j,c1,c2; scanf("%d",&T); for(i=1;i<=T;i++) { c1=0; c2=0; scanf("%d",&N); for(j=0;j<N;j++) { scanf("%d",&Array[j]); } for(j=0;j<N-1;j++) { ...
fakeid30/UVA-problems
Beat the spread.c
<reponame>fakeid30/UVA-problems<filename>Beat the spread.c #include<stdio.h> int main() { int t,s,d,i,r; scanf("%d",&t); while(t--) { i=0; scanf("%d%d",&s,&d); if(d>s || (s+d)%2!=0) { printf("impossible\n"); } else { i=(s+d)...
fakeid30/UVA-problems
Above average.c
#include<stdio.h> int main() { // test add int t,i=1,j,n,array_num[1000],c,sum; double avg,total; scanf("%d",&t); while(t--) { c=0; sum=0; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&array_num[i]); sum=sum+array_num[i]; }...
fakeid30/UVA-problems
Hello world.c
#include<stdio.h> int main() { int n,c,i,j=1; while(scanf("%d",&n)) { if(n<0) { break; } c=0; i=1; while(i<n) { i=i+c; c++; } printf("Case %d: %d\n",j,c); j++; } return 0; }
fakeid30/UVA-problems
Cola.c
#include<stdio.h> int main() { int n,sum; while(scanf("%d",&n)==1) { sum=n; while(n>=3) { sum=sum+n/3; n=n/3+n%3; } if(n==2) { sum++; } printf("%d\n",sum); } return 0; }
fakeid30/UVA-problems
Leap year or Not leap year and....c
#include<stdio.h> int main() { int year; while(scanf("%d",&year)!=EOF) { if((year%400==0) || (year%4==0 && year%100!=0)) { printf("This is leap year.\n"); if(year%15==0) { printf("This is huluculu festival year.\n"); } ...
fakeid30/UVA-problems
Etruscan warriors never play chess.c
<gh_stars>1-10 #include<stdio.h> #include<math.h> int main() { long long int n,sum,t; scanf("%lld",&t); while(t--) { scanf("%lld",&n); sum=((sqrt(1+8*n))-1)/2; printf("%lld\n",sum); } return 0; }
fakeid30/UVA-problems
Brick game.c
<filename>Brick game.c #include<stdio.h> int main() { int test,i,j,array[9],n; scanf("%d",&test); if(test<=100) { for(i=1;i<=test;i++) { scanf("%d",&n); for(j=0;j<n;j++) { scanf("%d",&array[j]); } printf("Case %d...
fakeid30/UVA-problems
Back to high school physics.c
#include<stdio.h> int main() { int v,t; while(scanf("%d%d",&v,&t)!=EOF) { printf("%d\n",2*v*t); } return 0; }
fakeid30/UVA-problems
What's the frequency.c
#include<stdio.h> #include<string.h> int main() { char string[1000000],i,l,ch[1000000],j,c; while(gets(string)) { l=strlen(string); for(i=0;i<l;i++) { ch[i]=-1; } for(i=0;i<l;i++) { c=1; for(j=i+1;j<l;j++) { ...
fakeid30/UVA-problems
Cost cutting.c
<reponame>fakeid30/UVA-problems<gh_stars>1-10 #include<stdio.h> int main() { int a,b,c,t,i=1; scanf("%d",&t); while(i<=t && t<20) { scanf("%d%d%d",&a,&b,&c); if(a<1000 || a>10000 || b<1000 || b>10000 || c<1000 || c>10000) { break; } if((a<=b && a>=c) |...
fakeid30/UVA-problems
Train swapping.c
#include<stdio.h> int main() { int n,l,array[51],i,j,k,t; scanf("%d",&n); while(n--) { k=0; scanf("%d",&l); for(i=0;i<l;i++) { scanf("%d",&array[i]); } } return 0; }
fakeid30/UVA-problems
To carry or not to carry.c
<reponame>fakeid30/UVA-problems #include<stdio.h> int main() { int x,y; while(scanf("%d%d",&x,&y)!=EOF) { printf("%d\n",x^y); } return 0; }
fakeid30/UVA-problems
Searching for Nessy.c
<reponame>fakeid30/UVA-problems<filename>Searching for Nessy.c<gh_stars>1-10 #include<stdio.h> int main() { int t,a,b,i; scanf("%d",&t); while(t--) { scanf("%d%d",&a,&b); a=a/3; b=b/3; printf("%d\n",a*b); } return 0; }
fakeid30/UVA-problems
one, two, three.c
<gh_stars>1-10 #include<stdio.h> int main() { int t; char string[10]; scanf("%d",&t); while(t--) { scanf("%s",&string); if(string[0]=='o' || string[1]=='n' || string[2]=='e') { printf("1\n"); } else if(string[0]=='t' || string[1]=='w' || string[2]=...
fakeid30/UVA-problems
Primary Arithmetic.c
#include<stdio.h> int main() { long int a,b; int s,c; while(scanf("%ld%ld",&a,&b)) { if(a==0 && b==0) { break; } c=0; s=0; while(a||b) { s=(a%10+b%10+s)/10; a=a/10; b=b/10; c=c+s; ...
fakeid30/UVA-problems
TEX Quotes.c
#include<stdio.h> #include<string.h> int main() { char string[10000]; int i,c,l; while(gets(string)) { l=0; c=0; l=strlen(string); for(i=0;i<l;i++) { if(string[i]=='"') { c++; if(c%2==0) { ...
fakeid30/UVA-problems
Hajj e akbar.c
#include<stdio.h> int main() { char s[5]; int i=1; while(gets(s)) { if(s[0]=='*') { break; } if(s[0]=='H') { printf("Case %d: Hajj-e-Akbar\n",i); } else if(s[0]=='U') { printf("Case %d: Hajj-e-Asghar\n",i...
fakeid30/UVA-problems
Dollars.c
<filename>Dollars.c #include<stdio.h> int main() { int dollars; while(scanf("%d",&dollars)!=EOF) { } return 0; }
fakeid30/UVA-problems
Automate the grades.c
#include<stdio.h> int main() { int t,i,trm1,trm2,fnl,A,T1,T2,T3,s; float av,total; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d%d%d%d%d%d%d",&trm1,&trm2,&fnl,&A,&T1,&T2,&T3); if(T1<T2) { s=T2; T2=T1; T1=s; } if(T2<T3) ...
fakeid30/UVA-problems
Event planning.c
<gh_stars>1-10 #include<stdio.h> int main() { int pa,b,h,w,p,be[13],i,array[18],j; while(scanf("%d%d%d%d",&pa,&b,&h,&w)!=EOF) { i=0; while(i<h) { scanf("%d",&p); for(j=1;j<=w;j++) { scanf("%d",&be[j]); if(be[j]<pa) ...
fakeid30/UVA-problems
Packing for holiday.c
<gh_stars>1-10 #include<stdio.h> int main() { int t,l,w,h,i; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d%d%d",&l,&w,&h); if(l<=20 && w<=20 && h<=20) { printf("Case %d: good\n",i); } else { printf("Case %d: bad\n",i); } ...
fakeid30/UVA-problems
Optimal parking.c
#include<stdio.h> int main() { int t,i,n,array[20],m,j; scanf("%d",&t); while(t--) { scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&array[i]); } m=array[0]; for(i=1;i<n;i++) { if(m>array[i]) { m=a...
fakeid30/UVA-problems
The decoder.c
<filename>The decoder.c<gh_stars>1-10 #include<stdio.h> #include<string.h> int main() { int l,i; char string[1000]; gets(string); l=strlen(string); for(i=0;i<l;i++) { string[i]=string[i]-7; } printf("%s\n",string); return 0; }
fakeid30/UVA-problems
Google is feeling lucky.c
<reponame>fakeid30/UVA-problems #include<stdio.h> #include<string.h> int amin() { int t,r,i,j,k; char string[100],string2[10]; scanf("%d",&t); for(i=1;i<=t;i++) { for(j=1;j<=10;j++) { scanf("%d",&r); } } }
fakeid30/UVA-problems
Lazy lumberjacks.c
<filename>Lazy lumberjacks.c<gh_stars>1-10 #include<stdio.h> int main() { int t,a,b,c,i; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d%d%d",&a,&b,&c); if(a>0 && b>0 && c>0) { if((a+b)>c && (b+c)>a && (c+a)>b) { printf("OK\n"); }...
fakeid30/UVA-problems
Peter's smokes.c
<reponame>fakeid30/UVA-problems #include<stdio.h> int main() { int c,a,sum; while(scanf("%d%d",&c,&a)!=EOF) { sum=c; while(c>=a) { sum=sum+c/a; c=c/a+c%a; } printf("%d\n",sum); } return 0; }
fakeid30/UVA-problems
Lumberjack Sequencing.c
#include<stdio.h> int main() { int n,array[10],i,d,a; scanf("%d",&n); printf("Lumberjacks:\n"); while(n--) { d=0; a=0; for(i=0;i<10;i++) { scanf("%d",&array[i]); } for(i=1;i<10;i++) { if(array[i-1]>=array[i]) ...
fakeid30/UVA-problems
Kindergarten counting game.c
<filename>Kindergarten counting game.c #include<stdio.h> #include<string.h> int main() { char string[100000],c,i,l; while(gets(string)) { l=strlen(string); c=0; for(i=0;i<l;i++) { if(string[i]==32) { } } printf("%d\n",c+1);...
fakeid30/UVA-problems
Back to intermidiate math.c
#include<stdio.h> #include<math.h> int main() { int t,i; double p,r,d,v,u; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%lf%lf%lf",&d,&v,&u); p=d/u; r=d/(sqrt(u*u-v*v)); if(v>=u || p==r) { printf("Case %d: can't determine\n",i); continue;...
fakeid30/UVA-problems
Feynman.c
#include<stdio.h> int main() { int N,i,s; while(scanf("%d",&N)!=EOF) { if(N==0) { break; } s=0; for(i=1;i<=N;i++) { s=s+i*i; } printf("%d\n",s); } return 0; }
fakeid30/UVA-problems
Average speed.c
<reponame>fakeid30/UVA-problems<filename>Average speed.c<gh_stars>1-10 #include<stdio.h> #include<string.h> int main() { char s[100000],s1[100000]; int i,l,l1,s=0,s1=0; scanf("%[^\n]",s); scanf("%[^\n]",s1); l=strlen(l); l1=strlen(l1); for(i=0;i<l;i++) { if(s[i]=='|') { ...
fakeid30/UVA-problems
Power of cryptography.c
#include<stdio.h> int main() { int n,i,j,k,array[10],t,g; char string[12],st[12]; while(scanf("%d",&n)) { for(i=0;i<n;i++) { scanf("%s ",&string[i]); } for(i=0;i<n;i++) { printf("%s %d\n",string[i],array[i]); } } return 0; }...
fakeid30/UVA-problems
Three families.c
<gh_stars>1-10 #include<stdio.h> int main() { int t; float a,b,p,s; scanf("%d",&t); while(t--) { scanf("%f%f%f",&a,&b,&p); s=0; s=(a+b)/3; a=a-s; b=b-s; s=a+b; p=p/s; printf("%.0f\n",a*p); } return 0; }
fakeid30/UVA-problems
uva 113.c
#include<stdio.h> int main() { unsigned long long p; int n,k; while(scanf("%d%llu",&n,&p)!=EOF) { k=0; while(p!=1) { p=(float)p/n; k++; } printf("%d\n",k); } return 0; }
fakeid30/UVA-problems
Flag problem.c
<reponame>fakeid30/UVA-problems #include<stdio.h> int main() { int t,l; float r,g; scanf("%d",&t); while(t--) { scanf("%d",&l); r=3.1416*(l/5.0)*(l/5.0); g=(l*((6*l)/10))-r; printf("%.2f %.2f\n",r,g); } return 0; }
fakeid30/UVA-problems
Language Detection.c
<gh_stars>1-10 #include<stdio.h> int main() { char string[14]; int i=1; while(scanf("%s",string)!=EOF && string[0]!='#') { if(string[0]=='H' && string[1]=='E' && string[2]=='L' && string[3]=='L' && string[4]=='O') { printf("Case %d: ENGLISH\n",i); } else if(st...
fakeid30/UVA-problems
Skew binary 575.c
#include<stdio.h> #include<math.h> #include<string.h> int main() { char k[1000]; int i,n,s,c,l; while(gets(k)) { if(k[0]=='0') { break; } l=strlen(k); s=0; for(i=l-1,c=1;i>=0;i--,c++) { k[i]=k[i]-48; s=s+k[i]*(po...
fakeid30/UVA-problems
Emoogle Balance.c
#include<stdio.h> int main() { int n,array[100],i,c,c1,j=1; while(1) { c=0; c1=0; scanf("%d",&n); if(n==0) { break; } for(i=0;i<n;i++) { scanf("%d",&array[i]); } for(i=0;i<n;i++) { if(...
fakeid30/UVA-problems
Save shetu.c
<reponame>fakeid30/UVA-problems<filename>Save shetu.c<gh_stars>1-10 #include<stdio.h> int main() { int a=0,t,k,op1[6],op2[6]; scanf("%d",&t); while(t--) { if(t%2!=0) { scanf("%s %d",&op1,&k); a=a+k; } else { scanf("%s",&op2); ...
fakeid30/UVA-problems
Happy number.c
#include<stdio.h> int main() { int a; scanf("%d",&t); for(i=1;i<=t;i++) { } }
fakeid30/UVA-problems
Ugly numbers.c
#include<stdio.h> int main() { int n,i=1,c=0; while(c!=1500) { if(i%2==0 || i%3==0 || i%5==0) { c++; } i++; } printf("The 1500'th ugly number is %d.\n",i-1); return 0; }
fakeid30/UVA-problems
pizza cutting.c
#include<stdio.h> int main() { long int N; while(scanf("%ld",&N)) { if(N<0) { break; } printf("%ld\n",N*(N+1)/2+1); } return 0; }
fakeid30/UVA-problems
10302u.c
<gh_stars>1-10 #include<stdio.h> int main() { int x; unsigned long long int y; while(scanf("%lld",&x)!=EOF) { y=0; while(x) { y=y+x*x*x; x--; } printf("%llu\n",y); } return 0; }
fakeid30/UVA-problems
Anagram.c
#include<stdio.h> #include<string.h> int main() { int t,i,j,m,l; char s[100000]; scanf("%d",&t); while(t--) { scanf("%s",&s); l=strlen(s); for(i=0;i<l;i++) { for(j=i;j<l;j++) { if(s[i]>=s[j]) { ...
fakeid30/UVA-problems
Celebrity jeopardy.c
<gh_stars>1-10 #include<stdio.h> int main() { char x[10000]; while(gets(x)) { printf("%s\n",x); } return 0; }
fakeid30/UVA-problems
Relational operator.c
<reponame>fakeid30/UVA-problems #include<stdio.h> int main() { int t,a,b,i; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d%d",&a,&b); if(a>b) { printf(">\n"); } else if(a<b) { printf("<\n"); } else { ...
fakeid30/UVA-problems
Bafana Bafana.c
#include<stdio.h> int main() { int t,i,n,k,p,j; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d%d%d",&n,&k,&p); for(j=1;j<=p;j++) { if(k==n) { k=0; } k++; } printf("Case %d: %d\n",i,k); } return...
fakeid30/UVA-problems
How old are you.c
#include<stdio.h> int main() { int t,i,d1,m1,y1,d2,m2,y2,age; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d/%d/%d",&d1,&m1,&y1); scanf("%d/%d/%d",&d2,&m2,&y2); age=0; age=y1-y2; if(m2>m1) { age--; } else if(m2==m1) { ...
fakeid30/UVA-problems
Joanna and the odd numbers.c
#include<stdio.h> int main() { unsigned long long x,y; int n,i; while(scanf("%d",&n)!=EOF) { x=n; y=n; for(i=1;i<n;i++) { x=x+2; y=y+x; } printf("%llu\n",y); } return 0; }
fakeid30/UVA-problems
Big chocolate.c
<gh_stars>1-10 #include<stdio.h> int main() { int m,n; while(scanf("%d%d",&m,&n)!=EOF) { printf("%d\n",m-1+(n-1)*m); } return 0; }
kaylabuki/internship-application-systems
pinger.c
<filename>pinger.c #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <string.h> #include <time.h> int main(int argc, char** argv){ if(argc != 2){ fprintf(stderr, "Proper usage: pinger hostname | IP address"); } char* hostname = argv[1]; char str_cmd[10 + strlen(hostname)]; strcpy(str_c...
Werkspot/php-stemmer
stemmer.c
<filename>stemmer.c #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "php.h" #include "php_stemmer.h" #include "libstemmer_c/include/libstemmer.h" ZEND_BEGIN_ARG_INFO_EX(arginfo_void, 0, 0, 0) ZEND_END_ARG_INFO() static zend_function_entry stemmer_functions[] = { PHP_FE(stemword, arginfo_void) {NULL,...
Werkspot/php-stemmer
php_stemmer.h
#ifndef PHP_STEMMER_PHP_H #define PHP_STEMMER_PHP_H 1 #define PHP_STEMMER_VERSION "1.0" #define PHP_STEMMER_EXTNAME "stemmer" PHP_FUNCTION(stemword); extern zend_module_entry stemmer_module_entry; #define phpext_stemmer_ptr &stemmer_module_entry #endif #ifndef TSRMLS_CC #define TSRMLS_CC #endif
symfund/lv_port_linux_frame_buffer
LVGL.DLL/LVGL_API.h
<gh_stars>1-10 #if !defined (__LVGL_API_H__) #define __LVGL_API_H__ #ifdef __cplusplus extern "C" { #endif #define CALLBACK __stdcall # if defined (_WINDLL) # define HMIAPI __declspec(dllexport) # else # define HMIAPI __declspec(dllimport) # endif HMIAPI int CALLBACK HMI_DllMain(void); HMIAPI void CALLBACK HM...
symfund/lv_port_linux_frame_buffer
LVGL.DLL/LVGL.DLL.c
 #include "LVGL_API.h" #include "../lvgl/lvgl.h" #include <Windows.h> #include <windowsx.h> #include <VersionHelpers.h> #include "resource.h" #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifndef WIN32DRV_MONITOR_ZOOM #define WIN32DRV_MONITOR_ZOOM 1 #endif //////////////////////////////////////////...
symfund/lv_port_linux_frame_buffer
lvgl/examples/assets/imgbtn_mid.c
<reponame>symfund/lv_port_linux_frame_buffer<filename>lvgl/examples/assets/imgbtn_mid.c #if defined(LV_LVGL_H_INCLUDE_SIMPLE) #include "lvgl.h" #else #include "../../lvgl.h" #endif #ifndef LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_MEM_ALIGN #endif #ifndef LV_ATTRIBUTE_IMG_IMGBTN_MID #define LV_ATTRIBUTE_IMG_IMGBTN...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Types.h
<gh_stars>0 /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restric...
marek-cel/fightersfs-tools
missions_editor/src/editor/ObjectiveAltitude.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Geo.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/gui/MainWindow.h
<filename>missions_editor/src/gui/MainWindow.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to d...
marek-cel/fightersfs-tools
missions_editor/src/Languages.h
<gh_stars>0 /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restric...
marek-cel/fightersfs-tools
missions_editor/src/gui/WidgetEditUnit.h
<gh_stars>0 /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restric...
marek-cel/fightersfs-tools
missions_editor/src/editor/Unit.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/editor/Message.h
<reponame>marek-cel/fightersfs-tools /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the...
marek-cel/fightersfs-tools
terrain_generator/src/gui/GraphicsWindowQt.h
<filename>terrain_generator/src/gui/GraphicsWindowQt.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"),...
marek-cel/fightersfs-tools
missions_editor/src/cgi/SceneRoot.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Document.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gen/LandCover.h
<gh_stars>0 /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restric...
marek-cel/fightersfs-tools
missions_editor/src/editor/Mission.h
<filename>missions_editor/src/editor/Mission.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to d...
marek-cel/fightersfs-tools
missions_editor/src/editor/Route.h
<reponame>marek-cel/fightersfs-tools<gh_stars>0 /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to ...
marek-cel/fightersfs-tools
missions_editor/src/gui/WidgetDoc.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/cgi/VisitorLOD.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/cgi/Camera.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, i...
marek-cel/fightersfs-tools
missions_editor/src/editor/Text.h
<reponame>marek-cel/fightersfs-tools /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the...
marek-cel/fightersfs-tools
missions_editor/src/editor/Stage.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/editor/Misc.h
<filename>missions_editor/src/editor/Misc.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal...
marek-cel/fightersfs-tools
terrain_generator/src/gen/ListGeoTIFF.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gui/RecentFileAction.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Terrain.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/gen/GeoTIFF.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
missions_editor/src/gui/DialogEditObjectiveDestroy.h
<reponame>marek-cel/fightersfs-tools<filename>missions_editor/src/gui/DialogEditObjectiveDestroy.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and asso...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Common.h
/****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, includ...
marek-cel/fightersfs-tools
terrain_generator/src/defs.h
#ifndef DEFS_H #define DEFS_H //////////////////////////////////////////////////////////////////////////////// #define APP_TITLE "FightersFS Terrain Generator" #define APP_NAME "FightersFS_Terrain_Generator" #define APP_VER "1.0" #define ORG_NAME "Marek_Cel" #define ORG_DOMAIN "marekcel.pl" /////////////////...
marek-cel/fightersfs-tools
terrain_generator/src/gen/Tile.h
<reponame>marek-cel/fightersfs-tools<filename>terrain_generator/src/gen/Tile.h /****************************************************************************//* * Copyright (C) 2020 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation...
hellochenms/m4-scroll-half-stop
m4-scroll-half-stop/m2/M4Status3ScrollViewHelper.h
<reponame>hellochenms/m4-scroll-half-stop<filename>m4-scroll-half-stop/m2/M4Status3ScrollViewHelper.h // // M4Status3ScrollViewHelper.h // m4-scroll-half-stop // // Created by Chen,Meisong on 2018/10/23. // Copyright © 2018年 xyz.chenms. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @int...
hellochenms/m4-scroll-half-stop
m4-scroll-half-stop/m2/M4TouchPenetrateScrollView.h
<reponame>hellochenms/m4-scroll-half-stop // // M4TouchPenetrateScrollView.h // m4-scroll-half-stop // // Created by Chen,Meisong on 2018/10/23. // Copyright © 2018年 xyz.chenms. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface M4TouchPenetrateScrollView : UITableView @end NS_A...
ashuping/m328pb_sound_processing
goertzel.c
<gh_stars>0 /* ATMega238pb sound processing experiments - Goertzel algorithm and related operations Copyright 2019 <NAME> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apa...
ashuping/m328pb_sound_processing
project.c
<filename>project.c /* ATMega238pb sound processing experiments - main file Copyright 2019 <NAME> 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/LICE...