Print Mibs Source

        for (j = 0; j < num_cur_fmt; j++)
        {
        
            printf(cur_fmt[j],
                   ptr->label,
                   (int)  ptr->editable,
                   (int) ptr->type,
                   ptr->stringsize,
                   ptr->intlowrange,         
                   ptr->inthighrange,
                   (int)ptr->mandatory,
                   ptr->units ? ptr->units : "NULL",               
                   oid_buf,
                   (int)ptr->length,			
                   ptr->description ? ptr->description : "NULL",
                   shortName(ptr->label,table_entry_mo->name),
                   enum_buf,
                   reallyShortName( ptr->label, table_entry_mo->name ),
                   i /* the attribute index position */
                   );
        }

The fields for the enum value fields which can be printed are
Anthony Symons