Sophie

Sophie

distrib > Mandriva > 9.2 > i586 > by-pkgid > cb5625aca3e4def202f3617de4d26932 > files > 74

c2hs-0.9.9-2mdk.i586.rpm

#ifndef _POINTER_H
#define _POINTER_H

typedef char *string;

string concat (string str1, string str2);

struct _Point {
  int x, y;
};

typedef struct _Point Point;

typedef struct _Point *PointPtr;

Point *make_point (int x, int y);

Point *trans_point (Point *pnt, int x, int y);

typedef void (*FunPtrFun) (void *data);

typedef char **stringPtr;

#endif /* !_POINTER_H */