SimpleKernel  0.0.1
libc.h File Reference

libc 头文件 More...

#include "stdint.h"
Include dependency graph for libc.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int32_t libc (uint32_t _argc, uint8_t **_argv)
 入口 More...
 

Detailed Description

libc 头文件

Author
Zone.N (Zone..nosp@m.Niuz.nosp@m.h@hot.nosp@m.mail.nosp@m..com)
Version
1.0
Date
2023-07-15
change log:
DateAuthorDescription
2023-07-15Zone.N (Zone..nosp@m.Niuz.nosp@m.h@hot.nosp@m.mail.nosp@m..com)创建文件

Definition in file libc.h.

Function Documentation

◆ libc()

int32_t libc ( uint32_t  _argc,
uint8_t **  _argv 
)

入口

Parameters
_argc参数个数
_argv参数列表
Returns
int32_t 正常返回 0

Definition at line 23 of file libc.c.

23  {
24  (void)_argc;
25  (void)_argv;
26 
27  // 进入死循环
28  while (1) {
29  ;
30  }
31 
32  return 0;
33 }