JWM Source Documentation
misc.h
Go to the documentation of this file.
00001 00010 #ifndef MISC_H 00011 #define MISC_H 00012 00014 #define Min( x, y ) ( (x) > (y) ? (y) : (x) ) 00015 00017 #define Max( x, y ) ( (x) > (y) ? (x) : (y) ) 00018 00022 void ExpandPath(char **path); 00023 00027 void Trim(char *str); 00028 00034 char *CopyString(const char *str); 00035 00036 #endif /* MISC_H */ 00037