comparison xrogue/network.h @ 220:f54901b9c39b

XRogue: convert to ANSI-style function declarations.
author John "Elwin" Edwards
date Wed, 02 Mar 2016 21:13:26 -0500
parents e6179860cb76
children 13b482bd9e66
comparison
equal deleted inserted replaced
219:f9ef86cf22b2 220:f54901b9c39b
28 struct network { 28 struct network {
29 char *system; 29 char *system;
30 char *rogue; 30 char *rogue;
31 }; 31 };
32 extern struct network Network[]; 32 extern struct network Network[];
33 extern unsigned long netread(); 33 extern unsigned long netread(int *error, int size, FILE *stream);
34 extern unsigned long netwrite(); 34 extern int netwrite(unsigned long value, int size, FILE *stream);
35 35