]> jfr.im git - solanum.git/blobdiff - include/scache.h
Add tests for valid_temp_time
[solanum.git] / include / scache.h
index 9c7fc277331c2dedc5a44e14e9641ce5fbeef989..240c22c8a0c3d8a7b6afd653f1c9dc4be92ecd0c 100644 (file)
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
- *
- *  $Id: scache.h 6 2005-09-10 01:02:21Z nenolod $
  */
 
 #ifndef INCLUDED_scache_h
 #define INCLUDED_scache_h
 
+struct Client;
+struct scache_entry;
+
 extern void clear_scache_hash_table(void);
-extern const char *find_or_add(const char *name);
+extern struct scache_entry *scache_connect(const char *name, const char *info, int hidden);
+extern void scache_split(struct scache_entry *ptr);
+extern const char *scache_get_name(struct scache_entry *ptr);
+extern void scache_send_flattened_links(struct Client *source_p);
+extern void scache_send_missing(struct Client *source_p);
 extern void count_scache(size_t *, size_t *);
 
 #endif