library: S1AP encoding/decoding using libfftranscode and ASN.1 from V15.5.0

This allows us to encode/decode 3GPP S1AP messages, as used on the S1
interface control plane between eNodeB and MME.

Change-Id: Ie019bef1f3ef9cc5f6c94a64c7f352c510fb5633
diff --git a/library/s1ap/S1AP_Types.ttcn b/library/s1ap/S1AP_Types.ttcn
new file mode 100644
index 0000000..6730ff3
--- /dev/null
+++ b/library/s1ap/S1AP_Types.ttcn
@@ -0,0 +1,7 @@
+module S1AP_Types {
+
+	import from S1AP_PDU_Descriptions language "ASN.1:1997" all;
+
+	external function enc_S1AP_PDU(in S1AP_PDU pdu) return octetstring;
+	external function dec_S1AP_PDU(in octetstring stream) return S1AP_PDU;
+}