about summary refs log blame commit diff
path: root/src/libmain/shared.hh
blob: 16162604a914f27ffc1a80c94eaa74a27795afad (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                  
                   

 





                                                                   
                            
 


                                                       




                             



                                                      
 


                        
#ifndef __SHARED_H
#define __SHARED_H

#include "types.hh"


/* These are not implemented here, but must be implemented by a
   program linking against libmain. */

/* Main program.  Called by main() after the ATerm library has been
   initialised and some default arguments have been processed (and
   removed from `args').  main() will catch all exceptions. */
void run(nix::Strings args);

/* Should print a help message to stdout and return. */
void printHelp();

extern std::string programId;


namespace nix {

/* Ugh.  No better place to put this. */
Path makeRootName(const Path & gcRoot, int & counter);
void printGCWarning();

}


#endif /* !__SHARED_H */