hello.h 456 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2025 RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2025-06-21 Bernard First version
  9. */
  10. #ifndef __HELLO_H__
  11. #define __HELLO_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @brief Hello world function
  17. *
  18. * This function prints "Hello World!" to the console
  19. */
  20. void hello_world(void);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /* __HELLO_H__ */