sync .clang-format with ph

This commit is contained in:
Yanis002
2025-07-21 01:15:37 +02:00
parent 2b33c7efe5
commit 79c5284c20
12 changed files with 150 additions and 132 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
#pragma once
typedef struct DestructorChain {
/* 0 */ struct DestructorChain* next;
/* 4 */ void* destructor;
/* 8 */ void* object;
/* 0 */ struct DestructorChain *next;
/* 4 */ void *destructor;
/* 8 */ void *object;
/* c */
} DestructorChain;
void* __register_global_object(void* object, void* destructor, DestructorChain* link);
void *__register_global_object(void *object, void *destructor, DestructorChain *link);