Hash :
16c079d6
Author :
Date :
2025-06-06T20:27:45
chore: Rename is_absolute to is_absolute_path
/*
* Copyright © 2024 Pierre Le Marre
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <stdbool.h>
#include "utils.h"
#ifdef _WIN32
#define PATH_SEPARATOR '\\'
#define ALT_PATH_SEPARATOR '/'
#define is_path_separator(s) \
((s) == PATH_SEPARATOR || (s) == ALT_PATH_SEPARATOR)
#else
#define PATH_SEPARATOR '/'
#define is_path_separator(s) ((s) == PATH_SEPARATOR)
#endif
XKB_EXPORT_PRIVATE bool
is_absolute_path(const char *path);