]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/generar_archivos/dict.h
Varios bugfixes, mejoras de funcionalidad y validaciones.
[z.facultad/75.06/emufs.git] / emufs_gui / generar_archivos / dict.h
1
2 /* Diccionario de datos */
3
4 #ifndef _DICT_H_
5 #define _DICT_H_
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9
10 #include "common.h"
11
12 typedef struct _dict_ {
13         char **array;
14         unsigned int total;
15 } t_Dict;
16
17 t_Dict* dict_crear(const char *f);
18 void dict_destruir(t_Dict *);
19 char *dict_get(t_Dict *, unsigned int pos);
20 char *dict_get_al_azar(t_Dict *);
21
22 #endif