Changeset 415 for trunk/include
- Timestamp:
- Nov 1, 2012, 7:45:54 AM (12 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/samhain.h
r412 r415 125 125 #define UINT32 unsigned short 126 126 #define SINT32 short 127 #else 128 #error "No 32 bit integer type found" 127 129 #endif 128 130 -
trunk/include/sh_extern.h
r294 r415 1 1 #ifndef SH_EXTERN_H 2 2 #define SH_EXTERN_H 3 4 #include <stdarg.h> 3 5 4 6 typedef struct … … 40 42 * executes shell command 41 43 */ 42 int sh_ext_popen_init (sh_tas_t * task, char * command );44 int sh_ext_popen_init (sh_tas_t * task, char * command, char * argv0, ...) SH_GNUC_SENTINEL; 43 45 44 46 /* 45 47 * -- Execute command, return first line of output 46 48 */ 47 int sh_ext_system (char * command );49 int sh_ext_system (char * command, char * argv0, ...) SH_GNUC_SENTINEL; 48 50 49 51 /* -
trunk/include/sh_files.h
r373 r415 22 22 23 23 void sh_audit_mark (const char * file); 24 void sh_audit_commit (); 24 25 void sh_audit_delete_all (); 25 26 char * sh_audit_fetch (char * file, time_t time, char * result, size_t rsize);
Note:
See TracChangeset
for help on using the changeset viewer.