Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
  2.  
  3. #include <sys/dirent.h>
  4.  
  5. unsigned telldir(DIR *dir)
  6. {
  7.     if(dir!=NULL){
  8.         return dir->pos;
  9.     }else{
  10.         return 0;
  11.     }
  12. }