/* Copyright (c) 2006 Rice University */ /* All Rights Reserved */ /* This code is covered by the Rice-WARP license */ /* See http://warp.rice.edu/license/ for details */ #ifndef WARPLIB_H #define WARPLIB_H // quick test function that prints a statement void WarpLib_test(void); // a basic int to character converter char WarpLib_itoc(int x); // a basic character to int converter int WarpLib_ctoi(char c); // character to 7-segment code converter int WarpLib_segmap(char x); #endif