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/Object.c | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 fedora/.local/bin/htop-vim/Object.c (limited to 'fedora/.local/bin/htop-vim/Object.c') diff --git a/fedora/.local/bin/htop-vim/Object.c b/fedora/.local/bin/htop-vim/Object.c deleted file mode 100644 index f009148..0000000 --- a/fedora/.local/bin/htop-vim/Object.c +++ /dev/null @@ -1,29 +0,0 @@ -/* -htop - Object.c -(C) 2004-2012 Hisham H. Muhammad -(C) 2020 Red Hat, Inc. All Rights Reserved. -Released under the GNU GPLv2+, see the COPYING file -in the source distribution for its full text. -*/ - -#include "Object.h" - -#include - - -const ObjectClass Object_class = { - .extends = NULL -}; - -bool Object_isA(const Object* o, const ObjectClass* klass) { - if (!o) - return false; - - for (const ObjectClass* type = o->klass; type; type = type->extends) { - if (type == klass) { - return true; - } - } - - return false; -} -- cgit v1.2.3