move ltt-private.h from public directroy into private directroy
[lttv.git] / ltt / branches / poly / ltt / type.c
index be96a3c732c0f6333061ed3b057cea0a2b189036..dc39d9d1d082b6dbf6b194fcba5064e5362e9e64 100644 (file)
@@ -1,6 +1,8 @@
 #include <stdio.h>
 
 #include "parser.h"
+#include <ltt/ltt.h>
+#include "ltt-private.h"
 #include <ltt/type.h>
 
 static unsigned intSizes[] = {
@@ -315,3 +317,8 @@ LttType *ltt_field_type(LttField *f)
   return f->field_type;
 }
 
+int ltt_field_size(LttField * f)
+{
+  if(!f)return 0;
+  return f->field_size;
+}
This page took 0.023057 seconds and 4 git commands to generate.