forked from pEp.foundation/pEpEngine
adding license info to each file
parent
bc769d41d5
commit
e4cfb490c6
3
Makefile
3
Makefile
|
@ -1,3 +1,6 @@
|
|||
# this file is under GNU General Public License v3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
include Makefile.conf
|
||||
|
||||
# add it to the environment of all executed programs:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# this file is in the Public Domain
|
||||
|
||||
BUILD_ON=$(shell uname)
|
||||
BUILD_FOR=$(BUILD_ON)
|
||||
OPTIMIZE=-g -Wall -O0 -fPIC
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# this file is under Creative Commons License 3.0 cc-by-sa
|
||||
|
||||
# Building for OS X/macOS
|
||||
|
||||
See also README.txt for general information.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# this file is under Creative Commons License 3.0 cc-by-sa
|
||||
|
||||
p≡p Engine
|
||||
==========
|
||||
|
||||
|
|
2
TODO.txt
2
TODO.txt
|
@ -1,3 +1,5 @@
|
|||
# this file is in the Public Domain
|
||||
|
||||
- add required Debian packages to build pEp (or where to find non-debian-packaged software, like "libetpan/mailmime_encode.h"
|
||||
- add build instructions and required "brew" packages for Mac OS X.
|
||||
- describe, how to configure pEpEngine to use self-compiled libetpan (in $HOME/local/ or the like)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
include ../Makefile.conf
|
||||
|
||||
ifeq ($(BUILD_ON),Linux)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
/* This file is under GNU General Public License 3.0 */
|
||||
/* see LICENSE.txt */
|
||||
|
||||
DEVICEGROUP
|
||||
{ iso(1) org(3) dod(6) internet(1) private(4) enterprise(1) pEp (47878) sync(1) keysync(1) }
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
/* This file is under GNU General Public License 3.0 */
|
||||
/* see LICENSE.txt */
|
||||
|
||||
PEP
|
||||
{ iso(1) org(3) dod(6) internet(1) private(4) enterprise(1) pEp(47878) basic(0) }
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# This file is in the Public Domain
|
||||
# All other files in this directory are under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
========================================================================
|
||||
STATIC LIBRARY : pEpEngineASN1 Project Overview
|
||||
========================================================================
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
/* This file is under GNU General Public License 3.0 */
|
||||
/* see LICENSE.txt */
|
||||
|
||||
SYNC
|
||||
|
||||
DEFINITIONS AUTOMATIC TAGS EXTENSIBILITY IMPLIED ::=
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
set -e
|
||||
|
||||
build_version=1
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Copyright (C) 2015 pEp
|
||||
# Copyleft 2015 pEp foundation
|
||||
#
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
$(warning $(LOCAL_PATH))
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
#------------------------------------------------------------------------------#
|
||||
# Makefile to build libEtpan GPGME, GnuPG and deps for use with pEpEngine
|
||||
# based on pEpJNIAdapter/android/external/Makefile
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
# all files in this directory are under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
#
|
||||
# Invoke with `sh build.sh`
|
||||
#
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
export DEVROOT=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
|
||||
DFT_DIST_DIR=../libcurl-ios-dist
|
||||
DIST_DIR=${DIST_DIR:-$DFT_DIST_DIR}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
# all files in this directory are under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
include ../Makefile.conf
|
||||
|
||||
db: system.db
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
-- This file is under GNU General Public License 3.0
|
||||
-- See LICENSE.txt
|
||||
|
||||
-- DDL
|
||||
|
||||
CREATE TABLE i18n_language (
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#! /usr/bin/env python3
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
|
||||
from argparse import ArgumentParser
|
||||
from fileinput import FileInput, hook_encoded
|
||||
import re, itertools, sys
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#! /usr/bin/env python3
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
|
||||
from argparse import ArgumentParser
|
||||
from fileinput import FileInput, hook_encoded
|
||||
import re, itertools, sys
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
@rem this file is in the Public Domain
|
||||
@echo off
|
||||
|
||||
if exist system.db del /f system.db
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
|
||||
if [ $1/ == / ] ; then
|
||||
lang=en
|
||||
else
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#! /usr/bin/env python3
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
|
||||
from argparse import ArgumentParser
|
||||
from fileinput import FileInput, hook_encoded
|
||||
import re, itertools, sys
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
|
||||
from sqlite3 import connect
|
||||
from os import environ
|
||||
from argparse import ArgumentParser
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# this file is in the Public Domain
|
||||
|
||||
# Typical pure MacPorts environment
|
||||
|
||||
# Restrict to MacPorts
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "asn1_helper.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "message_api.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "message.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "blacklist.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "dynamic_api.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#ifdef USE_GPG
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "email.h"
|
||||
|
||||
PEP_STATUS email_sendto(PEP_SESSION session, const message *msg)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "transport.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "etpan_mime.h"
|
||||
#ifndef mailmime_param_new_with_data
|
||||
#include <libetpan/mailprivacy_tools.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <libetpan/libetpan.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "map_asn1.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <time.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "message_api.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "mime.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "message.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "dynamic_api.h"
|
||||
#include "openpgp_compat.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// openpgp_compat.h
|
||||
//
|
||||
// These functions are the exposure of non-generic PGP-specific functionality (largely related to PGP
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "dynamic_api.h"
|
||||
#include "cryptotech.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#define PEP_ENGINE_VERSION "0.8.0"
|
||||
|
||||
// maximum attachment size to import as key 1MB, maximum of 20 attachments
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "platform.h"
|
||||
#include "pEp_internal.h"
|
||||
#include "pgp_gpg.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <gpgme.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "pgp_netpgp.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <curl/curl.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#define _POSIX_C_SOURCE 200809L
|
||||
|
||||
#ifdef ANDROID
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#ifndef __APPLE__
|
||||
#define _POSIX_C_SOURCE 200809L
|
||||
#endif
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
// Windows platform specifica
|
||||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// Windows platform specification
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#ifndef UNICODE
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
// Windows platform specifica
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by pEpEngine.rc
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
/*
|
||||
** 2001 September 15
|
||||
**
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "dynamic_api.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "dynamic_api.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include <memory.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
/*
|
||||
====================================
|
||||
Engine/adapter/app KeySync interface
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// Actions for DeviceState state machine
|
||||
|
||||
#include <assert.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
// it seems pEp_internal.h needs to be the first pEp include due to the
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "message.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
|
||||
#include "timestamp.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <time.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "trans_auto.h"
|
||||
|
||||
PEP_STATUS auto_sendto(PEP_SESSION session, const message *msg)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "transport.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include "pEp_internal.h"
|
||||
#include "trans_auto.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pEpEngine.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "platform.h"
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
include ../Makefile.conf
|
||||
|
||||
all: .codegen
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// DeviceGroup protocol for p≡p
|
||||
|
||||
// Copyleft (c) 2016, p≡p foundation
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// FSM Y language 1.0
|
||||
|
||||
// Copyleft (c) 2016, p≡p foundation
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// function library
|
||||
|
||||
def "func:distinctName" {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// generate actions skeleton
|
||||
|
||||
// Copyleft (c) 2016, p≡p foundation
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
include yslt.yml2
|
||||
|
||||
tstylesheet {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
// generate state machine code
|
||||
|
||||
// Copyleft (c) 2016, p≡p foundation
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
|
||||
# This file is under GNU General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
include ../Makefile.conf
|
||||
|
||||
export GNUPGHOME=.
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include <iostream>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include <iostream>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "platform.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// This file is under GNU General Public License 3.0
|
||||
// see LICENSE.txt
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <assert.h>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue