2007-07-31 21:36:21 +05:30
|
|
|
/*
|
|
|
|
* @file builtins.h
|
|
|
|
* @brief declaration for our userland helpers to be built into rc
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* Copyright 2007 Gentoo Foundation
|
|
|
|
* Released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
2007-09-29 22:12:08 +05:30
|
|
|
#include "rc.h"
|
|
|
|
|
2007-09-19 21:57:37 +05:30
|
|
|
int checkown (int argc, char **argv);
|
2007-07-31 21:36:21 +05:30
|
|
|
int fstabinfo (int argc, char **argv);
|
|
|
|
int mountinfo (int argc, char **argv);
|
|
|
|
int rc_depend (int argc, char **argv);
|
|
|
|
int rc_status (int argc, char **argv);
|
2007-08-04 20:35:12 +05:30
|
|
|
int rc_update (int argc, char **argv);
|
2007-07-31 21:36:21 +05:30
|
|
|
int runscript (int argc, char **argv);
|
|
|
|
int start_stop_daemon (int argc, char **argv);
|
|
|
|
|
2007-09-29 22:12:08 +05:30
|
|
|
/* Handy function so we can wrap einfo around our deptree */
|
|
|
|
rc_depinfo_t *_rc_deptree_load (void);
|