Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

41 строка
1.1 KiB

  1. /*
  2. * aptdec - A lightweight FOSS (NOAA) APT decoder
  3. * Copyright (C) 2019-2023 Xerbo (xerbo@protonmail.com)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. #include "util.h"
  19. #include <stdlib.h>
  20. #include <math.h>
  21. float clamp(float x, float lo, float hi) {
  22. if (x > hi) return hi;
  23. if (x < lo) return lo;
  24. return x;
  25. }
  26. int clamp_int(int x, int lo, int hi) {
  27. if (x > hi) return hi;
  28. if (x < lo) return lo;
  29. return x;
  30. }
  31. void swap_uint8(uint8_t *a, uint8_t *b) {
  32. uint8_t tmp = *a;
  33. *a = *b;
  34. *b = tmp;
  35. }