10 lines
174 B
C
10 lines
174 B
C
|
#ifndef _PINFO_H
|
||
|
#define _PINFO_H
|
||
|
|
||
|
void ls(int); /* Left side of block */
|
||
|
void rs(int); /* Right side of block */
|
||
|
void cr(void); /* Show product info screen */
|
||
|
|
||
|
#endif
|
||
|
|