stdc top-level constant

Stdc const stdc

The global stdc instance.

Use this object to access all imported standard library functions seamlessly, mimicking the standard C experience.

Example:

import 'package:stdc/math.dart';

void main() {
  double result = stdc.sin(1.0);
}

Implementation

const stdc = Stdc();