This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
using System.IO; | |
using System.Text; | |
using System.Web; | |
namespace HTMLog { | |
public class LogFile : IDisposable { | |
readonly string Prologue = @"<!DOCTYPE html><html><head><title>HTMLog</title> | |
<link rel=""stylesheet"" href=""//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <math.h> // za sqrtf() | |
struct trokut { | |
float a; | |
float b; | |
float c; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <jni.h> | |
#include <ui.h> | |
#pragma comment(lib, "libui.lib") | |
#define DEF_ARGS JNIEnv* Env, jobject This |
OlderNewer