// floatToString.h // // Tim Hirzel // tim@growdown.com // March 2008 // float to string // // If you don't save this as a .h, you will want to remove the default arguments // uncomment this first line, and swap it for the next. I don't think keyword arguments compile in .pde files #include "WProgram.h" char * floatToString(char * outstr, float value, int places, int minwidth, bool rightjustify, bool terminate);