diff --git a/lib/node_modules/@stdlib/math/base/special/floor10/README.md b/lib/node_modules/@stdlib/math/base/special/floor10/README.md
index 7ca0565a31dd..50e7a48f2fa1 100644
--- a/lib/node_modules/@stdlib/math/base/special/floor10/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/floor10/README.md
@@ -116,6 +116,91 @@ for ( i = 0; i < 100; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/floor10.h"
+```
+
+#### stdlib_base_floor10( x )
+
+Rounds a `numeric` value to the nearest power of `10` toward negative infinity.
+
+```c
+double y = stdlib_base_floor10( -4.2 );
+// returns -10.0
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_floor10( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/floor10.h"
+#include
+
+int main( void ) {
+ const double x[] = { 3.14, -3.14, 0.0, 9.0 / 0.0 };
+
+ double y;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ y = stdlib_base_floor10( x[ i ] );
+ printf( "floor10(%lf) = %lf\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+