Go to file
R. Eric Wheeler 3e3a377f27 Cleaned up directory structure 2015-07-15 10:46:41 -07:00
examples Removed std::map requirement 2015-07-15 08:27:11 -07:00
man Cleaned up directory structure 2015-07-15 10:46:41 -07:00
releases gitignore 2015-07-14 17:51:32 -07:00
src Cleaned up directory structure 2015-07-15 10:46:41 -07:00
.gitignore Cleaned up directory structure 2015-07-15 10:46:41 -07:00
COPYING Modified license 2015-07-01 08:13:20 -07:00
ChangeLog Initial Commit 2015-07-01 07:44:53 -07:00
INSTALL Modified license 2015-07-01 08:13:20 -07:00
LICENSE Modified license 2015-07-01 08:13:20 -07:00
Makefile.am Cleaned up directory structure 2015-07-15 10:46:41 -07:00
README.md Finally update README.md 2015-07-15 08:56:02 -07:00
acinclude.m4 Initial Commit 2015-07-01 07:44:53 -07:00
autogen.sh Fixes 2015-07-07 15:09:36 -07:00
configure.ac Cleaned up directory structure 2015-07-15 10:46:41 -07:00

README.md

libpipecolors

This library parses input like printf and sprintf but instead of returning a boring string it will replace renegade bbs style pipecodes (|09) with their ansi equivelent.

It has two functions -

int pcprintf(const char * format, ...);
int pcsprintf(char * str, const char * format, ...);

To Do

  • Remove std::map requirement
  • Remove boost requirement without forcing -std=c++11

Example use

#include <cstdio>
#include <iostream>
#include <pipecolors.h>

using namespace pipecolors;

int main(void) {

  int num = 5;
  const char* str = "My number is";
  pcprintf("|02%s |10%d|39\n", str, num);

  return 0;
}

This would return \x1b[0;32mMy number is \x1b[0;92m5\x1b[0;39m\n, Printing str in dark green and num in light green