Edit

kc3-lang/libxkbcommon/src/utils-paths.h

Branch :

  • Show log

    Commit

  • Author : Pierre Le Marre
    Date : 2025-07-07 12:28:24
    Hash : dc63e5f8
    Message : Ensure config.h is always included first While `config.h` may not be necessary in every file, it ensures consistency and makes code refactoring safer.

  • src/utils-paths.h
  • /*
     * Copyright © 2024 Pierre Le Marre
     * SPDX-License-Identifier: MIT
     */
    #pragma once
    
    #include "config.h"
    
    #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);