FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
git/alloc.h at master · git/git · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
git
/
git
Public
Notifications
You must be signed in to change notification settings
Fork
28.4k
Star
63.1k
Code
Pull requests
383
Actions
Security and quality
32
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
git
/
alloc.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (16 loc) · 493 Bytes
Breadcrumbs
git
/
alloc.h
Copy path
File metadata and controls
20 lines (16 loc) · 493 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef
ALLOC_H
#define
ALLOC_H
struct
alloc_state
;
struct
tree
;
struct
commit
;
struct
tag
;
struct
repository
;
void
*
alloc_blob_node
(
struct
repository
*
r
);
void
*
alloc_tree_node
(
struct
repository
*
r
);
void
init_commit_node
(
struct
commit
*
c
);
void
*
alloc_commit_node
(
struct
repository
*
r
);
void
*
alloc_tag_node
(
struct
repository
*
r
);
void
*
alloc_object_node
(
struct
repository
*
r
);
struct
alloc_state
*
alloc_state_alloc
(
void
);
void
alloc_state_free_and_null
(
struct
alloc_state
*
*
s_
);
#endif
Back
|
FazBrowse Home
|
New Git URL