| 4272 | |
| 4273 | |
| 4274 | static int python2Present(void) |
| 4275 | { |
| 4276 | static int lPython2Present = -1 ; |
| 4277 | |
| 4278 | if ( lPython2Present < 0 ) |
| 4279 | { |
| 4280 | lPython2Present = 0 ; |
| 4281 | strcpy(gPython2Name , "python2" ) ; |
| 4282 | if ( detectPresence(gPython2Name) ) lPython2Present = 1; |
| 4283 | if (tinyfd_verbose) printf("lPython2Present %d\n", lPython2Present) ; |
| 4284 | if (tinyfd_verbose) printf("gPython2Name %s\n", gPython2Name) ; |
| 4285 | } |
| 4286 | return lPython2Present ; |
| 4287 | } |
| 4288 | |
| 4289 | |
| 4290 | static int tkinter3Present(void) |
no test coverage detected