Skip to content

Instantly share code, notes, and snippets.

View FlyingJester's full-sized avatar

Martin McDonough FlyingJester

View GitHub Profile
include <stdlib.h>
#include <ncurses.h>
/* setting up typing function */
char * nr_echo( int start_y, int start_x, int h, int w ){
int ch, y, x, end_y, end_x, ch_count ;
int ch_count_in;
char *stored_line;
stored_line = malloc(100000);
@FlyingJester
FlyingJester / oh-god-windows.md
Created September 20, 2016 19:49 — forked from fasterthanlime/oh-god-windows.md
Getting rock 0.9.9 to make 32-bit binaries with MSYS2 on Windows

It seems the command-line toolchain of choice changes every fortnight on Windows (except if you're in the MSVC camp, but that's a no-go for ooc at the time of this writing).

The new kid on the block is msys2, which I first had doubts about, but it turns out it's a great way to get a shell, install the packages you need via pacman (!) and get started with ooc on windows.

MSYS2 32-bit