mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-23 18:26:47 +08:00
New common function "startswith"
This commit introduces a new inline common function "startswith" which takes two string arguments and returns nonzero if the first string starts with the second. It also updates the 295 places where this logic was written out longhand to use the new function. gdb/ChangeLog: * common/common-utils.h (startswith): New inline function. All places where this logic was used updated to use the above.
This commit is contained in:
@ -747,11 +747,11 @@ typy_lookup_typename (const char *type_name, const struct block *block)
|
||||
|
||||
TRY_CATCH (except, RETURN_MASK_ALL)
|
||||
{
|
||||
if (!strncmp (type_name, "struct ", 7))
|
||||
if (startswith (type_name, "struct "))
|
||||
type = lookup_struct (type_name + 7, NULL);
|
||||
else if (!strncmp (type_name, "union ", 6))
|
||||
else if (startswith (type_name, "union "))
|
||||
type = lookup_union (type_name + 6, NULL);
|
||||
else if (!strncmp (type_name, "enum ", 5))
|
||||
else if (startswith (type_name, "enum "))
|
||||
type = lookup_enum (type_name + 5, NULL);
|
||||
else
|
||||
type = lookup_typename (python_language, python_gdbarch,
|
||||
|
Reference in New Issue
Block a user