(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.

This commit is contained in:
rubidium
2007-07-24 17:01:23 +00:00
parent 9c9fc1a79e
commit 59d33d0f7c
22 changed files with 70 additions and 70 deletions

View File

@@ -24,10 +24,10 @@ void ttd_strlcpy(char *dst, const char *src, size_t size);
* if NULL no boundary check is performed
* @return a pointer to the terminating \0 in the destination buffer
*/
char* strecat(char* dst, const char* src, const char* last);
char* strecpy(char* dst, const char* src, const char* last);
char *strecat(char *dst, const char *src, const char *last);
char *strecpy(char *dst, const char *src, const char *last);
char* CDECL str_fmt(const char* str, ...);
char *CDECL str_fmt(const char *str, ...);
/** Scans the string for valid characters and if it finds invalid ones,
* replaces them with a question mark '?' */
@@ -49,7 +49,7 @@ enum CharSetFilter {
void strtolower(char *str);
static inline bool StrEmpty(const char* s) { return s[0] == '\0'; }
static inline bool StrEmpty(const char *s) { return s[0] == '\0'; }
/** Get the length of a string, within a limited buffer */