#ifndef _MIBS_H_
#define _MIBS_H_

struct mibs_t {
  bool expand;
  char type, *name;
  int value;
  struct mibs_t *parent, *left_child, *right_sibling;
};

void readmibs();
char parse_mib(char *mib);

#endif

