Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Asib27
/
github_repo_scraped
like
0
License:
apache-2.0
Dataset card
Files
Files and versions
Community
e19f295
github_repo_scraped
/
repos
/
eliben-pycparser-129d32e
/
utils
/
internal
/
constptr.c
Asib27
try 1
065fee7
verified
4 months ago
raw
Copy download link
history
blame
121 Bytes
void
foo
(
char
*
const
* arg)
{
arg +=
1
;
(*arg) +=
1
;
}
void
foo2
(
char
**
const
arg)
{
arg +=
1
;
(*arg) +=
1
;
}