Edit

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

Branch :

  • Show log

    Commit

  • Author : Ran Benita
    Date : 2025-01-29 15:35:22
    Hash : e120807b
    Message : Update license notices to SDPX short identifiers + update LICENSE Fix #628. Signed-off-by: Ran Benita <ran@unusedvar.com>

  • src/compose/paths.h
  • /*
     * Copyright © 2014 Ran Benita <ran234@gmail.com>
     * SPDX-License-Identifier: MIT
     */
    
    #ifndef COMPOSE_RESOLVE_H
    #define COMPOSE_RESOLVE_H
    
    #include "xkbcommon/xkbcommon.h"
    
    char *
    resolve_locale(struct xkb_context *ctx, const char *locale);
    
    const char *
    get_xlocaledir_path(struct xkb_context *ctx);
    
    char *
    get_xcomposefile_path(struct xkb_context *ctx);
    
    char *
    get_xdg_xcompose_file_path(struct xkb_context *ctx);
    
    char *
    get_home_xcompose_file_path(struct xkb_context *ctx);
    
    char *
    get_locale_compose_file_path(struct xkb_context *ctx, const char *locale);
    
    #endif