MCPcopy Create free account
hub / github.com/buke/quickjs-go / tabcmp

Function tabcmp

deps/quickjs/unicode_gen.c:1409–1417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1407
1408
1409int tabcmp(const int *tab1, const int *tab2, int n)
1410{
1411 int i;
1412 for(i = 0; i < n; i++) {
1413 if (tab1[i] != tab2[i])
1414 return -1;
1415 }
1416 return 0;
1417}
1418
1419void dump_str(const char *str, const int *buf, int len)
1420{

Callers 3

check_case_convFunction · 0.85
check_decompose_tableFunction · 0.85
check_strFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected