renamed mesaStrDup() to str_dup()

This commit is contained in:
Brian Paul 2000-03-29 18:46:11 +00:00
parent 57e7108b75
commit fffb809777
1 changed files with 10 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $Id: glapi.c,v 1.39 2000/03/27 21:13:58 rjfrank Exp $ */ /* $Id: glapi.c,v 1.40 2000/03/29 18:46:11 brianp Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
@ -75,13 +75,14 @@ static GLboolean GetSizeCalled = GL_FALSE;
/* strdup is actually not a standard ANSI C or POSIX routine /* strdup is actually not a standard ANSI C or POSIX routine
Irix will not define it if ANSI mode is in effect. */ Irix will not define it if ANSI mode is in effect. */
static char *mesaStrdup(const char *str) static char *str_dup(const char *str)
{ {
char *copy; char *copy;
copy = (char*) malloc(strlen(str) + 1); copy = (char*) malloc(strlen(str) + 1);
if (!copy) return(NULL); if (!copy)
strcpy(copy,str); return NULL;
return(copy); strcpy(copy, str);
return copy;
} }
@ -1343,7 +1344,7 @@ _glapi_add_entrypoint(const char *funcName, GLuint offset)
if (!entrypoint) if (!entrypoint)
return GL_FALSE; return GL_FALSE;
ExtEntryTable[NumExtEntryPoints].Name = mesaStrdup(funcName); ExtEntryTable[NumExtEntryPoints].Name = str_dup(funcName);
ExtEntryTable[NumExtEntryPoints].Offset = offset; ExtEntryTable[NumExtEntryPoints].Offset = offset;
ExtEntryTable[NumExtEntryPoints].Address = entrypoint; ExtEntryTable[NumExtEntryPoints].Address = entrypoint;
NumExtEntryPoints++; NumExtEntryPoints++;
@ -1388,7 +1389,7 @@ _glapi_add_entrypoint2(const char *funcName)
entryPoint = generate_entrypoint(offset); entryPoint = generate_entrypoint(offset);
if (entryPoint) { if (entryPoint) {
NextFreeOffset++; NextFreeOffset++;
ExtEntryTable[NumExtEntryPoints].Name = mesaStrdup(funcName); ExtEntryTable[NumExtEntryPoints].Name = str_dup(funcName);
ExtEntryTable[NumExtEntryPoints].Offset = offset; ExtEntryTable[NumExtEntryPoints].Offset = offset;
ExtEntryTable[NumExtEntryPoints].Address = entryPoint; ExtEntryTable[NumExtEntryPoints].Address = entryPoint;
NumExtEntryPoints++; NumExtEntryPoints++;