some big brain changes

This commit is contained in:
The Arrayser 2022-08-28 13:35:39 +02:00 committed by GitHub
parent b1b6f01422
commit fa996973ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,12 +7,14 @@
#define sus_True 1 #define sus_True 1
#define sus_False 0 #define sus_False 0
#define SUS_FILE_TEMP (1UL << 0) #define SUS_FILE_TEMP ((1UL << 0) | SUS_FILE_NEW) //A temporary file gets automatically deleted, once it is no longer needed; a temp file also has to be a new file
#define SUS_FILE_NEW (1UL << 1) #define SUS_FILE_NEW (1UL << 1)
#define SUS_FILE_NOTHING 0UL #define SUS_FILE_NOTHING 0UL
//Naming: firstly the package, then the topic, lastly the operation //Naming: firstly the package, then the topic, lastly the operation
#include <stddef.h>
//Operating System independent implementation //Operating System independent implementation
typedef struct sus_File_impl * sus_File; typedef struct sus_File_impl * sus_File;