40 lines
333 B
C
40 lines
333 B
C
#ifndef _street
|
|
|
|
#define _street
|
|
|
|
|
|
// Macros
|
|
|
|
|
|
|
|
#include "stdlib.h"
|
|
|
|
extern char * __ClassNames[];
|
|
|
|
|
|
// Includes
|
|
|
|
|
|
typedef struct address{
|
|
|
|
char * street;
|
|
|
|
int number;
|
|
|
|
|
|
} address;
|
|
|
|
void address_someMethod( address * this );
|
|
|
|
address address_new( );
|
|
|
|
address * address_newPointer( );
|
|
|
|
#endif
|
|
|
|
|
|
typedef struct address address;
|
|
|
|
|
|
|