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

+2-2
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+1-1
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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_NOT_EQUAL_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_NOT_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-not-equal/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "stdlib/complex/base/assert/is_not_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 not 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-not-equalf/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ out = isNotEqualf( z1, z2 );
129129
Tests whether single-precision complex floating-point numbers are not 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_not_equal( const stdlib_complex64_t z1, const stdl
167167
168168
```c
169169
#include "stdlib/complex/base/assert/is_not_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-not-equalf/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_not_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-not-equalf/include/stdlib/complex/base/assert/is_not_equalf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_NOT_EQUALF_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_NOT_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-not-equalf/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "stdlib/complex/base/assert/is_not_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 not 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-same-value-zero/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ out = isSameValueZero( z1, z2 );
153153
Tests whether two double-precision complex floating-point numbers are the same value.
154154

155155
```c
156-
#include "@stdlib/complex/float64/ctor.h"
156+
#include "stdlib/complex/float64/ctor.h"
157157
#include <stdbool.h>
158158

159159
stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );
@@ -191,7 +191,7 @@ bool stdlib_base_complex128_is_same_value_zero( const stdlib_complex128_t z1, co
191191
192192
```c
193193
#include "stdlib/complex/base/assert/is_same_value_zero.h"
194-
#include "@stdlib/complex/float64/ctor.h"
194+
#include "stdlib/complex/float64/ctor.h"
195195
#include <stdbool.h>
196196
#include <stdio.h>
197197

lib/node_modules/@stdlib/complex/base/assert/is-same-value-zero/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_same_value_zero.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-same-value-zero/include/stdlib/complex/base/assert/is_same_value_zero.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_ZERO_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_ZERO_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-same-value-zero/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/complex/base/assert/is_same_value_zero.h"
2020
#include "stdlib/number/float64/base/assert/is_same_value_zero.h"
2121
#include "stdlib/complex/reim.h"
22-
#include "@stdlib/complex/float64/ctor.h"
22+
#include "stdlib/complex/float64/ctor.h"
2323
#include <stdbool.h>
2424

2525
/**
@@ -30,7 +30,7 @@
3030
* @return boolean indicating if both complex numbers are the same value
3131
*
3232
* @example
33-
* #include "@stdlib/complex/float64/ctor.h"
33+
* #include "stdlib/complex/float64/ctor.h"
3434
* #include <stdbool.h>
3535
*
3636
* stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );

lib/node_modules/@stdlib/complex/base/assert/is-same-value-zerof/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ out = isSameValueZerof( z1, z2 );
153153
Tests whether two single-precision complex floating-point numbers are the same value.
154154

155155
```c
156-
#include "@stdlib/complex/float32/ctor.h"
156+
#include "stdlib/complex/float32/ctor.h"
157157
#include <stdbool.h>
158158

159159
stdlib_complex64_t z1 = stdlib_complex64( 5.0f, 2.0f );
@@ -191,7 +191,7 @@ bool stdlib_base_complex64_is_same_value_zero( const stdlib_complex64_t z1, cons
191191
192192
```c
193193
#include "stdlib/complex/base/assert/is_same_value_zerof.h"
194-
#include "@stdlib/complex/float32/ctor.h"
194+
#include "stdlib/complex/float32/ctor.h"
195195
#include <stdbool.h>
196196
#include <stdio.h>
197197

lib/node_modules/@stdlib/complex/base/assert/is-same-value-zerof/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_same_value_zerof.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-same-value-zerof/include/stdlib/complex/base/assert/is_same_value_zerof.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_ZEROF_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_ZEROF_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-same-value-zerof/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/complex/base/assert/is_same_value_zerof.h"
2020
#include "stdlib/number/float32/base/assert/is_same_value_zero.h"
2121
#include "stdlib/complex/reimf.h"
22-
#include "@stdlib/complex/float32/ctor.h"
22+
#include "stdlib/complex/float32/ctor.h"
2323
#include <stdbool.h>
2424

2525
/**
@@ -30,7 +30,7 @@
3030
* @return boolean indicating if both complex numbers are the same value
3131
*
3232
* @example
33-
* #include "@stdlib/complex/float32/ctor.h"
33+
* #include "stdlib/complex/float32/ctor.h"
3434
* #include <stdbool.h>
3535
*
3636
* stdlib_complex64_t z1 = stdlib_complex64( 5.0f, 2.0f );

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ out = isSameValue( z1, z2 );
151151
Tests whether two double-precision complex floating-point numbers are the same value.
152152

153153
```c
154-
#include "@stdlib/complex/float64/ctor.h"
154+
#include "stdlib/complex/float64/ctor.h"
155155
#include <stdbool.h>
156156

157157
stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );
@@ -189,7 +189,7 @@ bool stdlib_base_complex128_is_same_value( const stdlib_complex128_t z1, const s
189189
190190
```c
191191
#include "stdlib/complex/base/assert/is_same_value.h"
192-
#include "@stdlib/complex/float64/ctor.h"
192+
#include "stdlib/complex/float64/ctor.h"
193193
#include <stdbool.h>
194194
#include <stdio.h>
195195

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_same_value.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-same-value/include/stdlib/complex/base/assert/is_same_value.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_H
2020
#define STDLIB_COMPLEX_BASE_ASSERT_IS_SAME_VALUE_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-same-value/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/complex/base/assert/is_same_value.h"
2020
#include "stdlib/number/float64/base/assert/is_same_value.h"
2121
#include "stdlib/complex/reim.h"
22-
#include "@stdlib/complex/float64/ctor.h"
22+
#include "stdlib/complex/float64/ctor.h"
2323
#include <stdbool.h>
2424

2525
/**
@@ -30,7 +30,7 @@
3030
* @return boolean indicating if both complex numbers are the same value
3131
*
3232
* @example
33-
* #include "@stdlib/complex/float64/ctor.h"
33+
* #include "stdlib/complex/float64/ctor.h"
3434
* #include <stdbool.h>
3535
*
3636
* stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ out = isSameValuef( z1, z2 );
151151
Tests whether two single-precision complex floating-point numbers are the same value.
152152

153153
```c
154-
#include "@stdlib/complex/float32/ctor.h"
154+
#include "stdlib/complex/float32/ctor.h"
155155
#include <stdbool.h>
156156

157157
stdlib_complex64_t z1 = stdlib_complex64( 5.0f, 2.0f );
@@ -189,7 +189,7 @@ bool stdlib_base_complex64_is_same_value( const stdlib_complex64_t z1, const std
189189
190190
```c
191191
#include "stdlib/complex/base/assert/is_same_valuef.h"
192-
#include "@stdlib/complex/float32/ctor.h"
192+
#include "stdlib/complex/float32/ctor.h"
193193
#include <stdbool.h>
194194
#include <stdio.h>
195195

0 commit comments

Comments
 (0)