Changeset 34120f10 in mainline for common/include/str.h


Ignore:
Timestamp:
2023-10-27T19:38:31Z (15 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
63ed840
Parents:
c89ae25 (diff), 694ca3d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge code deduplication work

TL;DR: Added directory /common, which now contains the sole existing
copy of ADT, printf_core, and a few other pieces. Should make changes
to any of those less of a headache.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • common/include/str.h

    rc89ae25 r34120f10  
    4545#include <mem.h>
    4646#include <_bits/decls.h>
     47#include <_bits/uchar.h>
    4748
    4849#ifndef __cplusplus
     
    5051/* Common Unicode characters */
    5152#define U_SPECIAL      '?'
     53
     54#define U_LEFT_ARROW   0x2190
     55#define U_UP_ARROW     0x2191
     56#define U_RIGHT_ARROW  0x2192
     57#define U_DOWN_ARROW   0x2193
     58
     59#define U_PAGE_UP      0x21de
     60#define U_PAGE_DOWN    0x21df
     61
     62#define U_HOME_ARROW   0x21f1
     63#define U_END_ARROW    0x21f2
     64
     65#define U_NULL         0x2400
     66#define U_ESCAPE       0x241b
     67#define U_DELETE       0x2421
     68
     69#define U_CURSOR       0x2588
    5270
    5371/** No size limit constant */
Note: See TracChangeset for help on using the changeset viewer.