mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-27 21:37:37 -04:00
14 lines
350 B
C
14 lines
350 B
C
/* SPDX-FileCopyrightText: Copyright © 2026 Nils Tonnaett*/
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef AVB_STRINGS_H
|
|
#define AVB_STRINGS_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
int check_zero_padding(const unsigned char *str, size_t len);
|
|
int validate_utf8(const unsigned char *str, size_t len);
|
|
|
|
#endif /* AVB_STRINGS_H */
|