source: PlatformSupport/WARP_Libraries/warplib.h

Last change on this file was 342, checked in by snovich, 18 years ago

Added License Info

File size: 520 bytes
Line 
1/* Copyright (c) 2006 Rice University */ 
2/* All Rights Reserved */ 
3/* This code is covered by the Rice-WARP license */ 
4/* See http://warp.rice.edu/license/ for details */ 
5
6
7#ifndef WARPLIB_H
8#define WARPLIB_H
9
10
11// quick test function that prints a statement
12void WarpLib_test(void);
13
14// a basic int to character converter
15char WarpLib_itoc(int x);
16
17// a basic character to int converter
18int WarpLib_ctoi(char c);
19
20// character to 7-segment code converter
21int WarpLib_segmap(char x);
22
23#endif
24
Note: See TracBrowser for help on using the repository browser.