diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -4,16 +4,16 @@ enum os { - apt, /* Debian */ - dnf, /* Fedora */ - emerge, /* Gentoo */ - pacman, /* Arch */ - xbps, /* Void */ - zypper, /* OpenSUSE */ + dnf, /* Fedora */ + emerge, /* Gentoo */ + pacman, /* Arch */ + xbps, /* Void */ + zypper, /* OpenSUSE */ + apt, /* Debian */ ENUMSIZE }; -int checkIfFileExists(char *path); -int detectOsType(); -char* stringedArgument(int argc, char** argv); -void commandProcessor(char* packages, char* initCommand); +int checkIfFileExists (char *path); +int detectOsType (); +char *stringedArgument (int argc, char **argv); +void commandProcessor (char *packages, char *initCommand); |