| b.liu | 047a21c | 2024-06-07 17:54:41 +0800 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | #include <stdlib.h> | ||||
| 3 | |||||
| 4 | #include "mbtk_version.h" | ||||
| b.liu | bcf86c9 | 2024-08-19 19:48:28 +0800 | [diff] [blame] | 5 | #include "mbtk_log.h" |
| b.liu | 047a21c | 2024-06-07 17:54:41 +0800 | [diff] [blame] | 6 | |
| 7 | int main(int argc, char *argv[]) | ||||
| 8 | { | ||||
| 9 | char buff[2048] = {0}; | ||||
| 10 | |||||
| 11 | mbtk_build_def_get(buff, sizeof(buff)); | ||||
| 12 | |||||
| 13 | printf("%s\n", buff); | ||||
| 14 | |||||
| b.liu | bcf86c9 | 2024-08-19 19:48:28 +0800 | [diff] [blame] | 15 | |
| 16 | mbtk_lib_info_print(); | ||||
| b.liu | bcf86c9 | 2024-08-19 19:48:28 +0800 | [diff] [blame] | 17 | |
| b.liu | 047a21c | 2024-06-07 17:54:41 +0800 | [diff] [blame] | 18 | return 0; |
| 19 | } | ||||
| 20 | |||||