[BACK]Return to manpath.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/manpath.h between version 1.2 and 1.7

version 1.2, 2011/11/24 10:43:55 version 1.7, 2014/12/01 04:05:32
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifndef MANPATH_H  
 #define MANPATH_H  
   
 /*  /*
  * Unsorted list of unique, absolute paths to be searched for manual   * Unsorted list of unique, absolute paths to be searched for manual
  * databases.   * databases.
  */   */
 struct  manpaths {  struct  manpaths {
         int       sz;          size_t    sz;
         char    **paths;          char    **paths;
 };  };
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 void     manpath_manconf(struct manpaths *);  void     manpath_manconf(struct manpaths *, const char *);
 void     manpath_parse(struct manpaths *, char *, char *);  void     manpath_parse(struct manpaths *, const char *, char *, char *);
 void     manpath_parseconf(struct manpaths *);  
 void     manpath_parseline(struct manpaths *, char *);  
 void     manpath_free(struct manpaths *);  void     manpath_free(struct manpaths *);
   
 __END_DECLS  __END_DECLS
   
 #endif /*!MANPATH_H*/  

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.7

CVSweb