You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Helpers.h 414B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "Boiler.h"
  3. class Helpers
  4. {
  5. public:
  6. static void tempToStr(
  7. char* out
  8. , temp_t temp
  9. , signed char width
  10. );
  11. static void fillLine(
  12. char* line
  13. , int length
  14. , char c
  15. );
  16. static void center(
  17. char* line
  18. , const char* text
  19. , int length
  20. , char c
  21. );
  22. };