Jean-Pierre's changes for kicad-2007-05-25 release
This commit is contained in:
+2
-18
@@ -6,8 +6,8 @@
|
||||
#include "fctsys.h"
|
||||
#include <time.h>
|
||||
#include "common.h"
|
||||
|
||||
|
||||
|
||||
|
||||
/*********************************************************************/
|
||||
int ReadDelimitedText(char * dest, char * source, int NbMaxChar )
|
||||
/*********************************************************************/
|
||||
@@ -302,22 +302,6 @@ char * line = Text;
|
||||
return line;
|
||||
}
|
||||
|
||||
/****************************/
|
||||
char * from_point(char * Text)
|
||||
/****************************/
|
||||
/* convertit les . en , dans une chaine. utilisé pour compenser
|
||||
l'internalisation imbecile de la fct scanf
|
||||
qui lit les flottants avec une virgule au lieu du point
|
||||
*/
|
||||
{
|
||||
char * line = Text;
|
||||
if ( Text == NULL ) return NULL;
|
||||
|
||||
for ( ; *Text != 0; Text++ )
|
||||
if (*Text == '.') *Text = g_FloatSeparator;
|
||||
|
||||
return line;
|
||||
}
|
||||
|
||||
/********************************/
|
||||
char * strupper(char * Text)
|
||||
|
||||
Reference in New Issue
Block a user