mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 15:00:16 +00: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
|