tools/lib/bpf/strset.h

Source file repositories/reference/linux-study-clean/tools/lib/bpf/strset.h

File Facts

System
Linux kernel
Corpus path
tools/lib/bpf/strset.h
Extension
.h
Size
586 bytes
Lines
22
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __LIBBPF_STRSET_H
#define __LIBBPF_STRSET_H

#include <stdbool.h>
#include <stddef.h>

struct strset;

struct strset *strset__new(size_t max_data_sz, const char *init_data, size_t init_data_sz);
void strset__free(struct strset *set);

const char *strset__data(const struct strset *set);
size_t strset__data_size(const struct strset *set);

int strset__find_str(struct strset *set, const char *s);
int strset__add_str(struct strset *set, const char *s);

#endif /* __LIBBPF_STRSET_H */

Annotation

Implementation Notes