whoami.c 202 B

1234567891011121314151617
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <grass/gis.h>
  4. /*!
  5. \fn
  6. \brief
  7. \return
  8. \param
  9. */
  10. char *db_whoami()
  11. {
  12. char *userid = G_store(getenv("LOGNAME"));
  13. return userid;
  14. }