diff --git a/lib/node_modules/@stdlib/math/base/special/xlog1py/README.md b/lib/node_modules/@stdlib/math/base/special/xlog1py/README.md
index 78e4722e3609..af3e7619da3f 100644
--- a/lib/node_modules/@stdlib/math/base/special/xlog1py/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/xlog1py/README.md
@@ -92,6 +92,96 @@ for ( i = 0; i < 100; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/xlog1py.h"
+```
+
+#### stdlib_base_xlog1py( x, y )
+
+Computes `x * ln(y+1)` so that the result is `0` if `x = 0`.
+
+```c
+double v = stdlib_base_xlog1py( 3.0, 2.0 );
+// returns ~3.296
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+- **y**: `[in] double` input value.
+
+```c
+double stdlib_base_xlog1py( const double x, const double y );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/xlog1py.h"
+#include
+#include
+
+int main( void ) {
+ double out;
+ double x;
+ double y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x = ( (double)rand() / (double)RAND_MAX ) * 100.0;
+ y = ( (double)rand() / (double)RAND_MAX ) * 5.0;
+ out = stdlib_base_xlog1py( x, y );
+ printf( "xlog1py(%lf, %lf) = %lf\n", x, y, out );
+ }
+}
+```
+
+
+
+
+
+
+
+
+