File: gfile.go.h

package info (click to toggle)
golang-github-gotk3-gotk3 0.6.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,392 kB
  • sloc: ansic: 914; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

#include <gio/gio.h>

static GFileInputStream *toGFileInputStream(void *p) {
  return (G_FILE_INPUT_STREAM(p));
}

static GFileOutputStream *toGFileOutputStream(void *p) {
  return (G_FILE_OUTPUT_STREAM(p));
}