You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
279 B
C
21 lines
279 B
C
11 years ago
|
/* Example from the SWIG tutorial */
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
double My_variable = 3.0;
|
||
|
|
||
|
int fact(int n) {
|
||
|
if (n <= 1) return 1;
|
||
|
else return n*fact(n-1);
|
||
|
}
|
||
|
|
||
|
int my_mod(int x, int y) {
|
||
|
return (x%y);
|
||
|
}
|
||
|
|
||
|
char *get_time() {
|
||
|
time_t ltime;
|
||
|
time(<ime);
|
||
|
return ctime(<ime);
|
||
|
}
|