add files not currently available in source (e.g. docs, modules, etc.)

set svn:eol-style property to native for all ascii files to support cross platform development
This commit is contained in:
raburton
2007-06-05 12:10:51 +00:00
parent a5fb5d390e
commit dedb0228dc
1798 changed files with 1008222 additions and 161314 deletions
+23 -23
View File
@@ -6,8 +6,8 @@
#include "fctsys.h"
#include <time.h>
#include "common.h"
/*********************************************************************/
int ReadDelimitedText(char * dest, char * source, int NbMaxChar )
/*********************************************************************/
@@ -102,7 +102,7 @@ wxString DateAndTime(void)
{
time_t Time_Buf;
struct tm * Date;
wxString Line;
wxString Line;
time(&Time_Buf);
Date = gmtime(&Time_Buf);
@@ -303,24 +303,24 @@ char * line = Text;
}
/********************************/
char * strupper(char * Text)
/********************************/
/* Change les caracteres 'a' ... 'z' en 'A' ... 'Z'. dans la chaine Text.
Retourne Text
*/
{
char * code = Text;
if( Text )
{
while( * code)
{
if( (*code >= 'a') && (*code <= 'z') ) *code += 'A' - 'a';
code ++;
}
}
return(Text);
}
/********************************/
char * strupper(char * Text)
/********************************/
/* Change les caracteres 'a' ... 'z' en 'A' ... 'Z'. dans la chaine Text.
Retourne Text
*/
{
char * code = Text;
if( Text )
{
while( * code)
{
if( (*code >= 'a') && (*code <= 'z') ) *code += 'A' - 'a';
code ++;
}
}
return(Text);
}