Remove _mesa_strncmp in favor of plain strncmp.

This commit is contained in:
Kenneth Graunke
2010-02-18 23:50:57 -08:00
committed by Kristian Høgsberg
parent 8d73aa6d1a
commit 9d9afe9393
6 changed files with 8 additions and 18 deletions

View File

@@ -841,13 +841,6 @@ _mesa_getenv( const char *var )
/** \name String */ /** \name String */
/*@{*/ /*@{*/
/** Wrapper around strncmp() */
int
_mesa_strncmp( const char *s1, const char *s2, size_t n )
{
return strncmp(s1, s2, n);
}
/** /**
* Implemented using _mesa_malloc() and strcpy. * Implemented using _mesa_malloc() and strcpy.
* Note that NULL is handled accordingly. * Note that NULL is handled accordingly.

View File

@@ -611,9 +611,6 @@ _mesa_bsearch( const void *key, const void *base, size_t nmemb, size_t size,
extern char * extern char *
_mesa_getenv( const char *var ); _mesa_getenv( const char *var );
extern int
_mesa_strncmp( const char *s1, const char *s2, size_t n );
extern char * extern char *
_mesa_strdup( const char *s ); _mesa_strdup( const char *s );

View File

@@ -224,7 +224,7 @@ MatchInstruction(const GLubyte *token)
result.suffixes = 0; result.suffixes = 0;
for (inst = Instructions; inst->name; inst++) { for (inst = Instructions; inst->name; inst++) {
if (_mesa_strncmp((const char *) token, inst->name, 3) == 0) { if (strncmp((const char *) token, inst->name, 3) == 0) {
/* matched! */ /* matched! */
int i = 3; int i = 3;
result = *inst; result = *inst;
@@ -1495,11 +1495,11 @@ _mesa_parse_nv_fragment_program(GLcontext *ctx, GLenum dstTarget,
_mesa_set_program_error(ctx, -1, NULL); _mesa_set_program_error(ctx, -1, NULL);
/* check the program header */ /* check the program header */
if (_mesa_strncmp((const char *) programString, "!!FP1.0", 7) == 0) { if (strncmp((const char *) programString, "!!FP1.0", 7) == 0) {
target = GL_FRAGMENT_PROGRAM_NV; target = GL_FRAGMENT_PROGRAM_NV;
parseState.pos = programString + 7; parseState.pos = programString + 7;
} }
else if (_mesa_strncmp((const char *) programString, "!!FCP1.0", 8) == 0) { else if (strncmp((const char *) programString, "!!FCP1.0", 8) == 0) {
/* fragment / register combiner program - not supported */ /* fragment / register combiner program - not supported */
_mesa_set_program_error(ctx, 0, "Invalid fragment program header"); _mesa_set_program_error(ctx, 0, "Invalid fragment program header");
_mesa_error(ctx, GL_INVALID_OPERATION, "glLoadProgramNV(bad header)"); _mesa_error(ctx, GL_INVALID_OPERATION, "glLoadProgramNV(bad header)");

View File

@@ -1313,18 +1313,18 @@ _mesa_parse_nv_vertex_program(GLcontext *ctx, GLenum dstTarget,
_mesa_set_program_error(ctx, -1, NULL); _mesa_set_program_error(ctx, -1, NULL);
/* check the program header */ /* check the program header */
if (_mesa_strncmp((const char *) programString, "!!VP1.0", 7) == 0) { if (strncmp((const char *) programString, "!!VP1.0", 7) == 0) {
target = GL_VERTEX_PROGRAM_NV; target = GL_VERTEX_PROGRAM_NV;
parseState.pos = programString + 7; parseState.pos = programString + 7;
parseState.isStateProgram = GL_FALSE; parseState.isStateProgram = GL_FALSE;
} }
else if (_mesa_strncmp((const char *) programString, "!!VP1.1", 7) == 0) { else if (strncmp((const char *) programString, "!!VP1.1", 7) == 0) {
target = GL_VERTEX_PROGRAM_NV; target = GL_VERTEX_PROGRAM_NV;
parseState.pos = programString + 7; parseState.pos = programString + 7;
parseState.isStateProgram = GL_FALSE; parseState.isStateProgram = GL_FALSE;
parseState.isVersion1_1 = GL_TRUE; parseState.isVersion1_1 = GL_TRUE;
} }
else if (_mesa_strncmp((const char *) programString, "!!VSP1.0", 8) == 0) { else if (strncmp((const char *) programString, "!!VSP1.0", 8) == 0) {
target = GL_VERTEX_STATE_PROGRAM_NV; target = GL_VERTEX_STATE_PROGRAM_NV;
parseState.pos = programString + 8; parseState.pos = programString + 8;
parseState.isStateProgram = GL_TRUE; parseState.isStateProgram = GL_TRUE;

View File

@@ -537,7 +537,7 @@ _mesa_lookup_parameter_index(const struct gl_program_parameter_list *paramList,
/* name is not null-terminated, use nameLen */ /* name is not null-terminated, use nameLen */
for (i = 0; i < (GLint) paramList->NumParameters; i++) { for (i = 0; i < (GLint) paramList->NumParameters; i++) {
if (paramList->Parameters[i].Name && if (paramList->Parameters[i].Name &&
_mesa_strncmp(paramList->Parameters[i].Name, name, nameLen) == 0 strncmp(paramList->Parameters[i].Name, name, nameLen) == 0
&& strlen(paramList->Parameters[i].Name) == (size_t)nameLen) && strlen(paramList->Parameters[i].Name) == (size_t)nameLen)
return i; return i;
} }

View File

@@ -65,7 +65,7 @@ static GLboolean
legal_identifier(slang_atom name) legal_identifier(slang_atom name)
{ {
/* "gl_" is a reserved prefix */ /* "gl_" is a reserved prefix */
if (_mesa_strncmp((char *) name, "gl_", 3) == 0) { if (strncmp((char *) name, "gl_", 3) == 0) {
return GL_FALSE; return GL_FALSE;
} }
return GL_TRUE; return GL_TRUE;