diff --git a/lib/node_modules/@stdlib/math/base/special/ceil2/README.md b/lib/node_modules/@stdlib/math/base/special/ceil2/README.md
index ef5cd06fabd3..8a4ccf519524 100644
--- a/lib/node_modules/@stdlib/math/base/special/ceil2/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/ceil2/README.md
@@ -101,6 +101,91 @@ for ( i = 0; i < 100; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/ceil2.h"
+```
+
+#### stdlib_base_ceil2( x )
+
+Rounds a `numeric` value to the nearest power of two toward positive infinity.
+
+```c
+double y = stdlib_base_ceil2( 3.14 );
+// returns 4.0
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_ceil2( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/ceil2.h"
+#include
+
+int main( void ) {
+ const double x[] = { 3.14, -3.14, 0.5, 0.0 / 0.0 };
+
+ double y;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ y = stdlib_base_ceil2( x[ i ] );
+ printf( "ceil2(%lf) = %lf\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+