FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Programs/python.c at main · ZeroIntensity/cpython · GitHub
ZeroIntensity
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Programs
/
python.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (15 loc) · 266 Bytes
Breadcrumbs
cpython
/
Programs
/
python.c
Copy path
File metadata and controls
17 lines (15 loc) · 266 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
/* Minimal main program -- everything is loaded from the library */
#include
"Python.h"
#ifdef
MS_WINDOWS
int
wmain
(
int
argc
,
wchar_t
*
*
argv
)
{
return
Py_Main
(
argc
,
argv
);
}
#else
int
main
(
int
argc
,
char
*
*
argv
)
{
return
Py_BytesMain
(
argc
,
argv
);
}
#endif
Back
|
FazBrowse Home
|
New Git URL