mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 01:03:07 +00:00
87b7292aa5
drgn is currently licensed as GPLv3+. Part of the long term vision for drgn is that other projects can use it as a library providing programmatic interfaces for debugger functionality. A more permissive license is better suited to this goal. We decided on LGPLv2.1+ as a good balance between software freedom and permissiveness. All contributors not employed by Meta were contacted via email and consented to the license change. The only exception was the author of commitc4fbf7e589
("libdrgn: fix for compilation error"), who did not respond. That commit reverted a single line of code to one originally written by me in commit640b1c011d
("libdrgn: embed DWARF index in DWARF info cache"). Signed-off-by: Omar Sandoval <osandov@osandov.com>
38 lines
801 B
C
38 lines
801 B
C
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* String with length.
|
|
*/
|
|
|
|
#ifndef DRGN_NSTRING_H
|
|
#define DRGN_NSTRING_H
|
|
|
|
#include <string.h>
|
|
|
|
/** A string with a stored length. */
|
|
struct nstring {
|
|
/**
|
|
* The string, which is not necessarily null-terminated and may have
|
|
* embedded null bytes.
|
|
*/
|
|
const char *str;
|
|
/** The length in bytes of the string. */
|
|
size_t len;
|
|
};
|
|
|
|
/** Compare two @ref nstring keys for equality. */
|
|
static inline bool nstring_eq(const struct nstring *a, const struct nstring *b)
|
|
{
|
|
/*
|
|
* len == 0 is a special case because memcmp(NULL, NULL, 0) is
|
|
* technically undefined.
|
|
*/
|
|
return (a->len == b->len &&
|
|
(a->len == 0 || memcmp(a->str, b->str, a->len) == 0));
|
|
}
|
|
|
|
#endif /* DRGN_NSTRING_H */
|