Changes in trunk/include/sh_files.h [27:20]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/sh_files.h
r27 r20 23 23 /* register exceptions to hardlink check 24 24 */ 25 int sh_files_hle_reg (c onst char * str);25 int sh_files_hle_reg (char * str); 26 26 27 27 /* check the setup … … 35 35 /* activate hardlink check 36 36 */ 37 int sh_files_check_hardlinks (c onst char * opt);37 int sh_files_check_hardlinks (char * opt); 38 38 39 39 /* set recursion depth … … 43 43 /* report only once 44 44 */ 45 int sh_files_reportonce(c onst char * c);45 int sh_files_reportonce(char * c); 46 46 47 47 /* report full details 48 48 */ 49 int sh_files_fulldetail(c onst char * c);49 int sh_files_fulldetail(char * c); 50 50 51 51 /* reset the 'checked' flag … … 67 67 /* push a directory on the stack USER0 68 68 */ 69 int sh_files_pushdir_user0 (c onst char * dirName);69 int sh_files_pushdir_user0 (char * dirName); 70 70 71 71 /* push a directory on the stack USER1 72 72 */ 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); 73 int sh_files_pushdir_user1 (char * dirName); 86 74 87 75 /* push a directory on the stack PRELINK 88 76 */ 89 int sh_files_pushdir_prelink (c onst char * dirName);77 int sh_files_pushdir_prelink (char * dirName); 90 78 91 79 /* push a directory on the stack ATTR 92 80 */ 93 int sh_files_pushdir_attr (c onst char * dirName);81 int sh_files_pushdir_attr (char * dirName); 94 82 95 83 /* push a directory on the stack READONLY 96 84 */ 97 int sh_files_pushdir_ro (c onst char * dirName);85 int sh_files_pushdir_ro (char * dirName); 98 86 99 87 /* push a directory on the stack LOGFILE 100 88 */ 101 int sh_files_pushdir_log (c onst char * dirName);89 int sh_files_pushdir_log (char * dirName); 102 90 103 91 /* push a directory on the stack GROWING LOGFILE 104 92 */ 105 int sh_files_pushdir_glog (c onst char * dirName);93 int sh_files_pushdir_glog (char * dirName); 106 94 107 95 /* push a directory on the stack IGNORE NONE 108 96 */ 109 int sh_files_pushdir_noig (c onst char * dirName);97 int sh_files_pushdir_noig (char * dirName); 110 98 111 99 /* push a directory on the stack IGNORE ALL 112 100 */ 113 int sh_files_pushdir_allig (c onst char * dirName);101 int sh_files_pushdir_allig (char * dirName); 114 102 115 103 116 104 /* push a file on the stack USER0 117 105 */ 118 int sh_files_pushfile_user0 (c onst char * dirName);106 int sh_files_pushfile_user0 (char * dirName); 119 107 120 108 /* push a file on the stack USER1 121 109 */ 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); 110 int sh_files_pushfile_user1 (char * dirName); 135 111 136 112 /* push a file on the stack PRELINK 137 113 */ 138 int sh_files_pushfile_prelink (c onst char * dirName);114 int sh_files_pushfile_prelink (char * dirName); 139 115 140 116 /* push a file on the stack ATTR 141 117 */ 142 int sh_files_pushfile_attr (c onst char * dirName);118 int sh_files_pushfile_attr (char * dirName); 143 119 144 120 /* push a file on the stack READONLY 145 121 */ 146 int sh_files_pushfile_ro (c onst char * dirName);122 int sh_files_pushfile_ro (char * dirName); 147 123 148 124 /* push a file on the stack LOGFILE 149 125 */ 150 int sh_files_pushfile_log (c onst char * dirName);126 int sh_files_pushfile_log (char * dirName); 151 127 152 128 /* push a file on the stack GROWING LOGFILE 153 129 */ 154 int sh_files_pushfile_glog (c onst char * dirName);130 int sh_files_pushfile_glog (char * dirName); 155 131 156 132 /* push a file on the stack IGNORE NONE 157 133 */ 158 int sh_files_pushfile_noig (c onst char * dirName);134 int sh_files_pushfile_noig (char * dirName); 159 135 160 136 /* push a file on the stack IGNORE ALL 161 137 */ 162 int sh_files_pushfile_allig (c onst char * dirName);138 int sh_files_pushfile_allig (char * dirName); 163 139 164 140 … … 177 153 /* redefine policies 178 154 */ 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); 155 int sh_files_redef_user0(char * str); 156 int sh_files_redef_user1(char * str); 157 int sh_files_redef_prelink(char * str); 158 int sh_files_redef_readonly(char * str); 159 int sh_files_redef_loggrow(char * str); 160 int sh_files_redef_logfiles(char * str); 161 int sh_files_redef_attributes(char * str); 162 int sh_files_redef_noignore(char * str); 163 int sh_files_redef_allignore(char * str); 191 164 192 165
Note:
See TracChangeset
for help on using the changeset viewer.