libc.rs 40.6 KB
Newer Older
1 2 3
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
4
/*!
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
* Bindings for libc.
*
* We consider the following specs reasonably normative with respect
* to interoperating with the C standard library (libc/msvcrt):
*
* * ISO 9899:1990 ('C95', 'ANSI C', 'Standard C'), NA1, 1995.
* * ISO 9899:1999 ('C99' or 'C9x').
* * ISO 9945:1988 / IEEE 1003.1-1988 ('POSIX.1').
* * ISO 9945:2001 / IEEE 1003.1-2001 ('POSIX:2001', 'SUSv3').
* * ISO 9945:2008 / IEEE 1003.1-2008 ('POSIX:2008', 'SUSv4').
*
* Despite having several names each, these are *reasonably* coherent
* point-in-time, list-of-definition sorts of specs. You can get each under a
* variety of names but will wind up with the same definition in each case.
*
* Our interface to these libraries is complicated by the non-universality of
* conformance to any of them. About the only thing universally supported is
* the first (C95), beyond that definitions quickly become absent on various
* platforms.
*
* We therefore wind up dividing our module-space up (mostly for the sake of
* sanity while editing, filling-in-details and eliminating duplication) into
* definitions common-to-all (held in modules named c95, c99, posix88, posix01
* and posix08) and definitions that appear only on *some* platforms (named
* 'extra'). This would be things like significant OSX foundation kit, or
* win32 library kernel32.dll, or various fancy glibc, linux or BSD
* extensions.
*
* In addition to the per-platform 'extra' modules, we define a module of
* 'common BSD' libc routines that never quite made it into POSIX but show up
* in multiple derived systems. This is the 4.4BSD r2 / 1995 release, the
* final one from Berkeley after the lawsuits died down and the CSRG
* dissolved.
*/
39

40 41
#[allow(non_camel_case_types)];

42 43 44
// Initial glob-exports mean that all the contents of all the modules
// wind up exported, if you're interested in writing platform-specific code.

45
// FIXME (#2006): change these to glob-exports when sufficiently supported.
46

47 48 49 50 51 52 53 54 55 56 57 58 59
pub use types::common::c95::*;
pub use types::common::c99::*;
pub use types::common::posix88::*;
pub use types::common::posix01::*;
pub use types::common::posix08::*;
pub use types::common::bsd44::*;
pub use types::os::arch::c95::*;
pub use types::os::arch::c99::*;
pub use types::os::arch::posix88::*;
pub use types::os::arch::posix01::*;
pub use types::os::arch::posix08::*;
pub use types::os::arch::bsd44::*;
pub use types::os::arch::extra::*;
60

P
Patrick Walton 已提交
61 62 63 64 65 66 67
use consts::os::c95::*;
use consts::os::c99::*;
use consts::os::posix88::*;
use consts::os::posix01::*;
use consts::os::posix08::*;
use consts::os::bsd44::*;
use consts::os::extra::*;
68

P
Patrick Walton 已提交
69 70 71 72
use funcs::c95::ctype::*;
use funcs::c95::stdio::*;
use funcs::c95::stdlib::*;
use funcs::c95::string::*;
73

P
Patrick Walton 已提交
74 75 76 77 78
use funcs::posix88::stat::*;
use funcs::posix88::stdio::*;
use funcs::posix88::fcntl::*;
use funcs::posix88::dirent::*;
use funcs::posix88::unistd::*;
79

P
Patrick Walton 已提交
80 81
use funcs::posix01::unistd::*;
use funcs::posix08::unistd::*;
82

P
Patrick Walton 已提交
83 84
use funcs::bsd44::*;
use funcs::extra::*;
85

86 87 88 89
// Explicit export lists for the intersection (provided here) mean that
// you can write more-platform-agnostic code if you stick to just these
// symbols.

90 91 92 93 94 95 96 97
pub use size_t;
pub use c_float, c_double, c_void, FILE, fpos_t;
pub use DIR, dirent;
pub use c_char, c_schar, c_uchar;
pub use c_short, c_ushort, c_int, c_uint, c_long, c_ulong;
pub use size_t, ptrdiff_t, clock_t, time_t;
pub use c_longlong, c_ulonglong, intptr_t, uintptr_t;
pub use off_t, dev_t, ino_t, pid_t, mode_t, ssize_t;
98

99 100 101 102 103 104 105
pub use EXIT_FAILURE, EXIT_SUCCESS, RAND_MAX,
EOF, SEEK_SET, SEEK_CUR, SEEK_END, _IOFBF, _IONBF, _IOLBF,
BUFSIZ, FOPEN_MAX, FILENAME_MAX, L_tmpnam, TMP_MAX,
O_RDONLY, O_WRONLY, O_RDWR, O_APPEND, O_CREAT, O_EXCL, O_TRUNC,
S_IFIFO, S_IFCHR, S_IFBLK, S_IFDIR, S_IFREG, S_IFMT, S_IEXEC,
S_IWRITE, S_IREAD, S_IRWXU, S_IXUSR, S_IWUSR, S_IRUSR, F_OK, R_OK,
W_OK, X_OK, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO;
106

107 108
pub use isalnum, isalpha, iscntrl, isdigit, islower, isprint, ispunct,
isspace, isupper, isxdigit, tolower, toupper;
109

110 111 112
pub use fopen, freopen, fflush, fclose, remove, tmpfile, setvbuf, setbuf,
fgetc, fgets, fputc, fputs, puts, ungetc, fread, fwrite, fseek, ftell,
rewind, fgetpos, fsetpos, feof, ferror, perror;
113

114 115
pub use abs, labs, atof, atoi, strtod, strtol, strtoul, calloc, malloc,
realloc, free, abort, exit, system, getenv, rand, srand;
116

117 118 119
pub use strcpy, strncpy, strcat, strncat, strcmp, strncmp, strcoll, strchr,
strrchr, strspn, strcspn, strpbrk, strstr, strlen, strerror, strtok,
strxfrm, memcpy, memmove, memcmp, memchr, memset;
120

121 122 123 124 125
pub use chmod, mkdir;
pub use popen, pclose, fdopen, fileno;
pub use open, creat;
pub use access, chdir, close, dup, dup2, execv, execve, execvp, getcwd,
getpid, isatty, lseek, pipe, read, rmdir, unlink, write;
126 127 128 129 130 131 132 133


mod types {

    // Types tend to vary *per architecture* so we pull their definitions out
    // into this module.

    // Standard types that are opaque or common, so are not per-target.
134 135 136 137 138
    pub mod common {
        pub mod c95 {
            pub enum c_void {}
            pub enum FILE {}
            pub enum fpos_t {}
139
        }
140 141 142 143 144 145 146 147 148
        pub mod c99 {
            pub type int8_t = i8;
            pub type int16_t = i16;
            pub type int32_t = i32;
            pub type int64_t = i64;
            pub type uint8_t = u8;
            pub type uint16_t = u16;
            pub type uint32_t = u32;
            pub type uint64_t = u64;
149
        }
150 151 152
        pub mod posix88 {
            pub enum DIR {}
            pub enum dirent {}
153
        }
154 155 156
        pub mod posix01 {}
        pub mod posix08 {}
        pub mod bsd44 {}
157 158 159 160 161
    }

    // Standard types that are scalar but vary by OS and arch.

    #[cfg(target_os = "linux")]
162
    pub mod os {
163
        #[cfg(target_arch = "x86")]
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i32;
                pub type c_ulong = u32;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u32;
                pub type ptrdiff_t = i32;
                pub type clock_t = i32;
                pub type time_t = i32;
                pub type wchar_t = i32;
182
            }
183 184 185 186 187
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
188
            }
189 190 191 192 193 194 195 196 197 198
            pub mod posix88 {
                pub type off_t = i32;
                pub type dev_t = u64;
                pub type ino_t = u32;
                pub type pid_t = i32;
                pub type uid_t = u32;
                pub type gid_t = u32;
                pub type useconds_t = u32;
                pub type mode_t = u32;
                pub type ssize_t = i32;
199
            }
200 201 202 203
            pub mod posix01 {}
            pub mod posix08 {}
            pub mod bsd44 {}
            pub mod extra {}
204 205 206
        }

        #[cfg(target_arch = "x86_64")]
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i64;
                pub type c_ulong = u64;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u64;
                pub type ptrdiff_t = i64;
                pub type clock_t = i64;
                pub type time_t = i64;
                pub type wchar_t = i32;
            }
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
231
            }
232 233 234 235 236 237 238 239 240 241
            pub mod posix88 {
                pub type off_t = i64;
                pub type dev_t = u64;
                pub type ino_t = u64;
                pub type pid_t = i32;
                pub type uid_t = u32;
                pub type gid_t = u32;
                pub type useconds_t = u32;
                pub type mode_t = u32;
                pub type ssize_t = i64;
242
            }
243
            pub mod posix01 {
244
            }
245 246 247 248 249
            pub mod posix08 {
            }
            pub mod bsd44 {
            }
            pub mod extra {
250 251 252 253 254
            }
        }
    }

    #[cfg(target_os = "freebsd")]
255
    pub mod os {
256
        #[cfg(target_arch = "x86_64")]
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i64;
                pub type c_ulong = u64;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u64;
                pub type ptrdiff_t = i64;
                pub type clock_t = i32;
                pub type time_t = i64;
                pub type wchar_t = i32;
            }
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
281
            }
282 283 284 285 286 287 288 289 290 291
            pub mod posix88 {
                pub type off_t = i64;
                pub type dev_t = u32;
                pub type ino_t = u32;
                pub type pid_t = i32;
                pub type uid_t = u32;
                pub type gid_t = u32;
                pub type useconds_t = u32;
                pub type mode_t = u16;
                pub type ssize_t = i64;
292
            }
293
            pub mod posix01 {
294
            }
295 296 297 298 299
            pub mod posix08 {
            }
            pub mod bsd44 {
            }
            pub mod extra {
300 301 302 303 304
            }
        }
    }

    #[cfg(target_os = "win32")]
305
    pub mod os {
306
        #[cfg(target_arch = "x86")]
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i32;
                pub type c_ulong = u32;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u32;
                pub type ptrdiff_t = i32;
                pub type clock_t = i32;
                pub type time_t = i32;
                pub type wchar_t = u16;
            }
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
331
            }
332 333 334 335 336 337 338 339
            pub mod posix88 {
                pub type off_t = i32;
                pub type dev_t = u32;
                pub type ino_t = i16;
                pub type pid_t = i32;
                pub type useconds_t = u32;
                pub type mode_t = u16;
                pub type ssize_t = i32;
340
            }
341
            pub mod posix01 {
342
            }
343 344 345 346 347 348 349 350 351
            pub mod posix08 {
            }
            pub mod bsd44 {
            }
            pub mod extra {
                pub type BOOL = c_int;
                pub type BYTE = u8;
                pub type CCHAR = c_char;
                pub type CHAR = c_char;
352

353 354
                pub type DWORD = c_ulong;
                pub type DWORDLONG = c_ulonglong;
355

356 357
                pub type HANDLE = LPVOID;
                pub type HMODULE = c_uint;
358

359
                pub type LONG_PTR = c_long;
360

361 362
                pub type LPCWSTR = *WCHAR;
                pub type LPCSTR = *CHAR;
363

364 365
                pub type LPWSTR = *mut WCHAR;
                pub type LPSTR = *mut CHAR;
366 367

                // Not really, but opaque to us.
368
                pub type LPSECURITY_ATTRIBUTES = LPVOID;
369

370 371
                pub type LPVOID = *mut c_void;
                pub type LPWORD = *mut WORD;
372

373 374 375 376
                pub type LRESULT = LONG_PTR;
                pub type PBOOL = *mut BOOL;
                pub type WCHAR = wchar_t;
                pub type WORD = u16;
377 378 379 380 381
            }
        }
    }

    #[cfg(target_os = "macos")]
382
    pub mod os {
383
        #[cfg(target_arch = "x86")]
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i32;
                pub type c_ulong = u32;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u32;
                pub type ptrdiff_t = i32;
                pub type clock_t = u32;
                pub type time_t = i32;
                pub type wchar_t = i32;
            }
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
408
            }
409 410 411 412 413 414 415 416 417 418
            pub mod posix88 {
                pub type off_t = i64;
                pub type dev_t = i32;
                pub type ino_t = u64;
                pub type pid_t = i32;
                pub type uid_t = u32;
                pub type gid_t = u32;
                pub type useconds_t = u32;
                pub type mode_t = u16;
                pub type ssize_t = i32;
419
            }
420
            pub mod posix01 {
421
            }
422 423 424 425 426
            pub mod posix08 {
            }
            pub mod bsd44 {
            }
            pub mod extra {
427 428 429 430
            }
        }

        #[cfg(target_arch = "x86_64")]
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
        pub mod arch {
            pub mod c95 {
                pub type c_char = i8;
                pub type c_schar = i8;
                pub type c_uchar = u8;
                pub type c_short = i16;
                pub type c_ushort = u16;
                pub type c_int = i32;
                pub type c_uint = u32;
                pub type c_long = i64;
                pub type c_ulong = u64;
                pub type c_float = f32;
                pub type c_double = f64;
                pub type size_t = u64;
                pub type ptrdiff_t = i64;
                pub type clock_t = u64;
                pub type time_t = i64;
                pub type wchar_t = i32;
            }
            pub mod c99 {
                pub type c_longlong = i64;
                pub type c_ulonglong = u64;
                pub type intptr_t = int;
                pub type uintptr_t = uint;
455
            }
456 457 458 459 460 461 462 463 464 465
            pub mod posix88 {
                pub type off_t = i64;
                pub type dev_t = i32;
                pub type ino_t = u64;
                pub type pid_t = i32;
                pub type uid_t = u32;
                pub type gid_t = u32;
                pub type useconds_t = u32;
                pub type mode_t = u16;
                pub type ssize_t = i64;
466
            }
467
            pub mod posix01 {
468
            }
469 470 471 472 473
            pub mod posix08 {
            }
            pub mod bsd44 {
            }
            pub mod extra {
474 475 476 477 478
            }
        }
    }
}

479
pub mod consts {
480 481 482 483
    // Consts tend to vary per OS so we pull their definitions out
    // into this module.

    #[cfg(target_os = "win32")]
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
    pub mod os {
        pub mod c95 {
            pub const EXIT_FAILURE : int = 1;
            pub const EXIT_SUCCESS : int = 0;
            pub const RAND_MAX : int = 32767;
            pub const EOF : int = -1;
            pub const SEEK_SET : int = 0;
            pub const SEEK_CUR : int = 1;
            pub const SEEK_END : int = 2;
            pub const _IOFBF : int = 0;
            pub const _IONBF : int = 4;
            pub const _IOLBF : int = 64;
            pub const BUFSIZ : uint = 512_u;
            pub const FOPEN_MAX : uint = 20_u;
            pub const FILENAME_MAX : uint = 260_u;
            pub const L_tmpnam : uint = 16_u;
            pub const TMP_MAX : uint = 32767_u;
501
        }
502
        pub mod c99 {
503
        }
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
        pub mod posix88 {
            pub const O_RDONLY : int = 0;
            pub const O_WRONLY : int = 1;
            pub const O_RDWR : int = 2;
            pub const O_APPEND : int = 8;
            pub const O_CREAT : int = 256;
            pub const O_EXCL : int = 1024;
            pub const O_TRUNC : int = 512;
            pub const S_IFIFO : int = 4096;
            pub const S_IFCHR : int = 8192;
            pub const S_IFBLK : int = 12288;
            pub const S_IFDIR : int = 16384;
            pub const S_IFREG : int = 32768;
            pub const S_IFMT : int = 61440;
            pub const S_IEXEC : int = 64;
            pub const S_IWRITE : int = 128;
            pub const S_IREAD : int = 256;
            pub const S_IRWXU : int = 448;
            pub const S_IXUSR : int = 64;
            pub const S_IWUSR : int = 128;
            pub const S_IRUSR : int = 256;
            pub const F_OK : int = 0;
            pub const R_OK : int = 4;
            pub const W_OK : int = 2;
            pub const X_OK : int = 1;
            pub const STDIN_FILENO : int = 0;
            pub const STDOUT_FILENO : int = 1;
            pub const STDERR_FILENO : int = 2;
        }
        pub mod posix01 {
        }
        pub mod posix08 {
        }
        pub mod bsd44 {
        }
        pub mod extra {
            pub const O_TEXT : int = 16384;
            pub const O_BINARY : int = 32768;
            pub const O_NOINHERIT: int = 128;

            pub const ERROR_SUCCESS : int = 0;
            pub const ERROR_INSUFFICIENT_BUFFER : int = 122;
546 547 548 549 550
        }
    }


    #[cfg(target_os = "linux")]
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
    pub mod os {
        pub mod c95 {
            pub const EXIT_FAILURE : int = 1;
            pub const EXIT_SUCCESS : int = 0;
            pub const RAND_MAX : int = 2147483647;
            pub const EOF : int = -1;
            pub const SEEK_SET : int = 0;
            pub const SEEK_CUR : int = 1;
            pub const SEEK_END : int = 2;
            pub const _IOFBF : int = 0;
            pub const _IONBF : int = 2;
            pub const _IOLBF : int = 1;
            pub const BUFSIZ : uint = 8192_u;
            pub const FOPEN_MAX : uint = 16_u;
            pub const FILENAME_MAX : uint = 4096_u;
            pub const L_tmpnam : uint = 20_u;
            pub const TMP_MAX : uint = 238328_u;
        }
        pub mod c99 {
570
        }
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
        pub mod posix88 {
            pub const O_RDONLY : int = 0;
            pub const O_WRONLY : int = 1;
            pub const O_RDWR : int = 2;
            pub const O_APPEND : int = 1024;
            pub const O_CREAT : int = 64;
            pub const O_EXCL : int = 128;
            pub const O_TRUNC : int = 512;
            pub const S_IFIFO : int = 4096;
            pub const S_IFCHR : int = 8192;
            pub const S_IFBLK : int = 24576;
            pub const S_IFDIR : int = 16384;
            pub const S_IFREG : int = 32768;
            pub const S_IFMT : int = 61440;
            pub const S_IEXEC : int = 64;
            pub const S_IWRITE : int = 128;
            pub const S_IREAD : int = 256;
            pub const S_IRWXU : int = 448;
            pub const S_IXUSR : int = 64;
            pub const S_IWUSR : int = 128;
            pub const S_IRUSR : int = 256;
            pub const F_OK : int = 0;
            pub const R_OK : int = 4;
            pub const W_OK : int = 2;
            pub const X_OK : int = 1;
            pub const STDIN_FILENO : int = 0;
            pub const STDOUT_FILENO : int = 1;
            pub const STDERR_FILENO : int = 2;
            pub const F_LOCK : int = 1;
            pub const F_TEST : int = 3;
            pub const F_TLOCK : int = 2;
            pub const F_ULOCK : int = 0;
603
        }
604 605 606 607 608 609 610 611 612 613
        pub mod posix01 {
        }
        pub mod posix08 {
        }
        pub mod bsd44 {
        }
        pub mod extra {
            pub const O_RSYNC : int = 1052672;
            pub const O_DSYNC : int = 4096;
            pub const O_SYNC : int = 1052672;
614 615 616 617
        }
    }

    #[cfg(target_os = "freebsd")]
618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
    pub mod os {
        pub mod c95 {
            pub const EXIT_FAILURE : int = 1;
            pub const EXIT_SUCCESS : int = 0;
            pub const RAND_MAX : int = 2147483647;
            pub const EOF : int = -1;
            pub const SEEK_SET : int = 0;
            pub const SEEK_CUR : int = 1;
            pub const SEEK_END : int = 2;
            pub const _IOFBF : int = 0;
            pub const _IONBF : int = 2;
            pub const _IOLBF : int = 1;
            pub const BUFSIZ : uint = 1024_u;
            pub const FOPEN_MAX : uint = 20_u;
            pub const FILENAME_MAX : uint = 1024_u;
            pub const L_tmpnam : uint = 1024_u;
            pub const TMP_MAX : uint = 308915776_u;
        }
        pub mod c99 {
        }
        pub mod posix88 {
            pub const O_RDONLY : int = 0;
            pub const O_WRONLY : int = 1;
            pub const O_RDWR : int = 2;
            pub const O_APPEND : int = 8;
            pub const O_CREAT : int = 512;
            pub const O_EXCL : int = 2048;
            pub const O_TRUNC : int = 1024;
            pub const S_IFIFO : int = 4096;
            pub const S_IFCHR : int = 8192;
            pub const S_IFBLK : int = 24576;
            pub const S_IFDIR : int = 16384;
            pub const S_IFREG : int = 32768;
            pub const S_IFMT : int = 61440;
            pub const S_IEXEC : int = 64;
            pub const S_IWRITE : int = 128;
            pub const S_IREAD : int = 256;
            pub const S_IRWXU : int = 448;
            pub const S_IXUSR : int = 64;
            pub const S_IWUSR : int = 128;
            pub const S_IRUSR : int = 256;
            pub const F_OK : int = 0;
            pub const R_OK : int = 4;
            pub const W_OK : int = 2;
            pub const X_OK : int = 1;
            pub const STDIN_FILENO : int = 0;
            pub const STDOUT_FILENO : int = 1;
            pub const STDERR_FILENO : int = 2;
            pub const F_LOCK : int = 1;
            pub const F_TEST : int = 3;
            pub const F_TLOCK : int = 2;
            pub const F_ULOCK : int = 0;
        }
        pub mod posix01 {
        }
        pub mod posix08 {
674
        }
675
        pub mod bsd44 {
676
        }
677 678 679 680 681
        pub mod extra {
            pub const O_SYNC : int = 128;
            pub const CTL_KERN: int = 1;
            pub const KERN_PROC: int = 14;
            pub const KERN_PROC_PATHNAME: int = 12;
682 683 684 685
        }
    }

    #[cfg(target_os = "macos")]
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
    pub mod os {
        pub mod c95 {
            pub const EXIT_FAILURE : int = 1;
            pub const EXIT_SUCCESS : int = 0;
            pub const RAND_MAX : int = 2147483647;
            pub const EOF : int = -1;
            pub const SEEK_SET : int = 0;
            pub const SEEK_CUR : int = 1;
            pub const SEEK_END : int = 2;
            pub const _IOFBF : int = 0;
            pub const _IONBF : int = 2;
            pub const _IOLBF : int = 1;
            pub const BUFSIZ : uint = 1024_u;
            pub const FOPEN_MAX : uint = 20_u;
            pub const FILENAME_MAX : uint = 1024_u;
            pub const L_tmpnam : uint = 1024_u;
            pub const TMP_MAX : uint = 308915776_u;
703
        }
704
        pub mod c99 {
705
        }
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
        pub mod posix88 {
            pub const O_RDONLY : int = 0;
            pub const O_WRONLY : int = 1;
            pub const O_RDWR : int = 2;
            pub const O_APPEND : int = 8;
            pub const O_CREAT : int = 512;
            pub const O_EXCL : int = 2048;
            pub const O_TRUNC : int = 1024;
            pub const S_IFIFO : int = 4096;
            pub const S_IFCHR : int = 8192;
            pub const S_IFBLK : int = 24576;
            pub const S_IFDIR : int = 16384;
            pub const S_IFREG : int = 32768;
            pub const S_IFMT : int = 61440;
            pub const S_IEXEC : int = 64;
            pub const S_IWRITE : int = 128;
            pub const S_IREAD : int = 256;
            pub const S_IRWXU : int = 448;
            pub const S_IXUSR : int = 64;
            pub const S_IWUSR : int = 128;
            pub const S_IRUSR : int = 256;
            pub const F_OK : int = 0;
            pub const R_OK : int = 4;
            pub const W_OK : int = 2;
            pub const X_OK : int = 1;
            pub const STDIN_FILENO : int = 0;
            pub const STDOUT_FILENO : int = 1;
            pub const STDERR_FILENO : int = 2;
            pub const F_LOCK : int = 1;
            pub const F_TEST : int = 3;
            pub const F_TLOCK : int = 2;
            pub const F_ULOCK : int = 0;
        }
        pub mod posix01 {
        }
        pub mod posix08 {
        }
        pub mod bsd44 {
        }
        pub mod extra {
            pub const O_DSYNC : int = 4194304;
            pub const O_SYNC : int = 128;
            pub const F_FULLFSYNC : int = 51;
749 750 751 752 753
        }
    }
}


754
pub mod funcs {
755 756 757
    // Thankfull most of c95 is universally available and does not vary by OS
    // or anything. The same is not true of POSIX.

758
    pub mod c95 {
759 760
        #[nolink]
        #[abi = "cdecl"]
761
        pub extern mod ctype {
762 763 764 765 766 767 768 769 770 771 772
            fn isalnum(c: c_int) -> c_int;
            fn isalpha(c: c_int) -> c_int;
            fn iscntrl(c: c_int) -> c_int;
            fn isdigit(c: c_int) -> c_int;
            fn isgraph(c: c_int) -> c_int;
            fn islower(c: c_int) -> c_int;
            fn isprint(c: c_int) -> c_int;
            fn ispunct(c: c_int) -> c_int;
            fn isspace(c: c_int) -> c_int;
            fn isupper(c: c_int) -> c_int;
            fn isxdigit(c: c_int) -> c_int;
773 774
            fn tolower(c: c_char) -> c_char;
            fn toupper(c: c_char) -> c_char;
775 776 777 778
        }

        #[nolink]
        #[abi = "cdecl"]
779
        pub extern mod stdio {
780 781 782 783 784 785 786 787 788 789 790 791 792
            fn fopen(filename: *c_char, mode: *c_char) -> *FILE;
            fn freopen(filename: *c_char, mode: *c_char,
                       file: *FILE) -> *FILE;
            fn fflush(file: *FILE) -> c_int;
            fn fclose(file: *FILE) -> c_int;
            fn remove(filename: *c_char) -> c_int;
            fn rename(oldname: *c_char, newname: *c_char) -> c_int;
            fn tmpfile() -> *FILE;
            fn setvbuf(stream: *FILE, buffer: *c_char,
                       mode: c_int, size: size_t) -> c_int;
            fn setbuf(stream: *FILE, buf: *c_char);
            // Omitted: printf and scanf variants.
            fn fgetc(stream: *FILE) -> c_int;
G
Graydon Hoare 已提交
793
            fn fgets(buf: *mut c_char, n: c_int,
794
                     stream: *FILE) -> *c_char;
795 796 797 798 799 800 801 802 803 804
            fn fputc(c: c_int, stream: *FILE) -> c_int;
            fn fputs(s: *c_char, stream: *FILE) -> *c_char;
            // Omitted: getc, getchar (might be macros).

            // Omitted: gets, so ridiculously unsafe that it should not
            // survive.

            // Omitted: putc, putchar (might be macros).
            fn puts(s: *c_char) -> c_int;
            fn ungetc(c: c_int, stream: *FILE) -> c_int;
G
Graydon Hoare 已提交
805
            fn fread(ptr: *mut c_void, size: size_t,
806 807 808
                     nobj: size_t, stream: *FILE) -> size_t;
            fn fwrite(ptr: *c_void, size: size_t,
                      nobj: size_t, stream: *FILE) -> size_t;
809 810
            fn fseek(stream: *FILE, offset: c_long,
                     whence: c_int) -> c_int;
811 812 813 814 815 816 817 818 819 820 821 822
            fn ftell(stream: *FILE) -> c_long;
            fn rewind(stream: *FILE);
            fn fgetpos(stream: *FILE, ptr: *fpos_t) -> c_int;
            fn fsetpos(stream: *FILE, ptr: *fpos_t) -> c_int;
            fn feof(stream: *FILE) -> c_int;
            fn ferror(stream: *FILE) -> c_int;
            fn perror(s: *c_char);
        }


        #[nolink]
        #[abi = "cdecl"]
823
        pub extern mod stdlib {
824 825
            fn abs(i: c_int) -> c_int;
            fn labs(i: c_long) -> c_long;
826
            // Omitted: div, ldiv (return pub type incomplete).
827 828 829 830
            fn atof(s: *c_char) -> c_double;
            fn atoi(s: *c_char) -> c_int;
            fn strtod(s: *c_char, endp: **c_char) -> c_double;
            fn strtol(s: *c_char, endp: **c_char, base: c_int) -> c_long;
831 832
            fn strtoul(s: *c_char, endp: **c_char,
                       base: c_int) -> c_ulong;
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
            fn calloc(nobj: size_t, size: size_t) -> *c_void;
            fn malloc(size: size_t) -> *c_void;
            fn realloc(p: *c_void, size: size_t) -> *c_void;
            fn free(p: *c_void);
            fn abort() -> !;
            fn exit(status: c_int) -> !;
            // Omitted: atexit.
            fn system(s: *c_char) -> c_int;
            fn getenv(s: *c_char) -> *c_char;
            // Omitted: bsearch, qsort
            fn rand() -> c_int;
            fn srand(seed: c_uint);
        }

        #[nolink]
        #[abi = "cdecl"]
849
        pub extern mod string {
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
            fn strcpy(dst: *c_char, src: *c_char) -> *c_char;
            fn strncpy(dst: *c_char, src: *c_char, n: size_t) -> *c_char;
            fn strcat(s: *c_char, ct: *c_char) -> *c_char;
            fn strncat(s: *c_char, ct: *c_char, n: size_t) -> *c_char;
            fn strcmp(cs: *c_char, ct: *c_char) -> c_int;
            fn strncmp(cs: *c_char, ct: *c_char, n: size_t) -> c_int;
            fn strcoll(cs: *c_char, ct: *c_char) -> c_int;
            fn strchr(cs: *c_char, c: c_int) -> *c_char;
            fn strrchr(cs: *c_char, c: c_int) -> *c_char;
            fn strspn(cs: *c_char, ct: *c_char) -> size_t;
            fn strcspn(cs: *c_char, ct: *c_char) -> size_t;
            fn strpbrk(cs: *c_char, ct: *c_char) -> *c_char;
            fn strstr(cs: *c_char, ct: *c_char) -> *c_char;
            fn strlen(cs: *c_char) -> size_t;
            fn strerror(n: c_int) -> *c_char;
            fn strtok(s: *c_char, t: *c_char) -> *c_char;
            fn strxfrm(s: *c_char, ct: *c_char, n: size_t) -> size_t;
            fn memcpy(s: *c_void, ct: *c_void, n: size_t) -> *c_void;
            fn memmove(s: *c_void, ct: *c_void, n: size_t) -> *c_void;
            fn memcmp(cx: *c_void, ct: *c_void, n: size_t) -> c_int;
            fn memchr(cx: *c_void, c: c_int, n: size_t) -> *c_void;
            fn memset(s: *c_void, c: c_int, n: size_t) -> *c_void;
        }
    }

    // Microsoft helpfully underscore-qualifies all of its POSIX-like symbols
    // to make sure you don't use them accidentally. It also randomly deviates
    // from the exact signatures you might otherwise expect, and omits much,
    // so be careful when trying to write portable code; it won't always work
    // with the same POSIX functions and types as other platforms.

    #[cfg(target_os = "win32")]
882
    pub mod posix88 {
883 884
        #[nolink]
        #[abi = "cdecl"]
885
        pub extern mod stat {
886 887 888 889 890 891 892 893 894
            #[link_name = "_chmod"]
            fn chmod(path: *c_char, mode: c_int) -> c_int;

            #[link_name = "_mkdir"]
            fn mkdir(path: *c_char) -> c_int;
        }

        #[nolink]
        #[abi = "cdecl"]
895
        pub extern mod stdio {
896 897 898 899 900
            #[link_name = "_popen"]
            fn popen(command: *c_char, mode: *c_char) -> *FILE;

            #[link_name = "_pclose"]
            fn pclose(stream: *FILE) -> c_int;
901 902 903

            #[link_name = "_fdopen"]
            fn fdopen(fd: c_int, mode: *c_char) -> *FILE;
904 905 906

            #[link_name = "_fileno"]
            fn fileno(stream: *FILE) -> c_int;
907 908 909 910
        }

        #[nolink]
        #[abi = "cdecl"]
911
        pub extern mod fcntl {
912
            #[link_name = "_open"]
913
            fn open(path: *c_char, oflag: c_int, mode: c_int) -> c_int;
914 915 916 917 918 919 920

            #[link_name = "_creat"]
            fn creat(path: *c_char, mode: c_int) -> c_int;
        }

        #[nolink]
        #[abi = "cdecl"]
921
        pub extern mod dirent {
922 923 924 925 926
            // Not supplied at all.
        }

        #[nolink]
        #[abi = "cdecl"]
927
        pub extern mod unistd {
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
            #[link_name = "_access"]
            fn access(path: *c_char, amode: c_int) -> c_int;

            #[link_name = "_chdir"]
            fn chdir(dir: *c_char) -> c_int;

            #[link_name = "_close"]
            fn close(fd: c_int) -> c_int;

            #[link_name = "_dup"]
            fn dup(fd: c_int) -> c_int;

            #[link_name = "_dup2"]
            fn dup2(src: c_int, dst: c_int) -> c_int;

            #[link_name = "_execv"]
            fn execv(prog: *c_char, argv: **c_char) -> intptr_t;

            #[link_name = "_execve"]
947 948
            fn execve(prog: *c_char, argv: **c_char,
                      envp: **c_char) -> c_int;
949 950 951 952 953

            #[link_name = "_execvp"]
            fn execvp(c: *c_char, argv: **c_char) -> c_int;

            #[link_name = "_execvpe"]
954 955
            fn execvpe(c: *c_char, argv: **c_char,
                       envp: **c_char) -> c_int;
956 957 958 959 960 961 962 963 964 965 966 967 968 969

            #[link_name = "_getcwd"]
            fn getcwd(buf: *c_char, size: size_t) -> *c_char;

            #[link_name = "_getpid"]
            fn getpid() -> c_int;

            #[link_name = "_isatty"]
            fn isatty(fd: c_int) -> c_int;

            #[link_name = "_lseek"]
            fn lseek(fd: c_int, offset: c_long, origin: c_int) -> c_long;

            #[link_name = "_pipe"]
G
Graydon Hoare 已提交
970
            fn pipe(fds: *mut c_int, psize: c_uint,
971
                    textmode: c_int) -> c_int;
972 973

            #[link_name = "_read"]
G
Graydon Hoare 已提交
974
            fn read(fd: c_int, buf: *mut c_void, count: c_uint) -> c_int;
975 976 977 978 979 980 981 982

            #[link_name = "_rmdir"]
            fn rmdir(path: *c_char) -> c_int;

            #[link_name = "_unlink"]
            fn unlink(c: *c_char) -> c_int;

            #[link_name = "_write"]
983
            fn write(fd: c_int, buf: *c_void, count: c_uint) -> c_int;
984 985 986 987 988 989 990 991

        }
    }


    #[cfg(target_os = "linux")]
    #[cfg(target_os = "macos")]
    #[cfg(target_os = "freebsd")]
992
    pub mod posix88 {
993 994
        #[nolink]
        #[abi = "cdecl"]
995
        pub extern mod stat {
996 997 998 999 1000 1001 1002 1003
            fn chmod(path: *c_char, mode: mode_t) -> c_int;
            fn fchmod(fd: c_int, mode: mode_t) -> c_int;
            fn mkdir(path: *c_char, mode: mode_t) -> c_int;
            fn mkfifo(ath: *c_char, mode: mode_t) -> c_int;
        }

        #[nolink]
        #[abi = "cdecl"]
1004
        pub extern mod stdio {
1005 1006
            fn popen(command: *c_char, mode: *c_char) -> *FILE;
            fn pclose(stream: *FILE) -> c_int;
1007
            fn fdopen(fd: c_int, mode: *c_char) -> *FILE;
1008
            fn fileno(stream: *FILE) -> c_int;
1009 1010 1011 1012
        }

        #[nolink]
        #[abi = "cdecl"]
1013
        pub extern mod fcntl {
1014
            fn open(path: *c_char, oflag: c_int, mode: c_int) -> c_int;
1015 1016 1017 1018 1019 1020
            fn creat(path: *c_char, mode: mode_t) -> c_int;
            fn fcntl(fd: c_int, cmd: c_int) -> c_int;
        }

        #[nolink]
        #[abi = "cdecl"]
1021
        pub extern mod dirent {
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
            fn opendir(dirname: *c_char) -> *DIR;
            fn closedir(dirp: *DIR) -> c_int;
            fn readdir(dirp: *DIR) -> *dirent;
            fn rewinddir(dirp: *DIR);
            fn seekdir(dirp: *DIR, loc: c_long);
            fn telldir(dirp: *DIR) -> c_long;
        }

        #[nolink]
        #[abi = "cdecl"]
1032
        pub extern mod unistd {
1033 1034 1035 1036 1037 1038 1039 1040
            fn access(path: *c_char, amode: c_int) -> c_int;
            fn alarm(seconds: c_uint) -> c_uint;
            fn chdir(dir: *c_char) -> c_int;
            fn chown(path: *c_char, uid: uid_t, gid: gid_t) -> c_int;
            fn close(fd: c_int) -> c_int;
            fn dup(fd: c_int) -> c_int;
            fn dup2(src: c_int, dst: c_int) -> c_int;
            fn execv(prog: *c_char, argv: **c_char) -> c_int;
1041 1042
            fn execve(prog: *c_char, argv: **c_char,
                      envp: **c_char) -> c_int;
1043 1044 1045 1046 1047 1048 1049
            fn execvp(c: *c_char, argv: **c_char) -> c_int;
            fn fork() -> pid_t;
            fn fpathconf(filedes: c_int, name: c_int) -> c_long;
            fn getcwd(buf: *c_char, size: size_t) -> *c_char;
            fn getegid() -> gid_t;
            fn geteuid() -> uid_t;
            fn getgid() -> gid_t ;
G
Graydon Hoare 已提交
1050
            fn getgroups(ngroups_max: c_int, groups: *mut gid_t) -> c_int;
1051
            fn getlogin() -> *c_char;
1052 1053
            fn getopt(argc: c_int, argv: **c_char,
                      optstr: *c_char) -> c_int;
1054 1055 1056 1057 1058
            fn getpgrp() -> pid_t;
            fn getpid() -> pid_t;
            fn getppid() -> pid_t;
            fn getuid() -> uid_t;
            fn isatty(fd: c_int) -> c_int;
1059
            fn link(src: *c_char, dst: *c_char) -> c_int;
1060 1061 1062
            fn lseek(fd: c_int, offset: off_t, whence: c_int) -> off_t;
            fn pathconf(path: *c_char, name: c_int) -> c_long;
            fn pause() -> c_int;
G
Graydon Hoare 已提交
1063 1064
            fn pipe(fds: *mut c_int) -> c_int;
            fn read(fd: c_int, buf: *mut c_void,
1065
                    count: size_t) -> ssize_t;
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
            fn rmdir(path: *c_char) -> c_int;
            fn setgid(gid: gid_t) -> c_int;
            fn setpgid(pid: pid_t, pgid: pid_t) -> c_int;
            fn setsid() -> pid_t;
            fn setuid(uid: uid_t) -> c_int;
            fn sleep(secs: c_uint) -> c_uint;
            fn sysconf(name: c_int) -> c_long;
            fn tcgetpgrp(fd: c_int) -> pid_t;
            fn ttyname(fd: c_int) -> *c_char;
            fn unlink(c: *c_char) -> c_int;
            fn write(fd: c_int, buf: *c_void, count: size_t) -> ssize_t;
        }
    }
1079 1080 1081 1082

    #[cfg(target_os = "linux")]
    #[cfg(target_os = "macos")]
    #[cfg(target_os = "freebsd")]
1083
    pub mod posix01 {
1084 1085
        #[nolink]
        #[abi = "cdecl"]
1086
        pub extern mod unistd {
G
Graydon Hoare 已提交
1087
            fn readlink(path: *c_char, buf: *mut c_char,
1088 1089
                        bufsz: size_t) -> ssize_t;

1090 1091 1092 1093 1094
            fn fsync(fd: c_int) -> c_int;

            #[cfg(target_os = "linux")]
            fn fdatasync(fd: c_int) -> c_int;

1095 1096 1097 1098 1099
            fn setenv(name: *c_char, val: *c_char,
                      overwrite: c_int) -> c_int;
            fn unsetenv(name: *c_char) -> c_int;
            fn putenv(string: *c_char) -> c_int;
        }
1100 1101 1102

        #[nolink]
        #[abi = "cdecl"]
1103
        pub extern mod wait {
G
Graydon Hoare 已提交
1104
            fn waitpid(pid: pid_t, status: *mut c_int,
1105 1106
                       options: c_int) -> pid_t;
        }
1107 1108 1109
    }

    #[cfg(target_os = "win32")]
1110
    pub mod posix01 {
1111
        #[nolink]
1112 1113
        pub extern mod unistd {
        }
1114 1115 1116 1117 1118 1119 1120
    }


    #[cfg(target_os = "win32")]
    #[cfg(target_os = "linux")]
    #[cfg(target_os = "macos")]
    #[cfg(target_os = "freebsd")]
1121
    pub mod posix08 {
1122
        #[nolink]
1123 1124
        pub extern mod unistd {
        }
1125 1126 1127 1128 1129 1130 1131
    }


    #[cfg(target_os = "macos")]
    #[cfg(target_os = "freebsd")]
    #[nolink]
    #[abi = "cdecl"]
1132
    pub extern mod bsd44 {
1133
        fn sysctl(name: *c_int, namelen: c_uint,
G
Graydon Hoare 已提交
1134
                  oldp: *mut c_void, oldlenp: *mut size_t,
1135 1136 1137
                  newp: *c_void, newlen: size_t) -> c_int;

        fn sysctlbyname(name: *c_char,
G
Graydon Hoare 已提交
1138
                        oldp: *mut c_void, oldlenp: *mut size_t,
1139 1140
                        newp: *c_void, newlen: size_t) -> c_int;

G
Graydon Hoare 已提交
1141 1142
        fn sysctlnametomib(name: *c_char, mibp: *mut c_int,
                           sizep: *mut size_t) -> c_int;
1143 1144 1145 1146 1147
    }


    #[cfg(target_os = "linux")]
    #[cfg(target_os = "win32")]
1148
    pub mod bsd44 {
1149 1150 1151 1152 1153 1154
    }


    #[cfg(target_os = "macos")]
    #[nolink]
    #[abi = "cdecl"]
1155
    pub extern mod extra {
G
Graydon Hoare 已提交
1156 1157
        fn _NSGetExecutablePath(buf: *mut c_char,
                                bufsize: *mut u32) -> c_int;
1158 1159 1160
    }

    #[cfg(target_os = "freebsd")]
1161 1162
    pub mod extra {
    }
1163 1164

    #[cfg(target_os = "linux")]
1165 1166
    pub mod extra {
    }
1167 1168 1169


    #[cfg(target_os = "win32")]
1170
    pub mod extra {
1171
        use types::os::arch::extra::*;
1172 1173
        pub use kernel32::*;
        pub use msvcrt::*;
1174 1175

        #[abi = "stdcall"]
1176
        pub extern mod kernel32 {
1177 1178
            fn GetEnvironmentVariableW(n: LPCWSTR,
                                       v: LPWSTR,
1179
                                       nsize: DWORD) -> DWORD;
1180 1181
            fn SetEnvironmentVariableW(n: LPCWSTR, v: LPCWSTR) -> BOOL;

1182 1183
            fn GetModuleFileNameW(hModule: HMODULE,
                                  lpFilename: LPWSTR,
1184
                                  nSize: DWORD) -> DWORD;
1185
            fn CreateDirectoryW(lpPathName: LPCWSTR,
1186 1187
                                lpSecurityAttributes:
                                LPSECURITY_ATTRIBUTES) -> BOOL;
1188 1189 1190
            fn CopyFileW(lpExistingFileName: LPCWSTR,
                         lpNewFileName: LPCWSTR,
                         bFailIfExists: BOOL) -> BOOL;
1191 1192 1193 1194 1195
            fn DeleteFileW(lpPathName: LPCWSTR) -> BOOL;
            fn RemoveDirectoryW(lpPathName: LPCWSTR) -> BOOL;
            fn SetCurrentDirectoryW(lpPathName: LPCWSTR) -> BOOL;

            fn GetLastError() -> DWORD;
1196
        }
1197 1198 1199

        #[abi = "cdecl"]
        #[nolink]
1200
        pub extern mod msvcrt {
1201 1202 1203
            #[link_name = "_commit"]
            fn commit(fd: c_int) -> c_int;
        }
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
    }
}


// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: