summaryrefslogtreecommitdiff
path: root/src/analysis/type.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/type.c')
-rw-r--r--src/analysis/type.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/analysis/type.c b/src/analysis/type.c
index ef75080..1f8cd0a 100644
--- a/src/analysis/type.c
+++ b/src/analysis/type.c
@@ -205,6 +205,29 @@ char *_g_data_type_to_string(const GDataType *type, bool simple)
/******************************************************************************
* *
+* Paramètres : type = routine à afficher. *
+* lang = langage à utiliser pour la sortie humaine. *
+* buffer = tampon mis à disposition pour la sortie. *
+* info = nature du cadre de destination. *
+* full = besoin de descriptions étendues ? *
+* *
+* Description : Procède à l'impression de la description d'un type. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void g_data_type_output(const GDataType *type, GLangOutput *lang, GBufferLine *line, bool info, bool full)
+{
+ type->output(type, lang, line, info, full);
+
+}
+
+
+/******************************************************************************
+* *
* Paramètres : type = instance à mettre à jour. *
* qualifier = nouveau qualificatif pour la variable. *
* *