CSV.swift/Sources/Endian.swift

14 lines
200 B
Swift

//
// Endian.swift
// CSV
//
// Created by Yasuhiro Hatta on 2016/06/21.
// Copyright © 2016 yaslab. All rights reserved.
//
public enum Endian {
case Big
case Little
case Unknown
}