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
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI.h
null
null
null
null
null
null
C
2026-05-04T18:27:54.561145
/* * include/LCUI.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <yutil.h> #include <css.h> #in...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/fonts.h
null
null
null
null
null
null
C
2026-05-04T18:27:54.564763
/* * include/LCUI/fonts.h * * Copyright (c) 2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE_LCUI_FONTS_H #def...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
examples/todolist/src/main.c
null
null
null
null
null
null
C
2026-05-04T18:27:54.567813
// Reference from: https://codepen.io/knyttneve/details/mddGVjB #include <stdio.h> #include <LCUI.h> #include <ptk/main.h> typedef struct task { unsigned id; wchar_t *name; const char *status; } task_t; struct todolist_app { unsigned id; list_t tasks; } app = { 0 }; ui_widget...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
examples/hello/src/main.c
null
null
null
null
null
null
C
2026-05-04T18:27:54.571446
#include <LCUI.h> #include <ptk/main.h> static void on_btn_click(ui_widget_t *self, ui_event_t *e, void *arg) { wchar_t str[256]; ui_widget_t *edit = ui_get_widget("edit"); ui_widget_t *txt = ui_get_widget("text-hello"); ui_textinput_get_text_w(edit, 0, 255, str); ui_text_set_...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/base.h
null
null
null
null
null
null
C
2026-05-04T18:27:54.625683
/* * include/LCUI/base.h * * Copyright (c) 2024-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE_LCUI_BASE_H #...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/main.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.096396
/* * include/LCUI/main.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <ptk/main.h>
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/settings.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.130859
/* * include/LCUI/settings.h * * Copyright (c) 2024-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE_LCUI_SETT...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/ui.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.175010
/* * include/LCUI/ui.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE_UI_H #define LC...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/anchor.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.209673
/* * include/LCUI/widgets/anchor.h: to <a> element in HTML. * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/button.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.228025
/* * include/LCUI/widgets/button.h: -- LCUI‘s Button widget * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/router_link.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.229001
/* * include/LCUI/widgets/router_link.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCOID...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.244551
/* * include/LCUI/widgets.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include "widgets/text.h" #incl...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/canvas.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.257542
/* * include/LCUI/widgets/canvas.h: -- canvas, used to draw custom graphics * * Copyright (c) 2019-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of thi...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/router_view.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.287198
/* * include/LCUI/widgets/router_view.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCOID...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/scrollarea.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.322552
/* * include/LCUI/widgets/scrollarea.h * * Copyright (c) 2024-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/scrollbar.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.699062
/* * include/LCUI/widgets/scrollbar.h: -- LCUI's scrollbar widget * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source t...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/text.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.763932
/* * include/LCUI/widgets/text.h: -- TextView widget for display * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tr...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/textcaret.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.812674
/* * include/LCUI/widgets/textcaret.h: -- textcaret widget, used in textinput. * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/widgets/textinput.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.820334
/* * include/LCUI/widgets/textinput.h: -- textinput widget, used to allow user edit text. * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root di...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.892448
/* * lib/css/include/css.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_CSS_H #de...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/common.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.896015
/* * lib/css/include/css/common.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include "config.h" #ifde...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
include/LCUI/worker.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.925316
/* * include/LCUI/worker.h * * Copyright (c) 2024-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LCUI_INCLUDE_LCUI_WORKER...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/data_types.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.927103
/* * lib/css/include/css/data_types.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUD...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/computed.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.933831
/* * lib/css/include/css/computed.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/keywords.h
null
null
null
null
null
null
C
2026-05-04T18:27:55.945106
/* * lib/css/include/css/keywords.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/library.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.361728
/* * lib/css/include/css/library.h: -- CSS library operation module. * * Copyright (c) 2022-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this sourc...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/parser.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.416435
/* * lib/css/include/css/parser.h: -- CSS parser module * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/properties.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.449797
/* * lib/css/include/css/properties.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUD...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/selector.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.450468
/* * lib/css/include/css/selector.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/style_value.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.488424
/* * lib/css/include/css/style_value.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLU...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/style_decl.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.515874
/* * lib/css/include/css/style_decl.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUD...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/computed.c
null
null
null
null
null
null
C
2026-05-04T18:27:56.564064
/* * lib/css/src/computed.c * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <css/utils.h> #include...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/value.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.574714
/* * lib/css/include/css/value.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_CSS...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/types.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.576205
/* * lib/css/include/css/types.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_CSS...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/include/css/utils.h
null
null
null
null
null
null
C
2026-05-04T18:27:56.604132
/* * lib/css/include/css/utils.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_CSS...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/data_types.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.010914
/* * lib/css/src/data_types.c * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <stdio.h> #include <...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/debug.h
null
null
null
null
null
null
C
2026-05-04T18:27:57.061303
/* * lib/css/src/debug.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifdef DEBUG #define DEBUG_MSG _DE...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/dump.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.071502
/* * lib/css/src/dump.c * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <stdio.h> #include <stdarg...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/dump.h
null
null
null
null
null
null
C
2026-05-04T18:27:57.101638
/* * lib/css/src/dump.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #ifndef LIBCSS_INCLUDE_CSS_DUMP_H #...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/font_face_parser.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.123961
/* * lib/css/src/font_face_parser.c: -- CSS @font-face rule parser module * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/keywords.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.136364
/* * lib/css/src/keywords.c * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include <errno.h> #include <cs...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/main.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.168899
/* * lib/css/src/main.c * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include "../include/css.h" void c...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/library.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.184479
/* * lib/css/src/library.c: -- CSS library operation module. * * Copyright (c) 2018-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. ...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/parser.c
null
null
null
null
null
null
C
2026-05-04T18:27:57.213714
/* * lib/css/src/parser.c: -- css parser module * * Copyright (c) 2022-2025, Liu chao <lc-soft@live.cn> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #include...
lc-soft/LCUI
https://github.com/lc-soft/LCUI
null
null
null
null
4,313
null
null
mit
null
null
null
null
null
null
null
lib/css/src/parser.h
null
null
null
null
null
null
C
2026-05-04T18:27:57.237585
/* * lib/css/src/parser.h * * Copyright (c) 2023-2025, Liu Chao <i@lc-soft.io> All rights reserved. * * SPDX-License-Identifier: MIT * * This file is part of LCUI, distributed under the MIT License found in the * LICENSE.TXT file in the root directory of this source tree. */ #define CASE_WHITE_SPACE \ case ...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
android_usb_devices.h
null
null
null
null
null
null
C
2026-05-04T18:27:59.795175
//Copyright 2020 <>< Charles Lohr, You may use this file and library freely under the MIT/x11, NewBSD or ColorChord Licenses. #ifndef _ANDROID_USB_DEVICES_H #define _ANDROID_USB_DEVICES_H #include <asset_manager.h> #include <asset_manager_jni.h> #include <android_native_app_glue.h> int RequestPermissionOrGetConnecti...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
android_native_app_glue.h
null
null
null
null
null
null
C
2026-05-04T18:27:59.804847
/* * Copyright (C) 2010 The Android Open Source Project * * 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...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
android_native_app_glue.c
null
null
null
null
null
null
C
2026-05-04T18:27:59.805517
/* * Copyright (C) 2010 The Android Open Source Project * * 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...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
test.c
null
null
null
null
null
null
C
2026-05-04T18:27:59.819434
//Copyright (c) 2011-2020 <>< Charles Lohr - Under the MIT/x11 or NewBSD License you choose. // NO WARRANTY! NO GUARANTEE OF SUPPORT! USE AT YOUR OWN RISK #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include "os_generic.h" #include <GLES3/gl3.h> #include <android/asset_manager.h> #incl...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
webview_native_activity.h
null
null
null
null
null
null
C
2026-05-04T18:27:59.843254
#ifndef _WEBVIEW_NATIVE_ACTIVITY #define _WEBVIEW_NATIVE_ACTIVITY #include <android/native_activity.h> extern volatile jobject g_objRootView; typedef struct { jobject WebViewObject; jobjectArray MessageChannels; jobject BackingBitmap; jobject BackingCanvas; int updated_canvas; int w, h; } WebViewNativeActivity...
cnlohr/rawdrawandroid
https://github.com/cnlohr/rawdrawandroid
null
null
null
null
4,267
null
null
mit
null
null
null
null
null
null
null
android_usb_devices.c
null
null
null
null
null
null
C
2026-05-04T18:27:59.873160
//Copyright 2020 <>< Charles Lohr, You may use this file and library freely under the MIT/x11, NewBSD or ColorChord Licenses. #include "android_usb_devices.h" #include "CNFG.h" #include "os_generic.h" double dTimeOfUSBFail; double dTimeOfLastAsk; jobject deviceConnection = 0; int deviceConnectionFD = 0; extern struct...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/number_test.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.166694
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/buffer_test.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.200995
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
examples/numarray/numarray.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.211370
#include <stdlib.h> #include <janet.h> typedef struct { double *data; size_t size; } num_array; static num_array *num_array_init(num_array *array, size_t size) { array->data = (double *)janet_calloc(size, sizeof(double)); array->size = size; return array; } static void num_array_deinit(num_array ...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
examples/ffi/so.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.229244
#include <stdio.h> #include <stdint.h> #include <string.h> #ifdef _WIN32 #define EXPORTER __declspec(dllexport) #else #define EXPORTER #endif /* Structs */ typedef struct { int a, b; float c, d; } Split; typedef struct { float c, d; int a, b; } SplitFlip; typedef struct { int u, v, w, x, y, z; ...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/tests.h
null
null
null
null
null
null
C
2026-05-04T18:28:07.232903
#ifndef TESTS_H_DNMBUYYL #define TESTS_H_DNMBUYYL /* Tests */ extern int array_test(); extern int buffer_test(); extern int number_test(); extern int system_test(); extern int table_test(); #endif /* end of include guard: TESTS_H_DNMBUYYL */
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/array_test.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.240699
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/boot.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.244243
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/table_test.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.257682
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/boot/system_test.c
null
null
null
null
null
null
C
2026-05-04T18:28:07.272934
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/array.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.072908
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/cfuns.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.074008
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/bytecode.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.114287
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/abstract.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.146249
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/buffer.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.155074
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/compile.h
null
null
null
null
null
null
C
2026-05-04T18:28:08.161832
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/corelib.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.175415
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/capi.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.181649
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/compile.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.230639
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/asm.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.456963
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/debug.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.678294
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/emit.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.736467
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/emit.h
null
null
null
null
null
null
C
2026-05-04T18:28:08.737718
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/features.h
null
null
null
null
null
null
C
2026-05-04T18:28:08.755974
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/fiber.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.786377
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/fiber.h
null
null
null
null
null
null
C
2026-05-04T18:28:08.849244
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/gc.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.895513
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/filewatch.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.929791
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/ffi.c
null
null
null
null
null
null
C
2026-05-04T18:28:08.943613
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/gc.h
null
null
null
null
null
null
C
2026-05-04T18:28:09.118484
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/inttypes.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.275395
/* * Copyright (c) 2026 Calvin Rose & contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/io.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.362033
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/marsh.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.388330
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/math.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.390053
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/net.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.412961
/* * Copyright (c) 2026 Calvin Rose and contributors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, me...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/parse.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.474865
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/peg.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.494765
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/regalloc.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.549065
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/pp.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.587976
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/regalloc.h
null
null
null
null
null
null
C
2026-05-04T18:28:09.731454
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/run.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.883289
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/state.c
null
null
null
null
null
null
C
2026-05-04T18:28:09.990114
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/state.h
null
null
null
null
null
null
C
2026-05-04T18:28:09.996458
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/specials.c
null
null
null
null
null
null
C
2026-05-04T18:28:10.014711
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/string.c
null
null
null
null
null
null
C
2026-05-04T18:28:10.084971
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/strtod.c
null
null
null
null
null
null
C
2026-05-04T18:28:10.129314
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/struct.c
null
null
null
null
null
null
C
2026-05-04T18:28:10.147977
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/symcache.h
null
null
null
null
null
null
C
2026-05-04T18:28:10.226496
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/symcache.c
null
null
null
null
null
null
C
2026-05-04T18:28:10.226978
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...
janet-lang/janet
https://github.com/janet-lang/janet
null
null
null
null
4,237
null
null
mit
null
null
null
null
null
null
null
src/core/table.c
null
null
null
null
null
null
C
2026-05-04T18:28:11.267929
/* * Copyright (c) 2026 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, dist...