Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add macro L4() needed by Klingon (piqd)
  • Loading branch information
jaacoppi committed Mar 4, 2021
1 parent 7b16087 commit b0a7ef2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libespeak-ng/translate.h
Expand Up @@ -32,6 +32,7 @@ extern "C"

#define L(c1, c2) (c1<<8)+c2 // combine two characters into an integer for translator name
#define L3(c1, c2, c3) (c1<<16)+(c2<<8) + c3 // combine three characters into an integer for translator name
#define L4(c1, c2, c3, c4) (c1<<24)+(c2<<16)+(c3<<8) + c4 // combine four characters into an integer for translator name

#define CTRL_EMBEDDED 0x01 // control character at the start of an embedded command
#define REPLACED_E 'E' // 'e' replaced by silent e
Expand Down

0 comments on commit b0a7ef2

Please sign in to comment.