Errno.swift 265 B

123456789101112131415
  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. return String(cString: UnsafePointer(strerror(errno)))
  11. }
  12. }