Skip to content

Commit cf3f92e

Browse files
committed
fix: update include paths
1 parent 75d4f83 commit cf3f92e

File tree

701 files changed

+2572
-2572
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

701 files changed

+2572
-2572
lines changed

lib/node_modules/@stdlib/complex/base/assert/is-equal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ out = isEqual( z1, z2 );
129129
Tests whether double-precision complex floating-point numbers are equal.
130130

131131
```c
132-
#include "@stdlib/complex/float64/ctor.h"
132+
#include "stdlib/complex/float64/ctor.h"
133133
#include <stdbool.h>
134134

135135
stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );
@@ -167,7 +167,7 @@ bool stdlib_base_complex128_is_equal( const stdlib_complex128_t z1, const stdlib
167167
168168
```c
169169
#include "stdlib/complex/base/assert/is_equal.h"
170-
#include "@stdlib/complex/float64/ctor.h"
170+
#include "stdlib/complex/float64/ctor.h"
171171
#include <stdbool.h>
172172
#include <stdio.h>
173173

lib/node_modules/@stdlib/complex/base/assert/is-equal/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_equal.h"
20-
#include "@stdlib/complex/float64/ctor.h"
20+
#include "stdlib/complex/float64/ctor.h"
2121
#include <stdbool.h>
2222
#include <stdio.h>
2323

lib/node_modules/@stdlib/complex/base/assert/is-equal/include/stdlib/complex/base/assert/is_equal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_EQUAL_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_EQUAL_H
2121

22-
#include "@stdlib/complex/float64/ctor.h"
22+
#include "stdlib/complex/float64/ctor.h"
2323
#include <stdbool.h>
2424

2525
/*

lib/node_modules/@stdlib/complex/base/assert/is-equal/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "stdlib/complex/base/assert/is_equal.h"
2020
#include "stdlib/complex/reim.h"
21-
#include "@stdlib/complex/float64/ctor.h"
21+
#include "stdlib/complex/float64/ctor.h"
2222
#include <stdbool.h>
2323

2424
/**
@@ -29,7 +29,7 @@
2929
* @return boolean indicating if both complex numbers are equal
3030
*
3131
* @example
32-
* #include "@stdlib/complex/float64/ctor.h"
32+
* #include "stdlib/complex/float64/ctor.h"
3333
* #include <stdbool.h>
3434
*
3535
* stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );

lib/node_modules/@stdlib/complex/base/assert/is-equalf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ out = isEqualf( z1, z2 );
129129
Tests whether single-precision complex floating-point numbers are equal.
130130

131131
```c
132-
#include "@stdlib/complex/float32/ctor.h"
132+
#include "stdlib/complex/float32/ctor.h"
133133
#include <stdbool.h>
134134

135135
stdlib_complex64_t z1 = stdlib_complex64( 5.0, 2.0 );
@@ -167,7 +167,7 @@ bool stdlib_base_complex64_is_equal( const stdlib_complex64_t z1, const stdlib_c
167167
168168
```c
169169
#include "stdlib/complex/base/assert/is_equalf.h"
170-
#include "@stdlib/complex/float32/ctor.h"
170+
#include "stdlib/complex/float32/ctor.h"
171171
#include <stdbool.h>
172172
#include <stdio.h>
173173

lib/node_modules/@stdlib/complex/base/assert/is-equalf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_equalf.h"
20-
#include "@stdlib/complex/float32/ctor.h"
20+
#include "stdlib/complex/float32/ctor.h"
2121
#include <stdbool.h>
2222
#include <stdio.h>
2323

lib/node_modules/@stdlib/complex/base/assert/is-equalf/include/stdlib/complex/base/assert/is_equalf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_EQUALF_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_EQUALF_H
2121

22-
#include "@stdlib/complex/float32/ctor.h"
22+
#include "stdlib/complex/float32/ctor.h"
2323
#include <stdbool.h>
2424

2525
/*

lib/node_modules/@stdlib/complex/base/assert/is-equalf/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "stdlib/complex/base/assert/is_equalf.h"
2020
#include "stdlib/complex/reimf.h"
21-
#include "@stdlib/complex/float32/ctor.h"
21+
#include "stdlib/complex/float32/ctor.h"
2222
#include <stdbool.h>
2323

2424
/**
@@ -29,7 +29,7 @@
2929
* @return boolean indicating if both complex numbers are equal
3030
*
3131
* @example
32-
* #include "@stdlib/complex/float32/ctor.h"
32+
* #include "stdlib/complex/float32/ctor.h"
3333
* #include <stdbool.h>
3434
*
3535
* stdlib_complex64_t z1 = stdlib_complex64( 5.0, 2.0 );

lib/node_modules/@stdlib/complex/base/assert/is-not-equal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ out = isNotEqual( z1, z2 );
129129
Tests whether double-precision complex floating-point numbers are not equal.
130130

131131
```c
132-
#include "@stdlib/complex/float64/ctor.h"
132+
#include "stdlib/complex/float64/ctor.h"
133133
#include <stdbool.h>
134134

135135
stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );
@@ -167,7 +167,7 @@ bool stdlib_base_complex128_is_not_equal( const stdlib_complex128_t z1, const st
167167
168168
```c
169169
#include "stdlib/complex/base/assert/is_not_equal.h"
170-
#include "@stdlib/complex/float64/ctor.h"
170+
#include "stdlib/complex/float64/ctor.h"
171171
#include <stdbool.h>
172172
#include <stdio.h>
173173

lib/node_modules/@stdlib/complex/base/assert/is-not-equal/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_not_equal.h"
20-
#include "@stdlib/complex/float64/ctor.h"
20+
#include "stdlib/complex/float64/ctor.h"
2121
#include <stdbool.h>
2222
#include <stdio.h>
2323

0 commit comments

Comments
 (0)