Edit

kc3-lang/libxkbcommon/src/atom.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/atom.h
  • /*
     * Copyright © 2009 Dan Nicholson
     * SPDX-License-Identifier: MIT
     */
    
    #ifndef ATOM_H
    #define ATOM_H
    
    #include <stddef.h>
    #include <stdint.h>
    #include <stdbool.h>
    
    typedef uint32_t xkb_atom_t;
    
    #define XKB_ATOM_NONE 0
    
    struct atom_table;
    
    struct atom_table *
    atom_table_new(void);
    
    void
    atom_table_free(struct atom_table *table);
    
    xkb_atom_t
    atom_intern(struct atom_table *table, const char *string, size_t len, bool add);
    
    const char *
    atom_text(struct atom_table *table, xkb_atom_t atom);
    
    #endif /* ATOM_H */