From ae78dbbff81196f1d7bc8fabf84d05e6b9f3ca03 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:42:50 +0900 Subject: updates --- fedora/.local/bin/htop-vim/generic/uname.c | 98 ------------------------------ 1 file changed, 98 deletions(-) delete mode 100644 fedora/.local/bin/htop-vim/generic/uname.c (limited to 'fedora/.local/bin/htop-vim/generic/uname.c') diff --git a/fedora/.local/bin/htop-vim/generic/uname.c b/fedora/.local/bin/htop-vim/generic/uname.c deleted file mode 100644 index 2a734dc..0000000 --- a/fedora/.local/bin/htop-vim/generic/uname.c +++ /dev/null @@ -1,98 +0,0 @@ -/* -htop - generic/uname.c -(C) 2021 htop dev team -Released under the GNU GPLv2+, see the COPYING file -in the source distribution for its full text. -*/ -#include "config.h" // IWYU pragma: keep - -#include "generic/uname.h" - -#include -#include -#include - -#include "Macros.h" -#include "XUtils.h" - -#ifdef HAVE_SYS_UTSNAME_H -#include -#endif - - -#ifndef OSRELEASEFILE -#define OSRELEASEFILE "/etc/os-release" -#endif - -static void parseOSRelease(char* buffer, size_t bufferLen) { - FILE* stream = fopen(OSRELEASEFILE, "r"); - if (!stream) { - xSnprintf(buffer, bufferLen, "No OS Release"); - return; - } - - char name[64] = {'\0'}; - char version[64] = {'\0'}; - char lineBuffer[256]; - while (fgets(lineBuffer, sizeof(lineBuffer), stream)) { - if (String_startsWith(lineBuffer, "PRETTY_NAME=\"")) { - const char* start = lineBuffer + strlen("PRETTY_NAME=\""); - const char* stop = strrchr(lineBuffer, '"'); - if (!stop || stop <= start) - continue; - String_safeStrncpy(buffer, start, MINIMUM(bufferLen, (size_t)(stop - start + 1))); - fclose(stream); - return; - } - if (String_startsWith(lineBuffer, "NAME=\"")) { - const char* start = lineBuffer + strlen("NAME=\""); - const char* stop = strrchr(lineBuffer, '"'); - if (!stop || stop <= start) - continue; - String_safeStrncpy(name, start, MINIMUM(sizeof(name), (size_t)(stop - start + 1))); - continue; - } - if (String_startsWith(lineBuffer, "VERSION=\"")) { - const char* start = lineBuffer + strlen("VERSION=\""); - const char* stop = strrchr(lineBuffer, '"'); - if (!stop || stop <= start) - continue; - String_safeStrncpy(version, start, MINIMUM(sizeof(version), (size_t)(stop - start + 1))); - continue; - } - } - fclose(stream); - - snprintf(buffer, bufferLen, "%s%s%s", name[0] ? name : "", name[0] && version[0] ? " " : "", version); -} - -char* Generic_uname(void) { - static char savedString[ - /* uname structure fields - manpages recommend sizeof */ - sizeof(((struct utsname*)0)->sysname) + - sizeof(((struct utsname*)0)->release) + - sizeof(((struct utsname*)0)->machine) + - 16/*markup*/ + - 128/*distro*/] = {'\0'}; - static bool loaded_data = false; - - if (!loaded_data) { - struct utsname uname_info; - int uname_result = uname(&uname_info); - - char distro[128]; - parseOSRelease(distro, sizeof(distro)); - - if (uname_result == 0) { - size_t written = xSnprintf(savedString, sizeof(savedString), "%s %s [%s]", uname_info.sysname, uname_info.release, uname_info.machine); - if (!String_contains_i(savedString, distro, false) && sizeof(savedString) > written) - snprintf(savedString + written, sizeof(savedString) - written, " @ %s", distro); - } else { - snprintf(savedString, sizeof(savedString), "%s", distro); - } - - loaded_data = true; - } - - return savedString; -} -- cgit v1.2.3