12 lines
160 B
C
12 lines
160 B
C
|
|
|
|
#include "include.h"
|
|
|
|
|
|
struct include * include_new() {
|
|
|
|
struct include * includeInstance = malloc( sizeof( struct include ) );
|
|
|
|
return includeInstance;
|
|
|
|
} |