Browse Source

Fixing typos and naming

master
BenTalagan 5 years ago
parent
commit
9fd480afbf

+ 1
- 2
src/libespeak-ng/dictionary.c View File

@@ -151,8 +151,7 @@ static void InitGroups(Translator *tr)
p = (char *)(((intptr_t)p+4) & ~3); // advance to next word boundary
tr->langopts.replace_chars = (unsigned char *)p;

// Don't cast to (unsigned int), result may not be garanted depending on compiler
while ( !is_str_fully_empty(p, 4) ) {
while ( !is_str_totally_null(p, 4) ) {
p++;
}


+ 2
- 2
src/libespeak-ng/readclause.c View File

@@ -132,8 +132,8 @@ int clause_type_from_codepoint(uint32_t c)
return CLAUSE_NONE;
}

int is_str_fully_empty(const char* str, int size) {
// Tests if all bytes of str are null uf to size
int is_str_totally_null(const char* str, int size) {
// Tests if all bytes of str are null up to size
// This should never be reimplemented with integers, because
// this function has to work with unaligned char*
// (casting to int when unaligned may result in ungaranteed behaviors)

+ 1
- 1
src/libespeak-ng/readclause.h View File

@@ -35,7 +35,7 @@ typedef struct {
extern PARAM_STACK param_stack[];

// Tests if all bytes of str up to size are null
int is_str_fully_empty(const char* str, int size);
int is_str_totally_null(const char* str, int size);

int clause_type_from_codepoint(uint32_t c);
int towlower2(unsigned int c, Translator *translator); // Supports Turkish I

+ 1
- 1
src/libespeak-ng/translate.c View File

@@ -1793,7 +1793,7 @@ static int EmbeddedCommand(unsigned int *source_index_out)
static const char *FindReplacementChars(Translator *tr, const char **pfrom, unsigned int c, const char *next, int *ignore_next_n)
{
const char *from = *pfrom;
while ( !is_str_fully_empty(from, 4) ) {
while ( !is_str_totally_null(from, 4) ) {
unsigned int fc = 0; // from character
unsigned int nc = c; // next character
const char *match_next = next;

Loading…
Cancel
Save