sync

Backup service to store encrypted wallet databases (experimental)
Log | Files | Refs | Submodules | README | LICENSE

sync_util.h (1003B)


      1 /*
      2   This file is part of SYNC
      3   Copyright (C) 2014, 2015 GNUnet e.V.
      4 
      5   SYNC is free software; you can redistribute it and/or modify it under the
      6   terms of the GNU General Public License as published by the Free Software
      7   Foundation; either version 3, or (at your option) any later version.
      8 
      9   SYNC is distributed in the hope that it will be useful, but WITHOUT ANY
     10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     11   A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     12 
     13   You should have received a copy of the GNU General Public License along with
     14   SYNC; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15 */
     16 /**
     17  * @file include/sync_util.h
     18  * @brief Interface for common utility functions
     19  * @author Christian Grothoff
     20  */
     21 #ifndef SYNC_UTIL_H
     22 #define SYNC_UTIL_H
     23 
     24 #include <gnunet/gnunet_util_lib.h>
     25 
     26 /**
     27  * Return default project data used by Sync.
     28  */
     29 const struct GNUNET_OS_ProjectData *
     30 SYNC_project_data (void);
     31 
     32 
     33 #endif