File: main.c

package info (click to toggle)
libsvm 3.12-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,692 kB
  • ctags: 1,007
  • sloc: cpp: 3,942; java: 3,593; ansic: 2,094; python: 910; makefile: 155; sh: 37
file content (23 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Initial main.c file generated by Glade. Edit as required.
 * Glade will not overwrite this file.
 */

#include <gtk/gtk.h>
#include "interface.h"
void svm_toy_initialize();

int main (int argc, char *argv[])
{
  GtkWidget *window;

  gtk_set_locale ();
  gtk_init (&argc, &argv);

  window = create_window ();
  gtk_widget_show (window);

  svm_toy_initialize();
  gtk_main ();
  return 0;
}