58 lines · yaml
1header: spawn.h2standards:3 - posix4types:5 - type_name: posix_spawn_file_actions_t6 - type_name: posix_spawnattr_t7 - type_name: pid_t8 - type_name: mode_t9functions:10 - name: posix_spawn11 standards:12 - posix13 return_type: int14 arguments:15 - type: pid_t *__restrict16 - type: const char *__restrict17 - type: posix_spawn_file_actions_t *18 - type: posix_spawnattr_t *__restrict19 - type: char * const * __restrict20 - type: char * const * __restrict21 - name: posix_spawn_file_actions_addclose22 standards:23 - posix24 return_type: int25 arguments:26 - type: posix_spawn_file_actions_t *27 - type: int28 - name: posix_spawn_file_actions_adddup229 standards:30 - posix31 return_type: int32 arguments:33 - type: posix_spawn_file_actions_t *34 - type: int35 - type: int36 - name: posix_spawn_file_actions_addopen37 standards:38 - posix39 return_type: int40 arguments:41 - type: posix_spawn_file_actions_t *__restrict42 - type: int43 - type: const char *__restrict44 - type: int45 - type: mode_t46 - name: posix_spawn_file_actions_destroy47 standards:48 - posix49 return_type: int50 arguments:51 - type: posix_spawn_file_actions_t *52 - name: posix_spawn_file_actions_init53 standards:54 - posix55 return_type: int56 arguments:57 - type: posix_spawn_file_actions_t *58