CSV.swift/Sources/Endian.swift

16 lines
222 B
Swift

//
// Endian.swift
// CSV
//
// Created by Yasuhiro Hatta on 2016/06/21.
// Copyright © 2016 yaslab. All rights reserved.
//
import Foundation
public enum Endian {
case big
case little
case unknown
}