Merge branch 'testing'

This commit is contained in:
R. Eric Wheeler 2015-07-15 14:03:06 -07:00
commit 1b36bbdfd9
1 changed files with 15 additions and 0 deletions

15
examples/example.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pipecolors.h>
main() {
int a,b;
const char* str = "|0101|0202|0303|0404|0505|0606|0707|0808|0909|1010|1111|1212|1313|1414|1515|07";
const char* name = "|01P|02i|03p|04e|05c|06ol|07o|08r|09s |10l|11i|12b|13r|14a|15r|14y |130|12.|111|07";
a = pcprintf("\n%s\n\n", name);
b = pcprintf("%s\n", str);
}