Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/sh_files.h

    r27 r20  
    2323/* register exceptions to hardlink check
    2424 */
    25 int sh_files_hle_reg (const char * str);
     25int sh_files_hle_reg (char * str);
    2626
    2727/* check the setup
     
    3535/* activate hardlink check
    3636 */
    37 int sh_files_check_hardlinks (const char * opt);
     37int sh_files_check_hardlinks (char * opt);
    3838
    3939/* set recursion depth
     
    4343/* report only once
    4444 */
    45 int sh_files_reportonce(const char * c);
     45int sh_files_reportonce(char * c);
    4646
    4747/* report full details
    4848 */
    49 int sh_files_fulldetail(const char * c);
     49int sh_files_fulldetail(char * c);
    5050
    5151/* reset the 'checked' flag
     
    6767/* push a directory on the stack USER0
    6868 */
    69 int  sh_files_pushdir_user0 (const char * dirName);
     69int  sh_files_pushdir_user0 (char * dirName);
    7070
    7171/* push a directory on the stack USER1
    7272 */
    73 int  sh_files_pushdir_user1 (const char * dirName);
    74 
    75 /* push a directory on the stack USER2
    76  */
    77 int  sh_files_pushdir_user2 (const char * dirName);
    78 
    79 /* push a directory on the stack USER3
    80  */
    81 int  sh_files_pushdir_user3 (const char * dirName);
    82 
    83 /* push a directory on the stack USER4
    84  */
    85 int  sh_files_pushdir_user4 (const char * dirName);
     73int  sh_files_pushdir_user1 (char * dirName);
    8674
    8775/* push a directory on the stack PRELINK
    8876 */
    89 int  sh_files_pushdir_prelink (const char * dirName);
     77int  sh_files_pushdir_prelink (char * dirName);
    9078
    9179/* push a directory on the stack ATTR
    9280 */
    93 int  sh_files_pushdir_attr (const char * dirName);
     81int  sh_files_pushdir_attr (char * dirName);
    9482
    9583/* push a directory on the stack READONLY
    9684 */
    97 int  sh_files_pushdir_ro (const char * dirName);
     85int  sh_files_pushdir_ro (char * dirName);
    9886
    9987/* push a directory on the stack LOGFILE
    10088 */
    101 int  sh_files_pushdir_log (const char * dirName);
     89int  sh_files_pushdir_log (char * dirName);
    10290
    10391/* push a directory on the stack GROWING LOGFILE
    10492 */
    105 int  sh_files_pushdir_glog (const char * dirName);
     93int  sh_files_pushdir_glog (char * dirName);
    10694
    10795/* push a directory on the stack IGNORE NONE
    10896 */
    109 int  sh_files_pushdir_noig (const char * dirName);
     97int  sh_files_pushdir_noig (char * dirName);
    11098
    11199/* push a directory on the stack IGNORE ALL
    112100 */
    113 int  sh_files_pushdir_allig (const char * dirName);
     101int  sh_files_pushdir_allig (char * dirName);
    114102
    115103
    116104/* push a file on the stack USER0
    117105 */
    118 int  sh_files_pushfile_user0 (const char * dirName);
     106int  sh_files_pushfile_user0 (char * dirName);
    119107
    120108/* push a file on the stack USER1
    121109 */
    122 int  sh_files_pushfile_user1 (const char * dirName);
    123 
    124 /* push a file on the stack USER2
    125  */
    126 int  sh_files_pushfile_user2 (const char * dirName);
    127 
    128 /* push a file on the stack USER3
    129  */
    130 int  sh_files_pushfile_user3 (const char * dirName);
    131 
    132 /* push a file on the stack USER4
    133  */
    134 int  sh_files_pushfile_user4 (const char * dirName);
     110int  sh_files_pushfile_user1 (char * dirName);
    135111
    136112/* push a file on the stack PRELINK
    137113 */
    138 int  sh_files_pushfile_prelink (const char * dirName);
     114int  sh_files_pushfile_prelink (char * dirName);
    139115
    140116/* push a file on the stack ATTR
    141117 */
    142 int  sh_files_pushfile_attr (const char * dirName);
     118int  sh_files_pushfile_attr (char * dirName);
    143119
    144120/* push a file on the stack READONLY
    145121 */
    146 int  sh_files_pushfile_ro (const char * dirName);
     122int  sh_files_pushfile_ro (char * dirName);
    147123
    148124/* push a file on the stack LOGFILE
    149125 */
    150 int  sh_files_pushfile_log (const char * dirName);
     126int  sh_files_pushfile_log (char * dirName);
    151127
    152128/* push a file on the stack GROWING LOGFILE
    153129 */
    154 int  sh_files_pushfile_glog (const char * dirName);
     130int  sh_files_pushfile_glog (char * dirName);
    155131
    156132/* push a file on the stack IGNORE NONE
    157133 */
    158 int  sh_files_pushfile_noig (const char * dirName);
     134int  sh_files_pushfile_noig (char * dirName);
    159135
    160136/* push a file on the stack IGNORE ALL
    161137 */
    162 int  sh_files_pushfile_allig (const char * dirName);
     138int  sh_files_pushfile_allig (char * dirName);
    163139
    164140
     
    177153/* redefine policies
    178154 */
    179 int sh_files_redef_user0(const char * str);
    180 int sh_files_redef_user1(const char * str);
    181 int sh_files_redef_user2(const char * str);
    182 int sh_files_redef_user3(const char * str);
    183 int sh_files_redef_user4(const char * str);
    184 int sh_files_redef_prelink(const char * str);
    185 int sh_files_redef_readonly(const char * str);
    186 int sh_files_redef_loggrow(const char * str);
    187 int sh_files_redef_logfiles(const char * str);
    188 int sh_files_redef_attributes(const char * str);
    189 int sh_files_redef_noignore(const char * str);
    190 int sh_files_redef_allignore(const char * str);
     155int sh_files_redef_user0(char * str);
     156int sh_files_redef_user1(char * str);
     157int sh_files_redef_prelink(char * str);
     158int sh_files_redef_readonly(char * str);
     159int sh_files_redef_loggrow(char * str);
     160int sh_files_redef_logfiles(char * str);
     161int sh_files_redef_attributes(char * str);
     162int sh_files_redef_noignore(char * str);
     163int sh_files_redef_allignore(char * str);
    191164
    192165
Note: See TracChangeset for help on using the changeset viewer.