Fichero de Prototipos

El fichero coord.h contiene las declaraciones de las estructuras de datos y funciones:
lhp@nereida:~/Lperl/src/XSUB/h2xsexample/coordlib/include$ cat -n coord.h
 1  #include <stdio.h>
 2  #include <math.h>
 3
 4  #define PI 3.14159265358979323846264338327
 5
 6  typedef struct {
 7    double mod;
 8    double arg;
 9  } polar;
10
11  polar getpolar();
12  char * polar2str(const char * format, polar p);
13
14  typedef struct {
15    double x;
16    double y;
17  } rectangular;
18
19  rectangular getrectangular();
20  char * rectangular2str(const char * format, rectangular r);
21
22  polar rc2pl(rectangular r);
23  rectangular pl2rc(polar p);

Casiano Rodríguez León
Licencia de Creative Commons
Programación Distribuida y Mejora del Rendimiento
por Casiano Rodríguez León is licensed under a Creative Commons Reconocimiento 3.0 Unported License.

Permissions beyond the scope of this license may be available at http://campusvirtual.ull.es/ocw/course/view.php?id=44.
2012-06-19