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:
+23
-23
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user