1 2 3 4 5 6 7 8 9 10 11 12
#include <stdlib.h> char * getlogin(void) { /* TODO: get actual controlling terminal, then read utmpx */ return getenv("LOGNAME"); } /* POSIX(1) */