File: main.cpp

package info (click to toggle)
libbgcode 0.0~git20260306.c019e78-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,280 kB
  • sloc: cpp: 3,885; python: 307; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#include <cstdio>
#include <LibBGCode/convert/convert.hpp>

int main()
{
    FILE *dst_file, *src_file;
    bgcode::convert::from_binary_to_ascii(*src_file, *dst_file, true);
    
    return 0;
}