Edit

kc3-lang/libxkbcommon/src/compose/parser.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/parser.h
  • /*
     * Copyright © 2013 Ran Benita <ran234@gmail.com>
     * SPDX-License-Identifier: MIT
     */
    
    #ifndef COMPOSE_PARSER_H
    #define COMPOSE_PARSER_H
    
    #include <stdbool.h>
    #include <stddef.h>
    #include <stdio.h>
    
    #include "xkbcommon/xkbcommon.h"
    #include "xkbcommon/xkbcommon-compose.h"
    
    #define MAX_LHS_LEN 10
    #define MAX_INCLUDE_DEPTH 5
    /** Maximum size of the string returned by xkb_compose_state_get_utf8() */
    #define XKB_COMPOSE_MAX_STRING_SIZE 256
    
    char *
    parse_string_literal(struct xkb_context *ctx, const char *string);
    
    bool
    parse_string(struct xkb_compose_table *table,
                 const char *string, size_t len,
                 const char *file_name);
    
    bool
    parse_file(struct xkb_compose_table *table,
               FILE *file, const char *file_name);
    
    #endif