|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * aptdec - A lightweight FOSS (NOAA) APT decoder
- * Copyright (C) 2019-2023 Xerbo (xerbo@protonmail.com)
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
- #include "util.h"
-
- #include <aptdec.h>
- #include <stdio.h>
- #include <stdlib.h>
-
- void error_noexit(const char *text) {
- #ifdef _WIN32
- fprintf(stderr, "Error: %s\r\n", text);
- #else
- fprintf(stderr, "\033[31mError: %s\033[0m\n", text);
- #endif
- }
-
- void error(const char *text) {
- error_noexit(text);
- exit(1);
- }
-
- void warning(const char *text) {
- #ifdef _WIN32
- fprintf(stderr, "Warning: %s\r\n", text);
- #else
- fprintf(stderr, "\033[33mWarning: %s\033[0m\n", text);
- #endif
- }
-
- int clamp_int(int x, int lo, int hi) {
- if (x > hi) return hi;
- if (x < lo) return lo;
- return x;
- }
-
- int get_version(char *str) {
- return sprintf(str, "aptdec-cli %s using libaptdec %s", VERSION, aptdec_get_version());
- }
|