Errno.swift 306 B

12345678910111213141516
  1. //
  2. // Errno.swift
  3. // Swifter
  4. //
  5. // Copyright © 2016 Damian Kołakowski. All rights reserved.
  6. //
  7. import Foundation
  8. public class Errno {
  9. public class func description() -> String {
  10. // https://forums.developer.apple.com/thread/113919
  11. return String(cString: strerror(errno))
  12. }
  13. }