aroplat

Utilitaire pour manipuler le format aroplat (métaformat de plat)
git clone git://git.asteride.xyz/~ldp/aroplat.git
Journaux | Fichiers | Références | LICENCE

meta.h (168B)


      1 #ifndef META_H
      2 #define META_H
      3 
      4 struct meta {
      5 	struct tampon tp;
      6 	size_t        draps;
      7 };
      8 
      9 int m_init(struct meta *, size_t);
     10 int m_lire(FILE *, struct meta *);
     11 
     12 #endif