Commit 53bb381e authored by Alexander Camatchy's avatar Alexander Camatchy
Browse files

commit avant de tout perdre

parent e4b6c2c6
Loading
Loading
Loading
Loading
+3.73 KiB (13.4 KiB)

File changed.

No diff preview for this file type.

+488 B (7.61 KiB)

File changed.

No diff preview for this file type.

+6 −5
Changes for src/list.c: 6 added lines, 5 removed lines.
Original line number Diff line number Diff line
#include <stdio.h>
#include <stdlib.h>
#include "list.h"

struct cell_t {
  void* val;
  unsigned long int id;
  struct cell_t* next;
};
// struct cell_t {
//   void* val;
//   unsigned long int id;
//   struct cell_t* next;
// };

typedef struct cell_t* list_t;

+16 B (8.7 KiB)

File changed.

No diff preview for this file type.

tests/rho_pollard

0 → 100644
+31 KiB

File added.

No diff preview for this file type.

Loading