https://github.com/git/git
Revision 8dc1d0bf64ce84030a1a13ea64343f816dba9e27 authored by Junio C Hamano on 18 October 2017, 05:19:00 UTC, committed by Junio C Hamano on 18 October 2017, 05:19:00 UTC
Code cmp.std.c nitpick.

* mh/for-each-string-list-item-empty-fix:
  for_each_string_list_item: avoid undefined behavior for empty list
2 parent s 181f145 + ac7da78
Raw File
Tip revision: 8dc1d0bf64ce84030a1a13ea64343f816dba9e27 authored by Junio C Hamano on 18 October 2017, 05:19:00 UTC
Merge branch 'mh/for-each-string-list-item-empty-fix' into maint
Tip revision: 8dc1d0b
notes-cache.h
#ifndef NOTES_CACHE_H
#define NOTES_CACHE_H

#include "notes.h"

struct notes_cache {
	struct notes_tree tree;
	char *validity;
};

void notes_cache_init(struct notes_cache *c, const char *name,
		     const char *validity);
int notes_cache_write(struct notes_cache *c);

char *notes_cache_get(struct notes_cache *c, struct object_id *oid, size_t
		      *outsize);
int notes_cache_put(struct notes_cache *c, struct object_id *oid,
		    const char *data, size_t size);

#endif /* NOTES_CACHE_H */
back to top