Revision 3dc47c428894c0eca7b01561978befdc09f64e48 authored by Junio C Hamano on 17 June 2019, 17:15:18 UTC, committed by Junio C Hamano on 17 June 2019, 17:15:18 UTC
Update to Unicode 12.1 width table.

* bb/unicode-12.1-reiwa:
  unicode: update the width tables to Unicode 12.1
2 parent s e7ef93b + 5817f9c
Raw File
tr2_cfg.h
#ifndef TR2_CFG_H
#define TR2_CFG_H

/*
 * Iterate over all config settings and emit 'def_param' events for the
 * "interesting" ones to TRACE2.
 */
void tr2_cfg_list_config_fl(const char *file, int line);

/*
 * Emit a "def_param" event for the given key/value pair IF we consider
 * the key to be "interesting".
 */
void tr2_cfg_set_fl(const char *file, int line, const char *key,
		    const char *value);

void tr2_cfg_free_patterns(void);

#endif /* TR2_CFG_H */
back to top