Permalink
Cannot retrieve contributors at this time
Switch branches/tags
v0.14.2
v0.14.2rc2
v0.14.2rc1
v0.14.1
v0.14.1rc2
v0.14.1rc1
v0.14.0
v0.14.0rc3
v0.14.0rc2
v0.14.0rc1
v0.13.2
v0.13.2rc1
v0.13.1
v0.13.1rc3
v0.13.1rc2
v0.13.1rc1
v0.13.0
v0.13.0rc3
v0.13.0rc2
v0.13.0rc1
v0.12.1
v0.12.1rc2
v0.12.1rc1
v0.12.0
v0.12.0rc5
v0.12.0rc4
v0.12.0rc3
v0.12.0rc2
v0.12.0rc1
v0.11.3
v0.11.2
v0.11.2rc1
v0.11.1
v0.11.1rc2
v0.11.1rc1
v0.11.0
v0.11.0rc3
v0.11.0rc2
v0.11.0rc1
v0.10.5
v0.10.4
v0.10.4rc1
v0.10.3
v0.10.3rc2
v0.10.3rc1
v0.10.2
v0.10.2rc1
v0.10.1
v0.10.1rc3
v0.10.1rc2
v0.10.1rc1
v0.10.0
v0.10.0rc4
v0.10.0rc3
v0.10.0rc2
v0.10.0rc1
v0.9.5
v0.9.5rc2
v0.9.5rc1
v0.9.4
v0.9.3
v0.9.3rc2
v0.9.3rc1
v0.9.2.1
v0.9.2
v0.9.2rc2
v0.9.2rc1
v0.9.1
v0.9.0
v0.9.0rc3
v0.9.0rc2
v0.9.0rc1
v0.8.6
v0.8.6rc1
v0.8.5
v0.8.4
v0.8.4rc2
v0.8.3
v0.8.2
v0.8.2rc3
v0.8.2rc2
v0.8.2rc1
v0.8.1
v0.8.0
v0.8.0rc1
v0.7.2
v0.7.2rc2
v0.7.1
v0.7.1rc1
v0.7.0
v0.7.0rc3
v0.7.0rc2
v0.7.0rc1
v0.6.3
v0.6.3rc1
v0.6.2.2
v0.6.2.1
v0.6.2
v0.6.1
v0.6.1rc2
Nothing to show
Fetching contributors…
| // Copyright (c) 2011 The LevelDB Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. See the AUTHORS file for names of contributors. | |
| #ifndef STORAGE_LEVELDB_PORT_PORT_H_ | |
| #define STORAGE_LEVELDB_PORT_PORT_H_ | |
| #include <string.h> | |
| // Include the appropriate platform specific file below. If you are | |
| // porting to a new platform, see "port_example.h" for documentation | |
| // of what the new port_<platform>.h file must provide. | |
| #if defined(LEVELDB_PLATFORM_POSIX) | |
| # include "port/port_posix.h" | |
| #elif defined(LEVELDB_PLATFORM_CHROMIUM) | |
| # include "port/port_chromium.h" | |
| #elif defined(LEVELDB_PLATFORM_WINDOWS) | |
| # include "port/port_win.h" | |
| #endif | |
| #endif // STORAGE_LEVELDB_PORT_PORT_H_ |