auth.h 204 B

1234567891011
  1. #ifndef _AUTH_H
  2. #define _AUTH_H
  3. #ifndef MAKING_MODS
  4. int new_auth();
  5. int findauth(char *);
  6. void removeauth(int);
  7. char *makehash(struct userrec *, char *);
  8. #endif /* !MAKING_MODS */
  9. #endif /* !_AUTH_H */