diff options
| author | Eugene Sandulenko | 2007-04-27 22:33:45 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2007-04-27 22:33:45 +0000 | 
| commit | ffce26ebfea301ec33f3d485fa9dbaa0dffccb5b (patch) | |
| tree | b62bf14bf84b48b602f12c3aacd9c652a49bef46 /engines/cruise/stringSupport.h | |
| parent | 101fbdd64f1a9d62c40dcdd20d618a098dc9df7e (diff) | |
| download | scummvm-rg350-ffce26ebfea301ec33f3d485fa9dbaa0dffccb5b.tar.gz scummvm-rg350-ffce26ebfea301ec33f3d485fa9dbaa0dffccb5b.tar.bz2 scummvm-rg350-ffce26ebfea301ec33f3d485fa9dbaa0dffccb5b.zip | |
Fix code formatting (partially) and guard defines in includes.
svn-id: r26631
Diffstat (limited to 'engines/cruise/stringSupport.h')
| -rw-r--r-- | engines/cruise/stringSupport.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/engines/cruise/stringSupport.h b/engines/cruise/stringSupport.h index d5d9b33702..d685940233 100644 --- a/engines/cruise/stringSupport.h +++ b/engines/cruise/stringSupport.h @@ -22,15 +22,15 @@   *   */ -#ifndef _STRING_SUPPORT_H_ -#define _STRING_SUPPORT_H_ +#ifndef CRUISE_STRING_SUPPORT_H +#define CRSUIE_STRING_SUPPORT_H  namespace Cruise { -void strcpyuint8(void* dest, const void* source); -void strcatuint8(void* dest, const void* source); -uint8 strcmpuint8(const void* string1, const void* string2); -FILE* fopenuint8(void* name, const void* param); +void strcpyuint8(void *dest, const void *source); +void strcatuint8(void *dest, const void *source); +uint8 strcmpuint8(const void *string1, const void *string2); +FILE *fopenuint8(void *name, const void *param);  } // End of namespace Cruise | 
