repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_bline_get_col.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.004049
#include "test.h" char *str = "h\xc3\x85llo \xe4\xb8\x96\xe7\x95\x8c"; // "hallo ww" void test(buffer_t *buf, mark_t *cur) { // 01 2 34567 8 9 10 11 12 // 01 23456 7 bint_t col; MLBUF_BLINE_ENSURE_CHARS(buf->first_line); ASSERT("len", 8, buf->first_line->char_count); ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_destroy.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.005303
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { ASSERT("yes", 1, 1); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_get.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.006215
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; buffer_get(buf, &data, &data_len); ASSERT("len", 11, data_len); ASSERT("get", 0, strncmp(data, "hello\nworld", data_len)); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_get_bline.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.023871
#include "test.h" char *str = "0\n1\n2\n3\n4\n"; void test(buffer_t *buf, mark_t *cur) { bint_t i; bline_t *line; bline_t *line2; for (line = buf->first_line, i = 0; line; line = line->next, i += 1) { buffer_get_bline(buf, i, &line2); ASSERT("line", line, line2); } for (line = ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_bline_insert.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.059879
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; bline_insert(buf->first_line, 5, "\n", 1, NULL); buffer_get(buf, &data, &data_len); ASSERT("nl", 0, strncmp(data, "hello\n\nworld", data_len)); bline_insert(buf->first_line->nex...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_get_offset.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.597071
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { bint_t offset; buffer_get_offset(buf, buf->first_line, 0, &offset); ASSERT("f0", 0, offset); buffer_get_offset(buf, buf->first_line, 1, &offset); ASSERT("f1", 1, offset); buffer_get_offset(buf, buf->first_...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_get_bline_col.c
null
null
null
null
null
null
C
2026-05-04T18:50:28.630243
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { bline_t *line; bint_t col; buffer_get_bline_col(buf, 0, &line, &col); ASSERT("0line", buf->first_line, line); ASSERT("0col", 0, col); buffer_get_bline_col(buf, 1, &line, &col); ASSERT("1line", buf->firs...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_insert.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.011379
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; bint_t nchars; buffer_insert(buf, 0, "\xe4\xb8\x96\xe7\x95\x8c\n", 7, &nchars); buffer_get(buf, &data, &data_len); ASSERT("bol", 0, strncmp(data, "\xe4\xb8\x96\xe7\x95\x8c\nhello...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_new.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.012616
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { ASSERT("yes", 1, 1); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_redo.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.014707
#include "test.h" char *str = "hi"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; int action_group; buffer_delete(buf, 0, 1); buffer_undo(buf); buffer_redo(buf); buffer_get(buf, &data, &data_len); ASSERT("del", 0, strncmp(data, "i", data_len)); buffer_inser...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_replace.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.015287
#include "test.h" char *str = "lineA\n\nline2\nline3\n"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; buffer_replace(buf, 0, 0, "b", 1); buffer_get(buf, &data, &data_len); ASSERT("rpl1", 0, strncmp(data, "blineA\n\nline2\nline3\n", data_len)); ASSERT("r1bc", data_len, ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_register.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.016166
#include "test.h" char *str = "hi"; void test(buffer_t *buf, mark_t *cur) { char *reg; size_t reg_len; buffer_register_set(buf, 'a', "yo", 2); buffer_register_get(buf, 'a', 0, &reg, &reg_len); ASSERT("set", 0, strncmp(reg, "yo", reg_len)) buffer_register_prepend(buf, 'a', "g", 1); buffer...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_set_callback.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.017353
#include "test.h" buffer_t *global_buf; int *global_udata; static void callback_fn(buffer_t *buf, baction_t *bac, void *udata) { ASSERT("bufp", global_buf, buf); ASSERT("udata", (void*)global_udata, udata); ASSERT("bac_type", MLBUF_BACTION_TYPE_INSERT, bac->type); ASSERT("bac_buf", buf, bac->buffer); ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_remove_srule.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.019187
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { bint_t i; srule_t *srule; srule = srule_new_single("world", sizeof("world")-1, 0, 1, 2); buffer_add_srule(buf, srule); buffer_remove_srule(buf, srule); for (i = 0; i < buf->first_line->char_count; i++) { ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_set.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.253427
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; buffer_set(buf, "goodbye\nvoid", 12); buffer_get(buf, &data, &data_len); ASSERT("set", 0, strncmp("goodbye\nvoid", data, data_len)); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_set_tab_width.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.492014
#include "test.h" #define comma , char *str = "he\tllo\t\t"; void test(buffer_t *buf, mark_t *cur) { bint_t i; bint_t char_vcols_4[8] = {0 comma 1 comma 2 comma 4 comma 5 comma 6 comma 7 comma 8}; bint_t char_vcols_2a[8] = {0 comma 1 comma 2 comma 4 comma 5 comma 6 comma 7 comma 8}; bin...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_delete_after.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.655818
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; mark_move_beginning(cur); mark_delete_after(cur, 1); buffer_get(buf, &data, &data_len); ASSERT("dela", 0, strncmp("ello\nworld", data, data_len)); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_clone.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.656365
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *other; mark_clone(cur, &other); ASSERT("neq", 1, other != cur ? 1 : 0); ASSERT("next", 1, other == cur->next ? 1 : 0); ASSERT("line", cur->bline, other->bline); ASSERT("col", cur->col, other->col); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_undo.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.710913
#include "test.h" char *str = "hi"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; int action_group; buffer_delete(buf, 0, 1); buffer_undo(buf); buffer_get(buf, &data, &data_len); ASSERT("del", 0, strncmp(data, "hi", data_len)); buffer_insert(buf, 0, "c", 1, NUL...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_delete_between_mark.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.824616
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *other; other = buffer_add_mark(buf, NULL, 0); mark_move_beginning(cur); mark_move_end(other); mark_delete_between(cur, other); ASSERT("count", 0, buf->byte_count); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_delete_before.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.825411
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; mark_move_end(cur); mark_delete_before(cur, 1); buffer_get(buf, &data, &data_len); ASSERT("delb", 0, strncmp("hello\nworl", data, data_len)); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_kinput.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.846262
#include "test.h" #define NUM_KINPUTS 256 #define OFFSETOF(PTR, ELEMENT) ((ptrdiff_t)&(((PTR))->ELEMENT) - (ptrdiff_t)(PTR)) char *str = ""; void test(buffer_t *buf, mark_t *cur) { kinput_t weird_input[NUM_KINPUTS]; kinput_t input; int result; size_t i, j; size_t offsetof_mod, offsetof_ch, offset...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_cmp.c
null
null
null
null
null
null
C
2026-05-04T18:50:29.872822
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *other, *first, *second; int cmp; other = buffer_add_mark(buf, NULL, 0); mark_move_beginning(cur); mark_move_end(other); cmp = mark_cmp(cur, other, &first, &second); ASSERT("a_cmp", -1, cmp); ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_delete_between_mark_2.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.005468
#include "test.h" char *str = " hello {\n world\n }"; void test(buffer_t *buf, mark_t *cur) { mark_t *other; other = buffer_add_mark(buf, NULL, 0); mark_move_next_str(cur, "{", 1); mark_move_by(cur, 1); mark_move_next_str(other, "}", 1); mark_delete_between(cur, other); ASSERT("lnct",...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_find_bracket_pair.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.450255
#include "test.h" char *str = "[ bracket [ test ] ] xyz"; void test(buffer_t *buf, mark_t *cur) { mark_move_beginning(cur); mark_move_bracket_pair(cur, 1024); ASSERT("col1", 19, cur->col); mark_move_by(cur, -2); mark_move_bracket_pair(cur, 1024); ASSERT("col2", 10, cur->col); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_get_nchars_between.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.451074
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *other; bint_t nchars; other = buffer_add_mark(buf, NULL, 0); mark_move_beginning(cur); mark_move_end(other); nchars = 0; mark_get_nchars_between(cur, other, &nchars); ASSERT("nchars", 11, ncha...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_get_between_mark.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.451566
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *str; bint_t str_len; mark_t *other; other = buffer_add_mark(buf, NULL, 0); mark_move_beginning(cur); mark_move_end(other); mark_get_between(cur, other, &str, &str_len); ASSERT("len", 11, str_len...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_insert_before.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.664349
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; mark_move_beginning(cur); mark_insert_before(cur, "s", 1); buffer_get(buf, &data, &data_len); ASSERT("insb", 0, strncmp("shello\nworld", data, data_len)); ASSERT("col", 1, cur...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_get_offset.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.664950
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { bint_t offset; mark_move_end(cur); mark_get_offset(cur, &offset); ASSERT("offset", 11, offset); mark_move_beginning(cur); mark_get_offset(cur, &offset); ASSERT("offset", 0, offset); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_insert_after.c
null
null
null
null
null
null
C
2026-05-04T18:50:30.665596
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; mark_move_beginning(cur); mark_insert_after(cur, "s", 1); buffer_get(buf, &data, &data_len); ASSERT("insa", 0, strncmp("shello\nworld", data, data_len)); ASSERT("col", 0, cur-...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_move_bol.c
null
null
null
null
null
null
C
2026-05-04T18:50:31.308491
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_move_end(cur); mark_move_bol(cur); ASSERT("line", buf->first_line->next, cur->bline); ASSERT("col", 0, cur->col); }
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_is_gt.c
null
null
null
null
null
null
C
2026-05-04T18:50:31.845730
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *other; other = buffer_add_mark(buf, NULL, 0); mark_move_beginning(cur); mark_move_end(other); ASSERT("gt", 1, mark_is_gt(other, cur)); ASSERT("ngt1", 0, mark_is_gt(cur, other)); mark_move_beginn...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_is_at_word_bound.c
null
null
null
null
null
null
C
2026-05-04T18:50:31.973033
#include "test.h" char *str = "obj->method() yes bob"; void test(buffer_t *buf, mark_t *cur) { mark_move_beginning(cur); // |obj->method() yes bob ASSERT("l_bol", 1, mark_is_at_word_bound(cur, -1)); ASSERT("x_bol", 1, mark_is_at_word_bound(cur, 0)); ASSERT("r_bol", 0, mark_is_at_word_bound(cur, 1)); ...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_buffer_substr.c
null
null
null
null
null
null
C
2026-05-04T18:50:34.896327
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { char *data; bint_t data_len; bint_t nchars; buffer_substr(buf, buf->first_line, 4, buf->first_line->next, 1, &data, &data_len, &nchars); ASSERT("datalen", 3, data_len); ASSERT("nchars", 3, nchars); ASSER...
adsr/mle
https://github.com/adsr/mle
null
null
null
null
931
null
null
apache-2.0
null
null
null
null
null
null
null
tests/unit/test_mark_lettered.c
null
null
null
null
null
null
C
2026-05-04T18:50:36.250718
#include "test.h" char *str = "hello\nworld"; void test(buffer_t *buf, mark_t *cur) { mark_t *lett1; mark_t *lett2; mark_t *lett3; mark_clone_w_letter(cur, 'a', &lett1); ASSERT("neq1", 1, lett1 != cur ? 1 : 0); ASSERT("let", '\0', cur->letter); ASSERT("let", 'a', lett1->letter); mark...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/check.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.018033
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/idle.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.018549
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/fs_event.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.022287
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/lhandle.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.024588
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/dns.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.025514
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/fs.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.032848
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/handle.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.036832
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/fs_poll.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.040219
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/async.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.044870
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/constants.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.071987
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/lthreadpool.h
null
null
null
null
null
null
C
2026-05-04T18:50:39.620941
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/luv.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.639147
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/lreq.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.685102
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/metrics.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.701471
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/loop.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.703100
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/luv.h
null
null
null
null
null
null
C
2026-05-04T18:50:39.709126
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/pipe.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.710973
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/lhandle.h
null
null
null
null
null
null
C
2026-05-04T18:50:39.713892
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/lreq.h
null
null
null
null
null
null
C
2026-05-04T18:50:39.727750
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/misc.c
null
null
null
null
null
null
C
2026-05-04T18:50:39.733262
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/poll.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.278503
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/prepare.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.292801
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/signal.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.309721
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/private.h
null
null
null
null
null
null
C
2026-05-04T18:50:40.339604
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/req.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.341121
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/process.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.349309
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/tcp.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.369813
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/test.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.378992
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/stream.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.379455
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/synch.c
null
null
null
null
null
null
C
2026-05-04T18:50:40.440823
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/timer.c
null
null
null
null
null
null
C
2026-05-04T18:50:41.034214
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/thread.c
null
null
null
null
null
null
C
2026-05-04T18:50:41.034984
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/tty.c
null
null
null
null
null
null
C
2026-05-04T18:50:41.035611
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/udp.c
null
null
null
null
null
null
C
2026-05-04T18:50:41.036266
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/util.c
null
null
null
null
null
null
C
2026-05-04T18:50:41.226902
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/util.h
null
null
null
null
null
null
C
2026-05-04T18:50:41.279624
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
luvit/luv
https://github.com/luvit/luv
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
src/work.c
null
null
null
null
null
null
C
2026-05-04T18:50:42.233149
/* * Copyright 2014 The Luvit Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/alltests_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.299055
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/arithtest.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.302794
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/adaptmap_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.303755
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/affine_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.305862
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/common.h
null
null
null
null
null
null
C
2026-05-04T18:50:45.308306
/* * Copyright (C) 2019 Adaptech s.r.o., Robert Pösel * Copyright 2010, Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/arabic_lines.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.313453
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/alphaxform_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.315279
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/alphaops_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.333648
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/adaptmap_dark.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.351552
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/adaptnorm_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:45.353099
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/autogentest2.c
null
null
null
null
null
null
C
2026-05-04T18:50:46.324797
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/autogen.137.c
null
null
null
null
null
null
C
2026-05-04T18:50:46.326391
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/autogentest1.c
null
null
null
null
null
null
C
2026-05-04T18:50:46.327814
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/autogen.137.h
null
null
null
null
null
null
C
2026-05-04T18:50:46.329118
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/bilateral1_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:46.411608
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/bilateral2_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:46.437516
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/barcodetest.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.242622
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/bilinear_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.256942
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/baseline_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.355237
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binarize_set.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.388453
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/bincompare.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.393801
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binarizefiles.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.430319
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binmorph3_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:47.501340
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binmorph5_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:48.080431
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binmorph6_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:48.110427
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/binmorph4_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:48.129006
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/blend1_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:48.212850
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...
adaptech-cz/Tesseract4Android
https://github.com/adaptech-cz/Tesseract4Android
null
null
null
null
928
null
null
apache-2.0
null
null
null
null
null
null
null
tesseract4android/src/main/cpp/leptonica/src/prog/blend2_reg.c
null
null
null
null
null
null
C
2026-05-04T18:50:48.222245
/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source c...