~kubuntu-members/kuser/4.11

« back to all changes in this revision

Viewing changes to sdwtool.h

  • Committer: Denis Perchine II
  • Date: 1997-09-28 16:05:44 UTC
  • Revision ID: git-v1:6081dc09617428a0a911bca085cd3a7880c3ade1
Adding KUser project to cvs tree.
Sorry but It even don't compile now.
I'm reordering sources. ;-)
dyp


svn path=/trunk/kdeadmin/kuser/; revision=1517

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// directory shadow:        functions processing the /etc/shadow file
 
2
#ifndef _XU_SHADOW_H_
 
3
#define _XU_SHADOW_H_
 
4
 
 
5
#ifdef _XU_SHADOW
 
6
 
 
7
#include "includes.h"
 
8
 
 
9
void shadow_cp(KUser *, spwd const *);      // copy fields of a shadow struct
 
10
void sdw_read(void);                            // read the /etc/shadow file
 
11
void sdw_write(void);                           // write the /etc/shadow file
 
12
spwd *spwstruct(KUser *);                                                       
 
13
 
 
14
#endif // _XU_SHADOW
 
15
 
 
16
#endif // _XU_SHADOW_H_
 
17