|
7 | 7 |
|
8 | 8 | **General overview:**
|
9 | 9 |
|
10 |
| -   |
| 10 | +   |
11 | 11 |  
|
12 | 12 |
|
13 | 13 | ## Implemented Data Structures
|
|
497 | 497 | The first four error code numbers are the sum of the "DATA_STRUCTURE" characters,
|
498 | 498 | and the rest of the error code is the sum of the error enum.
|
499 | 499 | ex: INVALID_ARG is 4987.
|
500 |
| - |
501 |
| -#### FAILED_ALLOCATION |
502 |
| - |
503 |
| -|Error code| Message | |
504 |
| -|--|--| |
505 |
| -| -833811484 | `"The %s allocation in %s failed."` | |
506 |
| - |
507 |
| -#### FAILED_REALLOCATION |
508 |
| - |
509 |
| -|Error code| Message | |
510 |
| -|--|--| |
511 |
| -| -833814245 | `"The %s reallocation in %s failed."` | |
512 |
| - |
513 |
| -#### FAILED_COPY |
514 |
| - |
515 |
| -|Error code| Message | |
516 |
| -|--|--| |
517 |
| -| -83385167 | `"Copying %s in %s failed."` | |
518 |
| - |
519 |
| -#### INVALID_ARG |
520 |
| - |
521 |
| -|Error code| Message | |
522 |
| -|--|--| |
523 |
| -| -83384987 | `"The passed arg %s in %s is invalid."` | |
524 |
| - |
525 |
| -#### NULL_POINTER |
526 |
| - |
527 |
| -|Error code| Message | |
528 |
| -|--|--| |
529 |
| -| -83386157 | `"The %s pointer in %s is NULL."` | |
530 |
| - |
531 |
| -#### OUT_OF_RANGE |
532 |
| - |
533 |
| -|Error code| Message | |
534 |
| -|--|--| |
535 |
| -| -83385991 | `"The passed index is out of the %s range."` | |
536 |
| - |
537 |
| -#### EMPTY_DATA_STRUCTURE |
538 |
| - |
539 |
| -|Error code| Message | |
540 |
| -|--|--| |
541 |
| -| -833816740 | `"The passed %s pointer is empty."` | |
542 |
| - |
543 |
| -#### SOMETHING_WENT_WRONG |
544 |
| - |
545 |
| -|Error code| Message | |
546 |
| -|--|--| |
547 |
| -| -833816834 | `"Can't %s in %s."` | |
| 500 | + |
| 501 | +| Error | Error code | Message | |
| 502 | +|--|--|--| |
| 503 | +| **FAILED_ALLOCATION** | -833811484 | `"The %s allocation in %s failed."` | |
| 504 | +| **FAILED_REALLOCATION** | -833814245 | `"The %s reallocation in %s failed."` | |
| 505 | +| **FAILED_COPY** | -83385167 | `"Copying %s in %s failed."` | |
| 506 | +| **INVALID_ARG** | -83384987 | `"The passed arg %s in %s is invalid."` | |
| 507 | +| **NULL_POINTER** | -83386157 | `"The %s pointer in %s is NULL."` | |
| 508 | +| **OUT_OF_RANGE** | -83385991 | `"The passed index is out of the %s range."` | |
| 509 | +| **EMPTY_DATA_STRUCTURE** | -833816740 | `"The passed %s pointer is empty."` | |
| 510 | +| **SOMETHING_WENT_WRONG** | -833816834 | `"Can't %s in %s."` | |
0 commit comments