mirror of
https://github.com/morgan9e/libfprint-fpc1020
synced 2026-04-14 08:24:21 +09:00
16 lines
211 B
C++
16 lines
211 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include <libfprint/fprint.h>
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
FpContext *ctx;
|
|
|
|
ctx = fp_context_new ();
|
|
g_object_unref (ctx);
|
|
|
|
return 0;
|
|
}
|