DS: Code formatting: "char* foo" -> "char *foo"

svn-id: r50688
This commit is contained in:
Max Horn 2010-07-05 16:10:22 +00:00
parent d5c78f78c5
commit e4ec2e6403
23 changed files with 222 additions and 222 deletions

View file

@ -14,7 +14,7 @@ namespace DS {
char wordBuffer[WORD_BUFFER_SIZE];
int wordBufferPos = 0;
char* wordBufferPtr[MAX_WORD_COUNT];
char *wordBufferPtr[MAX_WORD_COUNT];
int wordBufferPtrPos = 0;
void addAutoCompleteLine(const char *line) {
@ -53,7 +53,7 @@ void addAutoCompleteLine(const char *line) {
}
}
int stringCompare(const void* a, const void* b) {
int stringCompare(const void *a, const void *b) {
const char** as = (const char **) a;
const char** bs = (const char **) b;
@ -71,7 +71,7 @@ void sortAutoCompleteWordList() {
}
// Sends the current available words to the virtual keyboard code for display
bool findWordCompletions(const char* input) {
bool findWordCompletions(const char *input) {
int min = 0;
int max = wordBufferPtrPos - 1;
char *word;
@ -82,7 +82,7 @@ bool findWordCompletions(const char* input) {
if (wordBufferPtrPos == 0)
return false;
OSystem_DS* system = (OSystem_DS *) g_system;
OSystem_DS *system = (OSystem_DS *) g_system;
system->clearAutoComplete();
int start = 0;