22 lines
320 B
C
22 lines
320 B
C
/*
|
|
* Released into the public domain
|
|
* by Aki Goto <tyatsumi@gmail.com>
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "padkey.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct PadKey padKey;
|
|
struct PadKey *this = &padKey;
|
|
|
|
PadKey_initialize(this);
|
|
|
|
while (PadKey_handle(this) == 0);
|
|
|
|
PadKey_finish(this);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|