Extra Examples

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10790 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Cheryl Foil 2008-08-18 18:30:21 +00:00
commit ad0a3d9179
9 changed files with 63 additions and 16 deletions

View file

@ -4,11 +4,16 @@
%{
#include <string.h>
/*! Structure Point */
typedef struct point {
int x;
int y;
} Point;
/*! Point_create Description
/param x integer x
/param y some integer y
/return a point */
Point *point_create(int x, int y) {
Point *p = (Point *) malloc(sizeof(Point));
@ -18,6 +23,11 @@ Point *point_create(int x, int y) {
return p;
}
/*! Point_create Description
/param format the format
/param p some p
/return a character string of the point p */
static char *point_toString(char *format, Point *p) {
static char buf[80];
@ -54,3 +64,4 @@ char *point_toString1(Point *p);
extern void free(void *memblock);
%native(point_toString2) char *point_toString2(Point *p);