File: text.h

package info (click to toggle)
vdr-plugin-games 0.6.3-39
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 576 kB
  • sloc: cpp: 9,884; sh: 180; makefile: 146
file content (13 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _TEXT_H_
#define _TEXT_H_

namespace Txt {

int height(void);
int width(const char *txt);
int width(char c);
int print(int x, int y, const char *txt, int fg, int bg=0);

} // namespace

#endif