We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b1d34 commit b4fa231Copy full SHA for b4fa231
lib/node_modules/@stdlib/ndarray/base/bytes-per-element/src/main.c
@@ -16,9 +16,9 @@
16
* limitations under the License.
17
*/
18
19
-#include <stdint.h>
20
-#include "stdlib/ndarray/dtypes.h"
21
#include "stdlib/ndarray/base/bytes_per_element.h"
+#include "stdlib/ndarray/dtypes.h"
+#include <stdint.h>
22
23
/**
24
* Returns the number of bytes per element for a given data type.
@@ -31,9 +31,9 @@
31
* @return number of bytes per element
32
*
33
* @example
34
-* #include <stdint.h>
35
-* #include "stdlib/ndarray/dtypes.h"
36
* #include "stdlib/ndarray/base/bytes_per_element.h"
+* #include "stdlib/ndarray/dtypes.h"
+* #include <stdint.h>
37
38
* uint8_t nbytes = stdlib_ndarray_bytes_per_element( STDLIB_NDARRAY_FLOAT64 );
39
* // returns 8
0 commit comments