File: cpp-test.cpp

package info (click to toggle)
libfprint 1%3A1.94.9-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 27,716 kB
  • sloc: ansic: 70,852; python: 2,228; xml: 318; sh: 234; makefile: 16; cpp: 11
file content (15 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
}