mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
15 lines
272 B
C
15 lines
272 B
C
|
#ifndef __CHMOD_H
|
||
|
#define __CHMOD_H
|
||
|
void chmod_cmd (void);
|
||
|
int stat_file (char *, struct stat *);
|
||
|
void ch1_cmd (int id);
|
||
|
void ch2_cmd (int id);
|
||
|
|
||
|
extern Dlg_head *ch_dlg;
|
||
|
|
||
|
extern umode_t c_stat;
|
||
|
extern char *c_fname, *c_fown, *c_fgrp, *c_fperm;
|
||
|
extern int c_fsize;
|
||
|
|
||
|
#endif
|