12 lines
231 B
C
12 lines
231 B
C
|
#include <stdlib.h>
|
||
|
#include "nzg_iface.h"
|
||
|
#include "nzg_proto.h"
|
||
|
|
||
|
char ** msgSpaceIdList(){
|
||
|
// i = le nombre d'id publics disponnibles
|
||
|
int i=0;
|
||
|
char ** idList;
|
||
|
idList=(char **)malloc(i*sizeof(char *));
|
||
|
return idList;
|
||
|
}
|