Skip to content

Commit 57efa3d

Browse files
chore: rename C files to follow current project conventions
PR-URL: #6410 Reviewed-by: Athan Reines <[email protected]> Co-authored-by: stdlib-bot <[email protected]>
1 parent d6e3fd4 commit 57efa3d

File tree

52 files changed

+1115
-1114
lines changed

Some content is hidden

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

52 files changed

+1115
-1114
lines changed

lib/node_modules/@stdlib/math/base/special/ceil/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{
2929
"task": "build",
3030
"src": [
31-
"./src/ceil.c"
31+
"./src/main.c"
3232
],
3333
"include": [
3434
"./include"
@@ -44,7 +44,7 @@
4444
{
4545
"task": "benchmark",
4646
"src": [
47-
"./src/ceil.c"
47+
"./src/main.c"
4848
],
4949
"include": [
5050
"./include"
@@ -58,7 +58,7 @@
5858
{
5959
"task": "examples",
6060
"src": [
61-
"./src/ceil.c"
61+
"./src/main.c"
6262
],
6363
"include": [
6464
"./include"
Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
{
2-
"options": {
3-
"task": "build"
4-
},
5-
"fields": [
6-
{
7-
"field": "src",
8-
"resolve": true,
9-
"relative": true
10-
},
11-
{
12-
"field": "include",
13-
"resolve": true,
14-
"relative": true
15-
},
16-
{
17-
"field": "libraries",
18-
"resolve": false,
19-
"relative": false
20-
},
21-
{
22-
"field": "libpath",
23-
"resolve": true,
24-
"relative": false
25-
}
26-
],
27-
"confs": [
28-
{
29-
"task": "build",
30-
"src": [
31-
"./src/ceilf.c"
32-
],
33-
"include": [
34-
"./include"
35-
],
36-
"libraries": [
37-
"-lm"
38-
],
39-
"libpath": [],
40-
"dependencies": [
41-
"@stdlib/math/base/napi/unary"
42-
]
43-
},
44-
{
45-
"task": "benchmark",
46-
"src": [
47-
"./src/ceilf.c"
48-
],
49-
"include": [
50-
"./include"
51-
],
52-
"libraries": [
53-
"-lm"
54-
],
55-
"libpath": [],
56-
"dependencies": []
57-
},
58-
{
59-
"task": "examples",
60-
"src": [
61-
"./src/ceilf.c"
62-
],
63-
"include": [
64-
"./include"
65-
],
66-
"libraries": [
67-
"-lm"
68-
],
69-
"libpath": [],
70-
"dependencies": []
71-
}
72-
]
2+
"options": {
3+
"task": "build"
4+
},
5+
"fields": [
6+
{
7+
"field": "src",
8+
"resolve": true,
9+
"relative": true
10+
},
11+
{
12+
"field": "include",
13+
"resolve": true,
14+
"relative": true
15+
},
16+
{
17+
"field": "libraries",
18+
"resolve": false,
19+
"relative": false
20+
},
21+
{
22+
"field": "libpath",
23+
"resolve": true,
24+
"relative": false
25+
}
26+
],
27+
"confs": [
28+
{
29+
"task": "build",
30+
"src": [
31+
"./src/main.c"
32+
],
33+
"include": [
34+
"./include"
35+
],
36+
"libraries": [
37+
"-lm"
38+
],
39+
"libpath": [],
40+
"dependencies": [
41+
"@stdlib/math/base/napi/unary"
42+
]
43+
},
44+
{
45+
"task": "benchmark",
46+
"src": [
47+
"./src/main.c"
48+
],
49+
"include": [
50+
"./include"
51+
],
52+
"libraries": [
53+
"-lm"
54+
],
55+
"libpath": [],
56+
"dependencies": []
57+
},
58+
{
59+
"task": "examples",
60+
"src": [
61+
"./src/main.c"
62+
],
63+
"include": [
64+
"./include"
65+
],
66+
"libraries": [
67+
"-lm"
68+
],
69+
"libpath": [],
70+
"dependencies": []
71+
}
72+
]
7373
}

lib/node_modules/@stdlib/math/base/special/ceiln/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{
2929
"task": "build",
3030
"src": [
31-
"./src/ceiln.c"
31+
"./src/main.c"
3232
],
3333
"include": [
3434
"./include"
@@ -54,7 +54,7 @@
5454
{
5555
"task": "benchmark",
5656
"src": [
57-
"./src/ceiln.c"
57+
"./src/main.c"
5858
],
5959
"include": [
6060
"./include"
@@ -79,7 +79,7 @@
7979
{
8080
"task": "examples",
8181
"src": [
82-
"./src/ceiln.c"
82+
"./src/main.c"
8383
],
8484
"include": [
8585
"./include"

lib/node_modules/@stdlib/math/base/special/clamp/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{
2929
"task": "build",
3030
"src": [
31-
"./src/clamp.c"
31+
"./src/main.c"
3232
],
3333
"include": [
3434
"./include"
@@ -46,7 +46,7 @@
4646
{
4747
"task": "benchmark",
4848
"src": [
49-
"./src/clamp.c"
49+
"./src/main.c"
5050
],
5151
"include": [
5252
"./include"
@@ -63,7 +63,7 @@
6363
{
6464
"task": "examples",
6565
"src": [
66-
"./src/clamp.c"
66+
"./src/main.c"
6767
],
6868
"include": [
6969
"./include"
Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,81 @@
11
{
2-
"options": {
3-
"task": "build"
4-
},
5-
"fields": [
6-
{
7-
"field": "src",
8-
"resolve": true,
9-
"relative": true
10-
},
11-
{
12-
"field": "include",
13-
"resolve": true,
14-
"relative": true
15-
},
16-
{
17-
"field": "libraries",
18-
"resolve": false,
19-
"relative": false
20-
},
21-
{
22-
"field": "libpath",
23-
"resolve": true,
24-
"relative": false
25-
}
26-
],
27-
"confs": [
28-
{
29-
"task": "build",
30-
"src": [
31-
"./src/clampf.c"
32-
],
33-
"include": [
34-
"./include"
35-
],
36-
"libraries": [
37-
"-lm"
38-
],
39-
"libpath": [],
40-
"dependencies": [
41-
"@stdlib/math/base/napi/ternary",
42-
"@stdlib/math/base/assert/is-nanf",
43-
"@stdlib/math/base/assert/is-negative-zerof"
44-
]
45-
},
46-
{
47-
"task": "benchmark",
48-
"src": [
49-
"./src/clampf.c"
50-
],
51-
"include": [
52-
"./include"
53-
],
54-
"libraries": [
55-
"-lm"
56-
],
57-
"libpath": [],
58-
"dependencies": [
59-
"@stdlib/math/base/assert/is-nanf",
60-
"@stdlib/math/base/assert/is-negative-zerof"
61-
]
62-
},
63-
{
64-
"task": "examples",
65-
"src": [
66-
"./src/clampf.c"
67-
],
68-
"include": [
69-
"./include"
70-
],
71-
"libraries": [
72-
"-lm"
73-
],
74-
"libpath": [],
75-
"dependencies": [
76-
"@stdlib/math/base/assert/is-nanf",
77-
"@stdlib/math/base/assert/is-negative-zerof"
78-
]
79-
}
80-
]
2+
"options": {
3+
"task": "build"
4+
},
5+
"fields": [
6+
{
7+
"field": "src",
8+
"resolve": true,
9+
"relative": true
10+
},
11+
{
12+
"field": "include",
13+
"resolve": true,
14+
"relative": true
15+
},
16+
{
17+
"field": "libraries",
18+
"resolve": false,
19+
"relative": false
20+
},
21+
{
22+
"field": "libpath",
23+
"resolve": true,
24+
"relative": false
25+
}
26+
],
27+
"confs": [
28+
{
29+
"task": "build",
30+
"src": [
31+
"./src/main.c"
32+
],
33+
"include": [
34+
"./include"
35+
],
36+
"libraries": [
37+
"-lm"
38+
],
39+
"libpath": [],
40+
"dependencies": [
41+
"@stdlib/math/base/napi/ternary",
42+
"@stdlib/math/base/assert/is-nanf",
43+
"@stdlib/math/base/assert/is-negative-zerof"
44+
]
45+
},
46+
{
47+
"task": "benchmark",
48+
"src": [
49+
"./src/main.c"
50+
],
51+
"include": [
52+
"./include"
53+
],
54+
"libraries": [
55+
"-lm"
56+
],
57+
"libpath": [],
58+
"dependencies": [
59+
"@stdlib/math/base/assert/is-nanf",
60+
"@stdlib/math/base/assert/is-negative-zerof"
61+
]
62+
},
63+
{
64+
"task": "examples",
65+
"src": [
66+
"./src/main.c"
67+
],
68+
"include": [
69+
"./include"
70+
],
71+
"libraries": [
72+
"-lm"
73+
],
74+
"libpath": [],
75+
"dependencies": [
76+
"@stdlib/math/base/assert/is-nanf",
77+
"@stdlib/math/base/assert/is-negative-zerof"
78+
]
79+
}
80+
]
8181
}

0 commit comments

Comments
 (0)