File: TestWindowsFSeek.cpp

package info (click to toggle)
znc 1.10.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 12,164 kB
  • sloc: cpp: 58,072; javascript: 11,859; python: 1,635; perl: 1,229; tcl: 219; sh: 200; ansic: 187; makefile: 82
file content (12 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
// See TestLargeFiles.cmake for the origin of this file

#include <stdio.h>
    
int main()
{
  __int64 off=0;

  _fseeki64(NULL, off, SEEK_SET);
        
  return 0;
}