Statistiques
| Révision :

root / Pi / C / examples / swig / hellomodule.c @ 308

Historique | Voir | Annoter | Télécharger (111 octet)

1
/*hellomodule.c*/
2
 
3
#include <stdio.h>
4
 
5
void say_hello(const char* name) {
6
    printf("Hello %s!\n", name);
7
}