Fix the few non-portable uses of "char" (where a -1 might be relevant): All uses of char are now either "int", "unsigned char" or char arrays for storing strings.  Also, went to consistent "char* foo" coding convention.  (There were only a few ambiguous uses.)


git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25400 e7fa87d3-cd2b-0410-9028-fcbf551c1848
diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp
index e917c20..dd07657 100644
--- a/StandAlone/StandAlone.cpp
+++ b/StandAlone/StandAlone.cpp
@@ -93,7 +93,7 @@
 ShBindingTable FixedAttributeTable = { 3, FixedAttributeBindings };
 
 EShLanguage FindLanguage(const std::string& name);
-void CompileFile(const char *fileName, ShHandle);
+void CompileFile(const char* fileName, ShHandle);
 void usage();
 void FreeFileData(char** data);
 char** ReadFileData(const char* fileName);
@@ -212,7 +212,7 @@
 void ProcessConfigFile()
 {
     char** configStrings = 0;
-    char *config = 0;
+    char* config = 0;
     if (ConfigFile.size() > 0) {
         configStrings = ReadFileData(ConfigFile.c_str());
         if (configStrings)
@@ -746,7 +746,7 @@
 // Read a file's data into a string, and compile it using the old interface ShCompile, 
 // for non-linkable results.
 //
-void CompileFile(const char *fileName, ShHandle compiler)
+void CompileFile(const char* fileName, ShHandle compiler)
 {
     int ret;
     char** shaderStrings = ReadFileData(fileName);
@@ -832,8 +832,8 @@
 
 int fopen_s(
    FILE** pFile,
-   const char *filename,
-   const char *mode
+   const char* filename,
+   const char* mode
 )
 {
    if (!pFile || !filename || !mode) {
@@ -858,11 +858,11 @@
 //
 //   Malloc a string of sufficient size and read a string into it.
 //
-char** ReadFileData(const char *fileName) 
+char** ReadFileData(const char* fileName) 
 {
     FILE *in;
 	int errorCode = fopen_s(&in, fileName, "r");
-    char *fdata;
+    char* fdata;
     int count = 0;
     const int maxSourceStrings = 5;
     char** return_data = (char**)malloc(maxSourceStrings+1);
@@ -879,7 +879,7 @@
 	fseek(in, 0, SEEK_SET);
 	
 	
-	if (!(fdata = (char *)malloc(count+2))) {
+	if (!(fdata = (char*)malloc(count+2))) {
             printf("Error allocating memory\n");
             return 0;
     }
@@ -917,7 +917,7 @@
     return return_data;
 }
 
-void FreeFileData(char **data)
+void FreeFileData(char** data)
 {
     for(int i=0;i<NumShaderStrings;i++)
         free(data[i]);