10 lines
185 B
C
10 lines
185 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2025 0xKarinyash
|
|
|
|
#ifndef STRING_H
|
|
#define STRING_H
|
|
#include <types.h>
|
|
|
|
i32 strcmp(const char* s1, const char* s2);
|
|
|
|
#endif |