diff --git a/lib/node_modules/@stdlib/stats/base/dists/lognormal/cdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/lognormal/cdf/README.md
index 0c2f8a4c5cfc..4231858302b5 100644
--- a/lib/node_modules/@stdlib/stats/base/dists/lognormal/cdf/README.md
+++ b/lib/node_modules/@stdlib/stats/base/dists/lognormal/cdf/README.md
@@ -132,6 +132,105 @@ logEachMap( 'x: %0.4f, µ: %0.4f, σ: %0.4f, F(x;µ,σ): %0.4f', x, mu, sigma, c
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/stats/base/dists/lognormal/cdf.h"
+```
+
+#### stdlib_base_dists_lognormal_cdf( x, mu, sigma )
+
+Evaluates the [cumulative distribution function][cdf] of a [lognormal][lognormal-distribution] distribution with location parameter `mu` and scale parameter `sigma`.
+
+```c
+double y = stdlib_base_dists_lognormal_cdf( 2.0, 0.0, 1.0 );
+// returns ~0.756
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+- **mu**: `[in] double` location parameter.
+- **sigma**: `[in] double` scale parameter.
+
+```c
+double stdlib_base_dists_lognormal_cdf( const double x, const double mu, const double sigma );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/stats/base/dists/lognormal/cdf.h"
+#include "stdlib/constants/float64/eps.h"
+#include
+#include
+
+static double random_uniform( const double min, const double max ) {
+ double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
+ return min + ( v*(max-min) );
+}
+
+int main( void ) {
+ double sigma;
+ double mu;
+ double x;
+ double y;
+ int i;
+
+ for ( i = 0; i < 25; i++ ) {
+ x = random_uniform( 0.1, 10.0 );
+ mu = random_uniform( -5.0, 5.0 );
+ sigma = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
+ y = stdlib_base_dists_lognormal_cdf( x, mu, sigma );
+ printf( "x: %lf, μ: %lf, σ: %lf, F(x;μ,σ): %lf\n", x, mu, sigma, y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+