2004-02-16 21:25:11 +00:00
|
|
|
#include <stdlib.h>
|
2019-09-16 15:19:23 +00:00
|
|
|
#include "libnazgul.h"
|
2004-02-16 21:25:11 +00:00
|
|
|
|
|
|
|
char ** msgSpaceIdList(){
|
|
|
|
// i = le nombre d'id publics disponnibles
|
|
|
|
int i=0;
|
|
|
|
char ** idList;
|
|
|
|
idList=(char **)malloc(i*sizeof(char *));
|
|
|
|
return idList;
|
|
|
|
}
|