code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(10 lines)
1 // Logic for getting information about and installing packages
3 #pragma once
5 #include <stdbool.h>
7 #include "ast.h"
9 Text_t get_package_name(Path_t lib_dir);
10 OptionalPath_t find_installed_package(ast_t *use);