/*****************************************************************************/ /* */ /* UNIT: ntl0 (Level 0 library include file) */ /* */ /* Author: Nikola Stojanovic */ /* */ /* Revision: 27 JUN 94 Version 1.0 */ /* */ /*****************************************************************************/ #define NTL0 0 /* Prototypes of all routines contained in the level0 library */ char *NTL0_ckalloc (long int amount); char *NTL0_ckrealloc (char *old_ptr, long int amount); int NTL0_iabs (int value); long int NTL0_labs (long int value); void NTL0_lowercase (char *str); int NTL0_overlaps (long int low1, long int high1, long int low2, long int high2); float NTL0_rabs (float value); char *NTL0_strsave (char *original); int NTL0_tsplit (char *buff, char **first, char **rest); void NTL0_uppercase (char *str); long int NTL0_offset (long int origin_location, long int offset); void NTL0_Full_Runs (float *sigma, long int size, long int *count, long int *low, long int *high, float *low_score, float *high_score);