#include "mkhibliba.h" /** * Give the filelib type corresponding to the Ti-Os type * * @param the TIOS type * * @return the corresponding filelib type */ unsigned char h_tios2filelib(unsigned char type) { unsigned char j=0; while (j<15 && type != h_filelib2tiosTable[j]) { j++; } if (j==15) { j--; } return j; }