forked from KolibriOS/kolibrios
2e97f212ae
git-svn-id: svn://kolibrios.org@9763 a494cfbc-eb01-0410-851d-a64ba20cac60
21 lines
383 B
C
Executable File
21 lines
383 B
C
Executable File
#ifndef FUNC_H
|
|
#define FUNC_H
|
|
|
|
#define ERROR 8888888888.9
|
|
#define ERROR_END 8888888888.7
|
|
|
|
extern char debuf[50];
|
|
|
|
typedef struct {
|
|
double x, y;
|
|
} TCoord;
|
|
|
|
double textwidth(const char* s, int len);
|
|
double textheight(const char* s, int len);
|
|
|
|
typedef double (*function_t)(double);
|
|
int isalpha(char c);
|
|
double convert(const char* s, int* len);
|
|
|
|
#endif /* FUNC_H */
|