blob: 39f2d7e07187b9bee513b54adbe5d0ad4101ee0a [file] [log] [blame]
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion Represents a native signed 8 bit integer in C.
///
/// @description Checks that this type represents a native signed 8 bit integer
/// in C.
/// @author sgrekhov@unipro.ru
import "dart:ffi";
import "package:ffi/ffi.dart";
import "../../../Utils/expect.dart";
void main() {
Pointer<Int8> p1 = calloc<Int8>();
Pointer<Int16> p2 = new Pointer<Int16>.fromAddress(p1.address);
try {
p2.value = 42;
Expect.equals(42, p1.value);
p2.value = 127;
Expect.equals(127, p1.value);
p2.value = 128;
Expect.equals(-128, p1.value);
p2.value = -127;
Expect.equals(-127, p1.value);
p2.value = -128;
Expect.equals(-128, p1.value);
p2.value = -129;
Expect.equals(127, p1.value);
} finally {
calloc.free(p1);
}
}