Listing 2 STR_NGET.H - contains function prototypes for Listing 1

/*****************************************************
         File Name: STR_NGET.H
       Description: Include file for STR_NGET.C
*****************************************************/

#if !defined ( STR_NGET_DEFINED )

   #define STR_NGET_DEFINED

   char *str_nleft( char *Str, size_t Num );
   char *str_nmid( char *Str, size_t Pos, size_t Num );
   char *str_nright( char *Str, size_t Num );
   char *str_rstr( char *Str, char *Find );

#endif

/* End of File */