/* strupr.h */ #ifndef __STRUPR_H #define __STRUPR_H #ifdef __cplusplus extern "C" { #endif #ifdef __unix__ char* strlwr( char* s ); char* strupr( char* s ); #endif #ifdef __cplusplus } #endif #endif /* __STRUPR_H */