Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Programs/python.c
12 views
1
/* Minimal main program -- everything is loaded from the library */
2
3
#include "Python.h"
4
5
#ifdef MS_WINDOWS
6
int
7
wmain(int argc, wchar_t **argv)
8
{
9
return Py_Main(argc, argv);
10
}
11
#else
12
int
13
main(int argc, char **argv)
14
{
15
return Py_BytesMain(argc, argv);
16
}
17
#endif
18
19