diff --git a/lib/node_modules/@stdlib/math/base/special/binomcoef/README.md b/lib/node_modules/@stdlib/math/base/special/binomcoef/README.md
index 05c083e25472..c95d565c0561 100644
--- a/lib/node_modules/@stdlib/math/base/special/binomcoef/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/binomcoef/README.md
@@ -143,6 +143,95 @@ for ( i = 0; i < 100; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/binomcoef.h"
+```
+
+#### stdlib_base_binomcoef( n, k )
+
+Evaluates the [binomial coefficient][binomial-coefficient] of two integers `n` and `k`.
+
+```c
+double v = stdlib_base_binomcoef( 8, 2 );
+// returns 28.0
+```
+
+The function accepts the following arguments:
+
+- **n**: `[in] int64_t` input value.
+- **k**: `[in] int64_t` input value.
+
+```c
+double stdlib_base_binomcoef( const int64_t n, const int64_t k );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/binomcoef.h"
+#include
+#include
+#include
+
+int main( void ) {
+ const int64_t a[] = { 24, 32, 48, 116, 33 };
+ const int64_t b[] = { 12, 6, 15, 52, 22 };
+
+ double out;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ out = stdlib_base_binomcoef( a[ i ], b[ i ] );
+ printf( "binomcoef(%" PRId64 ", %" PRId64 ") = %lf\n", a[ i ], b[ i ], out );
+ }
+}
+```
+
+
+
+
+
+
+
+
+