mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 01:49:55 +08:00
18 lines
219 B
C
18 lines
219 B
C
/**
|
|
* @file rtems/rtems_webserver.h
|
|
*/
|
|
|
|
#ifndef _rtems_rtems_webserver_h
|
|
#define _rtems_rtems_webserver_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int rtems_initialize_webserver();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|