mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
added _mesa_strtof()
This commit is contained in:
parent
4097ea012a
commit
44257dacc0
1 changed files with 23 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: imports.c,v 1.27 2002/12/06 03:10:59 brianp Exp $ */
|
||||
/* $Id: imports.c,v 1.28 2003/01/14 03:02:13 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -356,6 +356,17 @@ _mesa_strncmp( const char *s1, const char *s2, size_t n )
|
|||
}
|
||||
|
||||
|
||||
char *
|
||||
_mesa_strdup( const char *s )
|
||||
{
|
||||
int l = _mesa_strlen(s);
|
||||
char *s2 = _mesa_malloc(l + 1);
|
||||
if (s2)
|
||||
_mesa_strcpy(s2, s);
|
||||
return s2;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
_mesa_atoi(const char *s)
|
||||
{
|
||||
|
|
@ -367,6 +378,17 @@ _mesa_atoi(const char *s)
|
|||
}
|
||||
|
||||
|
||||
float
|
||||
_mesa_strtof( const char *s, const char **end )
|
||||
{
|
||||
#if defined(XFree86LOADER) && defined(IN_MODULE)
|
||||
return xf86strtof(s, end);
|
||||
#else
|
||||
return strtod(s, end);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
_mesa_sprintf( char *str, const char *fmt, ... )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue