split the cli and the core functionnalities

This commit is contained in:
Marc
2023-01-14 17:34:19 +01:00
parent 0c2b3afa9b
commit fce1c2912c
41 changed files with 878 additions and 751 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef __GET_HOME_H__
#define __GET_HOME_H__
/**
* @brief Get the user home dir regardless if he used sudo.
*
* @return char* path to the home dir
*/
char * getHome(void);
#endif