mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2025-01-06 23:29:56 +00:00
33 lines
427 B
C
33 lines
427 B
C
|
/*
|
||
|
* ___FILENAME___
|
||
|
* ___PACKAGENAME___
|
||
|
*
|
||
|
* Created by ___FULLUSERNAME___ on ___DATE___.
|
||
|
* Copyright (c) ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
#pragma cda "___PACKAGENAME___" start shutdown
|
||
|
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
char str[256];
|
||
|
|
||
|
void start(void)
|
||
|
{
|
||
|
printf("Hello, world!\n");
|
||
|
printf("\n\n Press ENTER to quit...");
|
||
|
|
||
|
fgets(str, sizeof(str), stdin);
|
||
|
}
|
||
|
|
||
|
|
||
|
void shutdown(void)
|
||
|
{
|
||
|
}
|
||
|
|