Skip to content

Commit

Permalink
fix: fix relative imports on assets folder
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelCastilloB committed Nov 28, 2024
1 parent 22cc350 commit 63e5ea4
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions lib/src/assets/asset_id.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#include <cardano/assets/asset_id.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/string_safe.h"
#include "../allocators.h"
#include "../string_safe.h"

#include <assert.h>
#include <sodium/core.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/asset_id_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include <cardano/assets/asset_id_list.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/asset_id_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include <cardano/assets/asset_id_map.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/asset_name.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#include <cardano/assets/asset_name.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/string_safe.h"
#include "../allocators.h"
#include "../string_safe.h"

#include <assert.h>
#include <sodium/core.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/asset_name_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include <cardano/assets/asset_name_list.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down
6 changes: 3 additions & 3 deletions lib/src/assets/asset_name_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
#include <cardano/assets/asset_name_map.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/cbor/cbor_validation.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../cbor/cbor_validation.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/multi_asset.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include <cardano/error.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/src/assets/policy_id_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#include <cardano/assets/policy_id_list.h>
#include <cardano/object.h>

#include "src/allocators.h"
#include "src/collections/array.h"
#include "../allocators.h"
#include "../collections/array.h"

#include <assert.h>
#include <string.h>
Expand Down

0 comments on commit 63e5ea4

Please sign in to comment.