diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-06-02 16:54:20 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-06-02 16:54:20 -0400 |
| commit | c2a74cc20ebaa9898052ab758821ccfc7c3ee1f4 (patch) | |
| tree | 9a9d90471dd6241da885950c5b52416bba28619f /src/dashboard.c | |
| download | sober-c2a74cc20ebaa9898052ab758821ccfc7c3ee1f4.tar.gz sober-c2a74cc20ebaa9898052ab758821ccfc7c3ee1f4.tar.bz2 sober-c2a74cc20ebaa9898052ab758821ccfc7c3ee1f4.zip | |
Initial commit
Diffstat (limited to 'src/dashboard.c')
| -rw-r--r-- | src/dashboard.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/dashboard.c b/src/dashboard.c new file mode 100644 index 0000000..782e4ef --- /dev/null +++ b/src/dashboard.c @@ -0,0 +1,9 @@ +#include <stdio.h> +#include <stdlib.h> +#include "shared.h" + +int main(){ + char* ret = getenv("HTTP_COOKIE"); + printf("%s",ret); + return 0; +} |
